Skip to content

Instantly share code, notes, and snippets.

View Eckankar's full-sized avatar

Sebastian Paaske Tørholm Eckankar

View GitHub Profile
@bishboria
bishboria / springer-free-maths-books.md
Last active April 25, 2024 06:27
Springer made a bunch of books available for free, these were the direct links
#!/usr/bin/env perl
use 5.012;
use warnings;
use File::Spec;
=head1 NAME
C<perlopen.pl> - Open perl modules quickly and easily
=head1 DESCRIPTION
@Eckankar
Eckankar / domain.pl
Created March 5, 2012 18:30
Domain name finder
#!/usr/bin/env perl
use 5.012;
use warnings;
use Net::Whois::Raw;
$\ = "\n";
my @tlds = qw/dk se/;
my $wordlist;
@Eckankar
Eckankar / MarkovWord.py
Created April 8, 2010 15:56 — forked from agiliq/gist:131679
Generate random words based on markov chains rather than random sentences.
#!/usr/bin/env python
import random
class Markov:
def __init__(self, file, size):
self.size = size
self.starts = []
self.cache = {}
self.file_to_words(file)
self.parse_words()