- Monnierara Millennium Magic 'Witchcraft'
- Dendrobium pseudo equitans
- Dendrobium Blue Happiness
- Dendrobium blue twinkle
- Aerangis fastuosa
- Vanilla - own
- Ludisia Discolor - own
- Brassavola nodosa (species) or Brassavola little stars (more vigorous hybrid)
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
CREATE TABLE IF NOT EXISTS Sensors ( | |
MAC_Address INT PRIMARY KEY NOT NULL, | |
Name TEXT NOT NULL, | |
Location TEXT NOT NULL); | |
CREATE TABLE IF NOT EXISTS Readings ( | |
MAC_Address INT NOT NULL references sensors (MAC_Address), | |
Tempurature REAL NOT NULL, | |
Humidity REAL NOT NULL, | |
Pressure REAL NOT NULL, |
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
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
import logging | |
from bleson import get_provider, Observer, logger | |
#import sqlite3 | |
import datetime | |
import pytz | |
import threading |
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
LiberationMono-Regular.ttf: "Liberation Mono" "Regular" | |
PowerlineSymbols.otf: "PowerlineSymbols" "Medium" | |
LiberationMono-Bold.ttf: "Liberation Mono" "Bold" | |
LiberationMono-Italic.ttf: "Liberation Mono" "Italic" | |
LiberationMono-BoldItalic.ttf: "Liberation Mono" "Bold Italic" | |
Fura Code Regular Nerd Font Complete Mono.otf: "FuraCode Nerd Font Mono" "Regular" | |
Fura Code Regular Nerd Font Complete Mono.ttf: "FuraCode Nerd Font Mono" "Regular" | |
Fura Code Retina Nerd Font Complete Mono.otf: "FuraCode Nerd Font Mono" "Retina" | |
Fura Code Retina Nerd Font Complete Mono.ttf: "FuraCode Nerd Font Mono" "Retina" | |
Fura Code Medium Nerd Font Complete Mono.otf: "FuraCode Nerd Font Mono" "Medium" |
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
fc-cache -v | |
Font directories: | |
/usr/share/fonts | |
/usr/local/share/fonts | |
/home/meskarune/.local/share/fonts | |
/home/meskarune/.fonts | |
/usr/share/fonts/100dpi | |
/usr/share/fonts/75dpi | |
/usr/share/fonts/OTF | |
/usr/share/fonts/OpenImageIO |
Pull the lock up at 0
turn until it clicks
write down numbers, 12 in total
7 have .5 - they stop between whole numbers, they are decoys
5 are whole numbers
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
irc.conn = function (irc_config) | |
-- the config would need irc_config.authtype, for now I'll set it for testing | |
-- this could be one of nicksserve, sasl or none | |
local authtype = 'sasl' | |
if authtype == 'sasl' then | |
irc.connection:send(('CAP REQ :sasl\r\n')) | |
end | |
irc.connection:send(('NICK %s\r\n'):format(irc_config.handle)) | |
irc.connection:send(('USER %s * 8 :%s\r\n'):format(irc_config.ident, irc_config.gecos)) | |
end |
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
" Vim defaults rather than vi ones. Keep at top. | |
set nocompatible | |
" set Vim-specific sequences for RGB colors - needed with tmux | |
if &term =~# 'tmux\|tmux-256color' | |
let &t_8f = "\<Esc>[38;2;%lu;%lu;%lum" | |
let &t_8b = "\<Esc>[48;2;%lu;%lu;%lum" | |
endif | |
" Colors | |
" True color support | |
if $TERM =~# 'xterm-termite\|xterm-kitty' |
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
Dark Sky, currently supported in API: | |
"clear-day" = "☀" | |
"clear-night" = "🌕" or "🌙" or "🌑" | |
"rain" = "🌧" or "💧" | |
"snow" = "🌨" or "❄" | |
"sleet" = "🌧" or "💧" | |
"wind" = "💨" or "🌬️" or "🍃" | |
"fog" = "🌫" or "🌁" | |
"cloudy" = "☁" |
NewerOlder