- Metal Slug
- Deroon Dero Dero
- Super Puzzle Fighter
- R-Type
- Gradius
- Raiden
- Sinistar
This file contains hidden or 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
| # /etc/inputrc - global inputrc for libreadline | |
| # See readline(3readline) and `info rluserman' for more information. | |
| # Be 8 bit clean. | |
| set input-meta on | |
| set output-meta on | |
| # To allow the use of 8bit-characters like the german umlauts, uncomment | |
| # the line below. However this makes the meta key not work as a meta key, | |
| # which is annoying to those which don't need to type in 8-bit characters. |
This file contains hidden or 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/sh | |
| if [ -z "$2" ]; then | |
| echo "usage: [host] [share] [protocol?=smb2] [port?=8080]" | |
| echo "example: localhost bar" | |
| exit 1 | |
| fi | |
| HOST=$1 | |
| SHARE=$2 |
This file contains hidden or 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
| version: "2" | |
| services: | |
| creamy-static: | |
| image: albinodrought/creamy-static | |
| ports: | |
| - 3000:3000 | |
| environment: | |
| FILE_PATH: /static | |
| PORT: 3000 | |
| volumes: |
I have struggled pasting screenshots into Thunderbird for too long. This is how I made it work:
- Installl CopyQ because nothing else worked for me: https://github.com/hluk/CopyQ
- Here's your scrot command:
scrot -s -e 'mv $f /tmp/ && copyq write image/png - < /tmp/$f && copyq select 0'2.5. Here's your i3wm bindsym scrot command:bindsym --release $mod+Print exec scrot -s -e 'mv $f /tmp/ && copyq write image/png - < /tmp/$f && copyq select 0'
Have fun
This file contains hidden or 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
| #cloud-config | |
| # assumes virtio | |
| # replace and uncomment ssh_authorized_keys with your pubkey(s) | |
| #ssh_authorized_keys: | |
| # - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDWFPEou1/OK86UK1hB2YrFOpdhB30mcYFF3qwRcoGezmGyZxbKHTGs2DvJCeIHe1K7INjzpkwPqzXsKAKMnkdgDqHya8iEvblDl/DVDnnvLD3GDzH/0XboV5glvJcGMtmqbsZl0jMsWjTX/1oRiIpE6wU2AFTSDVAHWKMlJS+EoTZUpe6MHp5LXny/kSqGVGTwJNDIB2TevmCFGPTUDUyEd5q8h1jQQdz1Sv2yrVFG3SxaZiwqea3eRd4qz7H86PzZN9BSDERvuS6f62VzR1stbHIHohw53U2POoXKV/YBGdYsYNdg565yCfgCgKSp1bwQtF7kzI8RDiVVBeSutuBP sean@Malone-Tuning-26 | |
| rancher: | |
| # extend /dev/vda to the entire disk, if necessary | |
| resize_device: /dev/vda | |
| state: |
This file contains hidden or 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
| browser.contextMenus.create({ | |
| id: "send-to-rippy", | |
| title: "Send to Rippy", | |
| contexts: ["all"], | |
| }); | |
| browser.contextMenus.onClicked.addListener((info, tab) => { | |
| if (info.menuItemId !== "send-to-rippy") { | |
| return; | |
| } | |
This file contains hidden or 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
| version: '2' | |
| volumes: | |
| invoiceninja-db: | |
| external: true | |
| driver: rancher-nfs | |
| invoiceninja-storage: | |
| external: true | |
| driver: rancher-nfs | |
| invoiceninja-logo: | |
| external: true |
SkipTheDishes tracker(No longer used)- 🎊 Some ghetto NextCloud clone that I feel safe selfhosting (probably read only) (video version here, working and in use) (file version WIP)
- yet another IRC client for the 21st century
selfhosted screensharing thing (like rabb.it, but not)alternative exists: https://github.com/m1k1o/neko- a modern browser that isn't rounded
some way to import normal cams to unifyUnifi Video is losing support, moving to something like Shinobi instead(ctrl-f NVR)- foss modern feedback tracker thing (can io)
- visual dice rolling bot to make hard life choices for me
This file contains hidden or 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 isArray(input) { | |
| return (Object.prototype.toString.call(input) === '[object Array]') ? true : false; | |
| } | |
| var sampleData = [ | |
| { soilhum: 500, airtemp: true, airhum: 18, water: true, name: "romain", cats: ["a", "b"] }, | |
| { soilhum: 1050, airtemp: false, airhum: 21, water: true, name: "romain", cats: ["c", "a"] }, | |
| { soilhum: 300, airtemp: true, airhum: 90, water: false, name: "edwards", cats: ["a", "b"] }, | |
| { soilhum: 950, airtemp: true, airhum: 26, water: true, name: "jane", cats: ["c", "b"] }, | |
| { soilhum: 1050, airtemp: false, airhum: 26, water: true, name: "romain", cats: ["a", "b"] }, | |
| { soilhum: 1050, airtemp: false, airhum: 26, water: true, name: "romain", cats: ["b", "c"] }, |