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/bash | |
| # Based on imgur-screenshot by jomo | |
| # https://github.com/jomo/imgur-screenshot | |
| # | |
| # Uploads images to https://lunasquee.eu.org/upload/ | |
| # Deps: scrot, xclip, libnotify-bin (also grep and curl) | |
| # Works only on linux-based systems | |
| # | |
| # $HOME/.config/icy-screenshot/settings.conf file can override options below |
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
| var net = require('net') | |
| var readline = require('readline'); | |
| var connected = false; | |
| var socket = null; | |
| var reconclock = null; | |
| function spawn(ADDR, PORT, NICK) { | |
| console.log("CREATE SOCK "+ADDR+":"+PORT); | |
| socket = net.connect(PORT, ADDR, function() { |
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
| #!/usr/bin/env node | |
| 'use strict'; | |
| // IRC bot by LunaSquee (Originally djazz, best poni :3) | |
| // This is a plugin for nBot (https://git.mindcraft.si.eu.org/?p=nBot.git) | |
| // Before using: npm install gamedig googleapis qs | |
| // Have fun! | |
| // Modules | |
| var net = require('net') |
NewerOlder