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 <stdio.h> | |
#include <stdlib.h> | |
#include <time.h> | |
void main(){ | |
long long int total = 0; | |
long long int i = 0; | |
for (i = 0; i<1000000; i++){ |
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 | |
# | |
# lxc: linux Container library | |
# Authors: | |
# Daniel Lezcano <daniel.lezcano@free.fr> | |
# This library is free software; you can redistribute it and/or | |
# modify it under the terms of the GNU Lesser General Public |
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/perl | |
use strict; | |
use warnings; | |
use WWW::Mechanize; | |
use Data::Dump qw/ dump /; | |
use JSON::Any; | |
# Define the routes that I actually care about |
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/perl | |
use strict; | |
use warnings; | |
use WWW::Mechanize; | |
use JSON::Any; | |
use HTTP::CookieJar::LWP; | |
my $user = 'username'; |
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/perl | |
use strict; | |
use warnings; | |
use JSON::XS; | |
# Checking for devices every time takes a few seconds, so store these | |
# settings in a file. Do so in /tmp so that it will be re-checked on reboot | |
my $tmp = '/tmp/cec-devices'; |
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/perl | |
# Note for GitHub: | |
# This script makes several assumptions based on the backup image I use. | |
# Mine is a freshly installed Debian image preconfigured just how I want it. | |
# The script relies on the name 'fresh-lxc' and IP '10.0.3.1' being set. | |
# It is also written with Debian Buster as the host, some paths may differ. | |
# Make changes appropriately. | |
use strict; |
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/perl | |
# Program to find all words from a given pool of letters. Written to solve the | |
# Android puzzle game "Wordscape". | |
use strict; | |
use warnings; | |
# Default Debian ispell dictionary | |
my $dict = "/etc/dictionaries-common/words"; |
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 <stdio.h> | |
void main() { | |
int x,y,z,spaceleft,spaceright,width; | |
printf("|"); | |
for (x=0;x<80;x++) { | |
printf(" "); | |
} | |
printf("|left card right\n"); | |
for (x=1;x<=13;x++) { | |
width = 67 / x; |
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/perl | |
use strict; | |
use warnings; | |
use WWW::Mechanize; | |
use JSON::XS; | |
use HTML::TreeBuilder; | |
my $pretty = 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
#!/usr/bin/perl | |
# Manually trigger with `$0 -a` to log an exercise event for the day. | |
# Automatically run each morning with `$0 -c` to cycle out old data | |
# Simply outputs Bool for event today, count for the last 7 days and the goal | |
# Meant for a simple indicator widget so I know if a streak is at risk | |
use JSON::XS; | |
use Date::Calc; |
OlderNewer