create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| var awesomeFirebase = new Firebase('https://anexample.firebaseIO.com/samplenode'); | |
| awesomeFirebase.set({ | |
| some_string_content: "Firebase is Awesome!", | |
| some_number_content: 42 | |
| }); |
| Firebase firebase = new Firebase("https://anexample.firebaseIO.com/samplenode"); | |
| firebase.addValueEventListener(new ValueEventListener() { | |
| @Override | |
| public void onDataChange(DataSnapshot dataSnapshot) { | |
| Map data = (Map) dataSnapshot.getValue(); | |
| Log.d(TAG, "::onDataChange() -- firebase data: " | |
| + dataSnapshot.getValue()); | |
| Log.d(TAG, "::onDataChange() -- sample string data content: " |
| ;; check if the packages are installed; if not, install it. | |
| (mapc | |
| (lambda (package) | |
| (or (package-installed-p package) | |
| (if (y-or-n-p (format "Package %s is missing. Install it? " package)) | |
| (package-install package)))) | |
| ;; The list of packages that should be installed | |
| '(yaml-mode wrap-region autopair color-theme-sanityinc-tomorrow creole-mode crosshairs | |
| col-highlight elpy auto-complete ac-js2 elscreen expand-region gist | |
| find-file-in-project flymake flymake-cursor fuzzy gitignore-mode |
| (require 'package) | |
| (package-initialize) | |
| (add-to-list 'package-archives | |
| '("marmalade" . "http://marmalade-repo.org/packages/") t) | |
| (add-to-list 'package-archives | |
| '("melpa" . "http://melpa.milkbox.net/packages/") t) |
| map <c-n> scrollDown | |
| map <c-p> scrollUp | |
| map <c-b> scrollLeft | |
| map <c-f> scrollFullPageDown | |
| map <c-b> scrollFullPageUp | |
| map <c-v> scrollFullPageDown | |
| map <a-v> scrollFullPageUp | |
| map <c-w> copyCurrentUrl | |
| map <a-w> copyCurrentUrl | |
| map <c-k> copyCurrentUrl |
| " Show tab numbers | |
| set guioptions+=n | |
| " Hide scrollbars | |
| set guioptions-=r | |
| " zenburn color theme | |
| colo zenburn | |
| " Default editor when C-i is invoked |