This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function table_save(table, filename) | |
local file = fs.open("w", filename) | |
local data = textutils.serialize(table) | |
file.write(data) | |
file.close() | |
end | |
function table_load(filename) | |
local file = fs.open("r", filename) | |
local data = file.readAll() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Common use of third-party function looks like that: | |
(evilified-state-evilify-map | |
:mode some-emacs-mode | |
:bindings | |
(kdb "C-c a") 'function1 | |
(kdb "C-c b") 'function2) | |
;; I want to declare function or macro that will produce such bindings |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun set-russian-language () | |
(interactive) | |
(set-input-method "russian-computer") | |
(ispell-change-dictionary "ru")) | |
(defun set-english-language () | |
(interactive) | |
;; todo remove this ugly hack someday | |
(set-input-method "russian-computer") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define STRING_MAX_LENGTH 256 | |
void read_some_input_snipper { | |
char *result; | |
char *name; | |
char buf[STRING_MAX_LENGTH]; | |
fgets(buf, sizeof(buf), stdin); | |
ssprintf(buf, "%s%[^\n]", name, result); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""""""""""""""""""""""""""""""""""""""""""""""" | |
" File: .vimrc " | |
" Create Date: Nov 04, 2010 " | |
" Author: Michail Skorzinskiy " | |
" email : [email protected] " | |
" jabber: [email protected] " | |
"""""""""""""""""""""""""""""""""""""""""""""""" | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rofi usage: | |
rofi [-options ...] | |
Command line only options: | |
-no-config Do not load configuration, use default values. | |
-v,-version Print the version number and exit. | |
-dmenu Start in dmenu mode. | |
-display [string] X server to contact. | |
${DISPLAY} | |
-h,-help This help message. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Author: Mikhail Skorzhinskii <[email protected]> | |
# | |
# Description: Create a new file for org-mode and (may-be) try to attach it to | |
# the org-mode | |
choice=`kdialog --radiolist Type: Drawing Drawing on Screenshot Screenshot off Voice Voice off` | |
file_name=`uuidgen` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Font | |
(setq doom-font "Iosevka-9") | |
;; Hide signs like "~" or "_" or "*" | |
(setq org-hide-emphasis-markers t) | |
;; Don't align tags | |
(setq org-tags-column 0) | |
;; Increase indenation in org-indent |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(setq | |
org-ql-views | |
'(("stuck" lambda nil | |
(interactive) | |
(org-ql-search | |
(org-agenda-files) | |
'(and (tags "story") | |
(not (tags "ignore")) | |
(not (done)) ;; Finished stories should be excluded | |
(not (descendants (todo "NEXT"))) ;; If there are already |
OlderNewer