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
AXIS_UP ignore | |
AXIS_DOWN ignore | |
AXIS_LEFT ignore | |
AXIS_RIGHT ignore | |
MOUSE_BTN3 add volume 5 | |
MOUSE_BTN4 add volume -5 | |
MOUSE_BTN5 seek -5 | |
MOUSE_BTN6 seek 5 |
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/node | |
var fs = require('fs'); | |
var os = require('os'); | |
var path = require('path'); | |
var request = require('request'); | |
var cheerio = require('cheerio'); | |
var exec = require('child_process').exec; | |
var icon = '/home/rico/.local/share/icons/hicolor/Chibi-PNG-File.png'; | |
/** |
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
#include <iostream> | |
#include <cmath> | |
#include <complex> | |
#include <algorithm> | |
using namespace std; | |
typedef complex<double> point; | |
#define x real() | |
#define y imag() | |
#define EPS 1e-7 | |
#define PRECISION 12 |
OlderNewer