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
--[[ | |
Licensed under GNU General Public License v2 | |
* (c) 2014 projektile, worron | |
* (c) 2013 Luke Bonham | |
* (c) 2009 Donald Ephraim Curtis | |
* (c) 2008 Julien Danjolu | |
With gaps between windows two times wider | |
(like xmonad) |
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
--[[ | |
Licensed under GNU General Public License v2 | |
* (c) 2015, InfinityTotality | |
* (c) 2014, projektile, worron | |
* (c) 2013, Luke Bonham | |
* (c) 2009, Donald Ephraim Curtis | |
* (c) 2008, Julien Danjolu | |
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
/* | |
compile: gcc -o ticks ticks.c | |
run: ./ticks $(pgrep awesome) 20 3 | |
This makes 3 measurements of each 20 seconds | |
Best used with short timeouts in the widgets and everything else idling. | |
*/ |
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
<?xml version="1.0"?> | |
<rdf:RDF xmlns="http://www.semanticweb.org/ontologies/2016/facebook-ontology#" | |
xml:base="http://www.semanticweb.org/ontologies/2016/facebook-ontology" | |
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |
xmlns:owl="http://www.w3.org/2002/07/owl#" | |
xmlns:xml="http://www.w3.org/XML/1998/namespace" | |
xmlns:xsd="http://www.w3.org/2001/XMLSchema#" | |
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> | |
<owl:Ontology rdf:about="http://www.semanticweb.org/ontologies/2016/facebook-ontology"/> | |
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
#!/bin/sh | |
# A script to fade volume when toggling MPD via mpc | |
mpc=`which mpc` | |
# volume commands, customize here | |
decrease="amixer -q set Master 1%-" | |
increase="amixer -q set Master 1%+" |
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 python | |
# Copyright 2015 Google Inc. All Rights Reserved. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# |
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
-- Source: https://bitbucket.org/seregaxvm/awesome-wm-configs/src/master/get_secret.lua | |
local Gio = require("lgi").Gio | |
local GLib = require("lgi").GLib | |
local function get_secret(attrs) | |
local bus = Gio.bus_get_sync(Gio.BusType.SESSION, nil) | |
local name = "org.freedesktop.secrets" | |
local object = "/org/freedesktop/secrets" | |
local interface = "org.freedesktop.Secret.Service" |
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
network={ | |
ssid="eduroam" | |
scan_ssid=1 | |
key_mgmt=WPA-EAP | |
eap=TTLS | |
#anonymous_identity="[email protected]" | |
#ca_cert="/etc/ssl/certs/AddTrust_External_Root.pem" | |
phase2="auth=MSCHAPV2" | |
identity="<email>" | |
password="<pwd>" |
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
#!/bin/bash | |
# Compute the Giacenza Media Annua (GMA) of a Revolut account, required by the Italian INPS. | |
# Dependencies: awk, GNU date, getopts, xargs | |
# Computation method: https://bit.ly/3avDLu3 | |
# Thread on Revolut forum: https://bit.ly/3511e5h | |
# Assumptions: |
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
#include <iostream> | |
struct Point { // 2-D | |
double x, y; | |
Point(double x, double y) : x(x), y(y) {} | |
}; | |
// Barycentric method - https://stackoverflow.com/a/9755252 | |
bool isInsideTriangle(const Point& a, const Point& b, const Point& c, const Point& s) | |
{ |
OlderNewer