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
#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 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 | |
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 | |
# 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 | |
use strict; | |
use warnings; | |
use constant MONTH => sub{{ | |
'January' => 1, | |
'February' => 2, | |
'March' => 3, | |
'April' => 4, |
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
#!/usr/bin/perl | |
# This script fetches the performance data for various Tangerine Bank investment funds and exports them to: | |
# - CSVs called <fund_name>.csv with all historical data in format: "YYYY-MM-DD","12.34" | |
# - (optional) A single JSON file with trend data: {"Fund Name":{"0":12.34,"1":"12.56"...},"Fund Name":...} | |
# - (optional) PNG line chart | |
# All data is publicly available from: https://www.tangerine.ca/en/products/investing/performance | |
# This is just a handy way to use the data locally for various purposes. | |
# | |
# Should be run daily Tuesday-Saturday, such as with cron: |
OlderNewer