-------------
| |
| |
| |
| |
-------------
"rows":[0,1],
"cols":[0,1,1],
"cells":[[0,0,1,1],[1,0,2,1]]
View Default (Windows).sublime-keymap
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
Show hidden characters
{"keys": ["з"],"command": "nv_feed_key", "args": {"key": "z"},"context": [{"key": "vi_command_mode_aware"}]}, | |
{"keys": ["З"],"command": "nv_feed_key", "args": {"key": "Z"},"context": [{"key": "vi_command_mode_aware"}]}, | |
{"keys": ["б"],"command": "nv_feed_key", "args": {"key": "v"},"context": [{"key": "vi_command_mode_aware"}]}, | |
{"keys": ["Б"],"command": "nv_feed_key", "args": {"key": "V"},"context": [{"key": "vi_command_mode_aware"}]}, | |
{"keys": ["ю"],"command": "nv_feed_key", "args": {"key": "x"},"context": [{"key": "vi_command_mode_aware"}]}, | |
{"keys": ["Ю"],"command": "nv_feed_key", "args": {"key": "X"},"context": [{"key": "vi_command_mode_aware"}]}, | |
{"keys": ["с"],"command": "nv_feed_key", "args": {"key": "s"},"context": [{"key": "vi_command_mode_aware"}]}, | |
{"keys": ["С"],"command": "nv_feed_key", "args": {"key": "S"},"context": [{"key": "vi_command_mode_aware"}]}, | |
{"keys": ["т"],"command": "nv_feed_key", "args": {"key": "t"},"context": [{"key": "vi_command_mode_aware"}]}, | |
{"keys": ["T"] |
View sublime_text_layout.md
View .remotemon.yaml
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
global: | |
port: 45 | |
path: "" | |
username: pi | |
ssh: -tt -o LogLevel=QUIET -p {{global.port}} | |
remotehost: pi@192.168.43.92 | |
remotefold: ~/router | |
rsync: false | |
watch: false | |
verbose: 1 |
View gist:d059d8b5896b94acdc4676075c37427f
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
1. As at 2021-08-29, there is no more waiting period or manual form to request for unlock approval from Xiaomi. Instead follow every step described in this video https://youtu.be/pByHHTvms4k | |
2. Clone and check out linux branch | |
``` | |
git clone https://github.com/francescotescari/XiaoMiToolV2.git && cd XiaoMiToolV2 && git checkout linux | |
``` | |
3. Edit one Java source file exactly as described [Xiaomi procedure failed: [getServiceToken] Missing serviceToken cookie #23 (comment)](https://github.com/francescotescari/XiaoMiToolV2/issues/23#issuecomment-904082515) | |
4. Install openjdk-11, `sudo dnf install java-11-openjdk` |
View main.tex
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
\documentclass[a4paper]{article} | |
\pagenumbering{gobble} | |
\usepackage{concrete} | |
\usepackage{setspace} | |
\usepackage{graphicx}% delete the demo option in your actual code | |
\usepackage{multirow} | |
\usepackage{color} | |
\usepackage[table]{xcolor} | |
\usepackage[export]{adjustbox} |
View matchTime.lua
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
local success = function(all, pos) print('success') return pos end | |
local fail = function(all, pos) print('fail') return pos end | |
local common = Cmt(P('['), success)*(V('STMP')^0)*P(']') | |
local main_cmt = common + Cmt(P(']'),fail) | |
local main_normal = common + P(']')/fail |
View luamail_lpeg.md
What is the idiomic way to create error messages in LPEG ?
To be specific I would like to create error messages for incomplete bracket completion.
Example :
[ 1 2 3 -- ERROR ! MISSING ] AT LINE 20
( 1 2 3 -- ERROR ! MISSING ) AT LINE 35
View untilted.txt
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
Empty |
View blocking copas.moon
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
copas = require 'copas' | |
copas.addthread -> | |
copas.sleep 1 | |
os.execute '<<blocking more than 1 second>>' | |
I = 0 |
View main.lua
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
sleep = require ("sourcevault/sleep") | |
sleep.hello() |
NewerOlder