One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| # best practice: linux | |
| nano ~/.pgpass | |
| *:5432:*:username:password | |
| chmod 0600 ~/.pgpass | |
| # best practice: windows | |
| edit %APPDATA%\postgresql\pgpass.conf | |
| *:5432:*:username:password | |
| # linux |
| <?xml version="1.0"?> | |
| <root> | |
| <item> | |
| <name>Remap ShiftL + F19 to Caps Lock</name> | |
| <appendix>(ShiftL + F19 to Caps Lock)</appendix> | |
| <identifier>usercustom.f19_shift_l_to_caps</identifier> | |
| <autogen> |
| [gui] | |
| encoding = utf-8 | |
| [alias] | |
| #visual = gitk | |
| last = log -1 HEAD | |
| st = status | |
| shorty = status --short --branch | |
| # git unstage - убрать всё из индекса (чтобы например добавить/закоммитить сначала что-то другое) | |
| unstage = reset HEAD -- | |
| up = !(git add . && git stash && git pull --rebase >&2) | grep -v \"No local changes to save\" && git stash pop |
| ;; The fist version. Tricky and workarounded. | |
| ;; you can test it on this: | |
| ;; var BITS = ( 29, 0, 63, 85, 34 ) | |
| (defun bit-compact (start end) | |
| (interactive "r") | |
| (defun int-to-binary-string (i) | |
| "convert an integer into it's binary representation in string format" |
| #!/usr/bin/env python | |
| from __future__ import print_function | |
| from pyVim import connect | |
| from pyVmomi import vim | |
| si = connect.SmartConnect(host='vcsa', user='my_user', pwd='my_password') | |
| content = si.RetrieveContent() |
| cue_file = 'file.cue' | |
| d = open(cue_file).read().splitlines() | |
| general = {} | |
| tracks = [] | |
| current_file = None |
| #include <stdio.h> | |
| #include <string.h> | |
| #include <inttypes.h> | |
| // OLED hardware versions | |
| #define OLED_V1 0x01 | |
| #define OLED_V2 0x02 | |
| // commands | |
| #define LCD_CLEARDISPLAY 0x01 |
| from UserDict import IterableUserDict | |
| import collections | |
| __author__ = 'github.com/hangtwenty' | |
| def tupperware(mapping): | |
| """ Convert mappings to 'tupperwares' recursively. |
| uint8_t watchdog_count = 0; | |
| ISR(WDT_vect) { | |
| // This vector is for the watchdog timer | |
| PORTA = PORTA | (1 << LED ); // The LED never goes on | |
| ++watchdog_count; | |
| } | |
| ISR(PCINT0_vect) | |
| { |