본문 바로가기

Swift - Avatar Animation Link : https://github.com/JasonZengJ/AvatarAnimationDemoLink (Design Shots): https://itunes.apple.com/us/app/design-shots-dribbble-client/id792517951?mt=8 더보기
Swift - Pulse Animation Code : override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view, typically from a nib. // declare a pulsing layer var pulsingLayer = YQPulsingLayer() // place the pulsing layer in the center the object view pulsingLayer.position = objectView.center // add the pulsing layer to the view view.layer.insertSublayer(pulsingLayer, below: objectView.layer) } Li.. 더보기
Swift - Flip Animation override func viewDidLoad() { super.viewDidLoad(); view1 = self.autoLayoutPanelViewWithColor(UIColor(hex: 0xf6b37f, alpha: 1.0), title:"Music", logoImage:UIImage(named: "CD_grid@156px"), backViewBackgroundColor:UIColor(patternImage: UIImage(named: "bg1")), backViewTitle:"Music for better life") view2 = self.autoLayoutPanelViewWithColor(UIColor(hex: 0xf9a451, alpha: 1.0), title:"Relax", logoImage.. 더보기
Swift - LocationManager Location manager is a CLLocationManager wrapper written entirely in SwiftFeatures:1) Location update with closure & delegate support2) Geocoding and reverse geocoding using Apple service3) Geocoding and reverse geocoding using Google service4) Closure returns CLPlacemark object, making it easier to place pin on map Link : https://github.com/varshylmobile/LocationManager 더보기
난 리눅스 원격 붙여 놓고 명령어로 로그아웃 (command : kill) 리눅스에 개인 계정 할당 받고 원격 연결했다.서버에는 xrdp가 올라와 있고 연결 후 잘 쓰고 있었다. 하지만.로그아웃을 눌러도 로그아웃이 아니게 된다.그냥 원격 연결을 끊어버리면 이전 내가 쓰던 프로세스는 주구장창 24시간 의미 없이 열심히 동작하고 있는거다. 난 어떻게 해야하나...서버 자원 미친듯이 사용하고 있긴 하나. 일일이 제거하는것도 한계가 있다. 난 어떻게 해야하나?$kill -9 -1 뭐야 간단하잖아 뭐야 지금까지 고민한거 보상도 못 받고 뭐야 이거 너무 간단하잖아. 쳇. 내가 종료 시킬수 있는 모든 프로세스에 한해서 종료 시킨다는 그런류의 명령어다.RDP 연결 해놓고 명령어 쓰니 알아서 연결이 종료되고SSH, FTP 등등 알아서 연결이 끊어진다. 비슷한 문제를 격은 방문자가 있다면 써보길.. 더보기