- And one: Love is always on your side
- Information society: White roses
- Zrní: Dva
- Vitalic: Poison lips
- PSB: Love etc
- Krchovský: Naposledy
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
severak@tilde:~$ botany | |
botany | |
/)) HAPPY | |
options __(((__ HALLOWEEN | |
1 - water ())))))))))) 99% .' _`""`_`'. TILDE | |
2 - look / /\\ /\\ \ TOWN | |
3 - garden | /)_\\/)_\\ | | |
4 - visit | _ _()_ _ | | |
5 - instructions | \\/\\/\\// | |
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
# vypíše poslední commit message | |
git log -n1 --pretty="format:%an: %s" |
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
- firefox | |
- chocolatey | |
- git | |
- xampp | |
- foobar2000 | |
- 7zip | |
choco install 7zip nodejs paint.net nodejs putty poedit vim winscp yarn sass scite -y | |
- cmdermini |
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
In Mystic groups are dynamic, meaning a base can be a part of a group or not, and it can change based on current circumstances that you define. Its less confusing than it sounds! Group membership is defined by the ACS strings in the base editor: | |
If you want a base to show in a group, then you need to modify the base's access string (called ACS). So you'll see in each base: | |
List ACS | |
Read ACS | |
Post ACS | |
Sysop ACS | |
If you want to add it to group 1, then you'd add g1 to the ACS: |
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 confirmAsync(mgs, cbk) { | |
// asychronní confirm - kdybyste se divili, co to je za prasárnu: | |
// Chrome potlačuje zobrazování confirmu když můžou zablokovat hlavní thread (nebo dělá něco podobného) | |
setTimeout(function () { | |
if (confirm(mgs)) { | |
cbk(); | |
} | |
}, 100); | |
return false; | |
} |
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
# starý internet | |
- např. IRC, tématická fóra, literární servery, tildeverse | |
- spíše menší místa | |
- lidi se sdružují na základě společného tématu | |
- spíše poloveřejný prostor (hospoda) | |
# nový internet | |
- např. Facebook, Instagram, Twitter, VK |
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
Secret Stairways - Reflections on the Lake | |
Mortiis - Mortiis - Født til å Herske Pt. 1 | |
Burzum - Burzum - Ansuzgardaraiwô | |
Depressive Silence - Forests of Eternity | |
Lamentation - Visions of a Dark Dominion | |
Daoine Sidhe - La Vassalerie d'Unseelie |
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
------------------------------------------------------------------------------------------------------------------------------ | |
-- Module: utf8_filenames | |
------------------------------------------------------------------------------------------------------------------------------ | |
-- Filename: utf8_filenames.lua | |
-- Version: 2019-01-17 | |
-- This module modifies standard Lua functions so that they work with UTF-8 filenames on Windows: | |
-- io.open | |
-- io.popen | |
-- io.lines |
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
-- Severak file manager | |
local term = require "terminal" | |
local TW, TH = GPU.termSize() | |
local pwd = term.resolve "." | |
local items = fs.getDirectoryItems(pwd) | |
local selected = 1 | |
table.insert(items, 1, "..") |