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.
| cue_file = 'file.cue' | |
| d = open(cue_file).read().splitlines() | |
| general = {} | |
| tracks = [] | |
| current_file = None |
| #!/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() |
| ;; 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" |
| [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 |
| <?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> |
| # best practice: linux | |
| nano ~/.pgpass | |
| *:5432:*:username:password | |
| chmod 0600 ~/.pgpass | |
| # best practice: windows | |
| edit %APPDATA%\postgresql\pgpass.conf | |
| *:5432:*:username:password | |
| # linux |