| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | ||
| 6 | 7 | 8 | 9 | 10 | 11 | 12 |
| 13 | 14 | 15 | 16 | 17 | 18 | 19 |
| 20 | 21 | 22 | 23 | 24 | 25 | 26 |
| 27 | 28 | 29 | 30 |
- 비트버켓
- Ruby on Rails
- Rails 설치
- Rails
- 이크립스 줄바꿈
- 안드로이드 기본
- 기트
- RoR
- 워드랩
- 몽고디비 설치
- Package Control
- 레일즈 가이드
- 안드로이드
- 레일즈 설치
- android
- 안드로이드 기초
- Sublime
- 기트허브
- subl
- 서브라임
- MySQL
- Sublime Text 2
- 패키지 컨트롤
- Rails Tutorial
- Rails Guide
- 윈도우7 관리자
- php nginx mysql
- 서버 구성
- 레일즈
- php7
- Today
- Total
목록전체 글 (63)
김관덕 (새 블로그로 이전)
/-- index.html /js== controllers-- MainController.js == vendor-- angular.min.js -- app.js /css app.jsvar app = angular.module("PizzaPlanerApp", []); MainController.jsapp.controller('MainController', ['$scope', function($scope) { $scope.today = new Date(); $scope.appetizers = [ { name: 'Caprese', description: 'Mozzarella, tomatoes, basil, balsmaic glaze.', price: 4.95 }, { name: 'Mozzarella Stick..
Lambdas vs. ProcsIf you're thinking that procs and lambdas look super similar, that's because they are! There are only two main differences.First, a lambda checks the number of arguments passed to it, while a proc does not. This means that a lambda will throw an error if you pass it the wrong number of arguments, whereas a proc will ignore unexpected arguments and assign nil to any that are miss..
https://www.tech-knowhow.com/2015/07/howto-edit-crontab-on-qnap-and-keep-the-changes-after-a-reboot/
$myurl = 'sik.pdf[0]';$image = new Imagick($myurl);$image->setResolution( 300, 300 );$image->setImageFormat( "png" );$image->writeImage('newfilename.png');PHP Fatal error: Uncaught Error: Class 'Imagick' not found in /usr/share/nginx/html/apps/eat/admin/update_weekly.php:3Stack trace:#0 {main} thrown in /usr/share/nginx/html/apps/eat/admin/update_weekly.php on line 3#phpize 설치sudo apt-get inst..
Ubuntu14.04 파일질라(FileZilla 3) 설치하기https://filezilla-project.org/에서 파일질라 최신버전 다운로드하고 압축을 풉니다.폴더내의 bin에 filezilla를 실행하면 되는데 오류가 뜰 경우 해결방법입니다. 오류내용gwan@localhost:~/Downloads/FileZilla3/bin$ ./filezilla ./filezilla: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `CXXABI_1.3.8' not found (required by ./filezilla) ./filezilla: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.20' not f..
Ubuntu 14.04 호스트네임 변경$ vi /etc/hostname에서 호스트네임을 지정하고 재부팅한다. sudo 명령 실행시 sudo: unable to resolve host [현재호스트명]이 나오는 경우 $ vi /etc/hosts에서 127.0.1.1 을 현재 호스트네임으로 변경해준다. ------------------- 예시 ---------------------------# 변경전/etc/hostnamepre.co.kr /etc/hosts127.0.0.1localhost127.0.1.1pre.co.kr # 변경후/etc/hostnamenow.com /etc/hosts127.0.0.1localhost127.0.1.1now.com
Ubuntu 14.04 에서 한영키 사용하기 $ sudo apt-get install dconf-editor$ dconf-editor For Desktoporg -> gnome -> desktop -> wm -> keybindings 에서switch-input-source 와 switch-input-source-backward 를 ['Hangul']로 지정 For LaptopAll Settings -> Text Entry 아래의 KeyBoard Settingswitch to next source 를 눌리고 한/영키 입력, 그러면 Multikey 라는 문자열이 입력된다.Compose Key 를 Right Alt로 설정한다. 참고자료: http://kuroikuma.tistory.com/108
꽤 적은 OAuth 솔루션에 있다. 그러나 나는 원한다 공유하기를 한가지를, 우리가 사용하는 , 멀티플 OAuth identities with single user entity를 총명하게 연결해주는ㄷ. 만약 당신이 90%의 코드 예제들 인터넷에 이쓴ㄴ을 이용한다면, 당신은 유저가 다른 오어스 프로바이더로 사인인하면 각각 새로운 유저 엔티티를 만들게될것이다. 그리고 매우 혼란스러운 유저들 오어스 프로바이더 중 작업에서 스패너를 던지는 그리고 우리 코드에 난잡함을 추가하는것은 트위터이다. 다른 프로바이더들과는 다르게 트위터는 유저들의 이메일 주소를 공유하지 안흔다. 그래서 우리는 사용자로부터 그것을 받기위해 추가적인 작업을 해야한다. 더 많은 정보는 여기를참조 !http://sourcey.com/rails-..