Level : WORDPRESS BOOK LINKEDIN PATENT Send Mail 동냥하기 hajunho.com

date

OpenSRC+ChatGPT / / 2020. 11. 25. 16:31
반응형

        NSLocale* currentLocale = [NSLocale currentLocale];
        [[NSDate date] descriptionWithLocale:currentLocale];
        NSDateFormatter *dateFormatter=[[NSDateFormatter alloc] init];
        [dateFormatter setDateFormat:@"yyyy-MM-dd"];
        NSLog(@"%@",[dateFormatter stringFromDate:[NSDate date]]);
        good2date = [dateFormatter stringFromDate:[NSDate date]];

 

//  Converted to Swift 5.3 by Swiftify v5.3.19197 - https://swiftify.com/

let currentLocale = NSLocale.current as NSLocale

Date().description(with: currentLocale)

let dateFormatter = DateFormatter()

dateFormatter.dateFormat = "yyyy-MM-dd"

print("\(dateFormatter.string(from: Date()))")

good2date = dateFormatter.string(from: Date())

.

.

.

  let currentLocale = NSLocale.current as NSLocale

        Date().description(with: currentLocale as Locale)

        let dateFormatter = DateFormatter()

        dateFormatter.dateFormat = "yyyy-MM-dd"

        print("\(dateFormatter.string(from: Date()))")

        let good2date = dateFormatter.string(from: Date())

        var ylocation : CGFloat

        var _ylocation : CGFloat {

            get {

                ylocation = ylocation + 50

                return ylocation

            }

            set(newv) {

                ylocation = newv

            }

        }

        ylocation = 200

        var img2 = Util.textToImage(drawText: Util.getUserDefault(key: "userinfo"), inImage: img ?? UIImage(), atPoint: CGPoint(x: 10, y: _ylocation))

 

+= 도 괜찮았지만.

 

 

 


The command line option fsck.mode=skip can be used to skip the disk check when booting Ubuntu 20.04.

The line Checking disks: 0% complete may still come up but fsck will not be run, nor will boot time be increased.

Add fsck.mode=skip to the linux line in grub.cfg just before quiet splash

It is recommended to add the command to grub.cfg by editing /etc/default/grub thus: GRUB_CMDLINE_LINUX_DEFAULT="fsck.mode=skip quiet splash" and then run sudo update-grub.

I have had this problem with a Live USB but not with an installed system.

 

반응형

'OpenSRC+ChatGPT' 카테고리의 다른 글

#define to let  (0) 2020.11.26
drawrect  (0) 2020.11.25
drawText  (0) 2020.11.24
포로그래메트리  (0) 2020.10.04
Bottom message View  (0) 2019.02.08
  • 네이버 블러그 공유하기
  • 네이버 밴드에 공유하기
  • 페이스북 공유하기
  • 카카오스토리 공유하기