I hereby claim:
- I am akamch on github.
- I am akamch (https://keybase.io/akamch) on keybase.
- I have a public key whose fingerprint is 5B4E 0AF3 ED22 8419 18BA 5282 935E 7FAC E39B A03B
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| ; Citing http://www.emacswiki.org/emacs/WritingRussianWithDvorak: | |
| ; "As you know, all the cyrillic InputMethods work in a way that assumes your keyboard is in QWERTY layout. However, | |
| ; if you’re using dvorak keyboard layout, you may discover that, for example, cyrillic-jcuken input method can’t work ; properly since all the ascii symbols on your keyboard are mapped to appropriate cyrillic ones according to the | |
| ; qwerty->jcuken translation rules. | |
| ; Thus, one of the possible solutions is to define your own input method which translate symbols according to | |
| ; dvorak->jcuken rules." | |
| ; | |
| ; Это такой input method, только для Colemak. | |
| ; Нужно положить этот файл в ~/.emacs.d и вставить в ~/.emacs строки: | |
| ; (load-file "~/.emacs.d/russian-colemak.el") |
| # Update, upgrade and install development tools: | |
| apt-get update | |
| apt-get -y upgrade | |
| apt-get -y install build-essential | |
| apt-get -y install git-core | |
| # Install rbenv | |
| git clone git://github.com/sstephenson/rbenv.git /usr/local/rbenv | |
| # Add rbenv to the path: |
| /* Scrolling shadows by @kizmarh */ | |
| html { | |
| background: #FFF; | |
| } | |
| .scrollbox { | |
| position: relative; | |
| z-index: 1; |
| #!/usr/bin/python3 | |
| # Copyright (c) 2007-2008 Mozilla Foundation | |
| # | |
| # Permission is hereby granted, free of charge, to any person obtaining a | |
| # copy of this software and associated documentation files (the "Software"), | |
| # to deal in the Software without restriction, including without limitation | |
| # the rights to use, copy, modify, merge, publish, distribute, sublicense, | |
| # and/or sell copies of the Software, and to permit persons to whom the | |
| # Software is furnished to do so, subject to the following conditions: |