Skip to content

Instantly share code, notes, and snippets.

@mb19
mb19 / pi.c
Last active November 2, 2015 23:40
Four methods of estimating the value of pi in C
//CS330 - Estimating Pi
//Author: Matt Burris
//f, main, trap, simpsons methods taken from pi-main by Wayne Cochran @ http://ezekiel.vancouver.wsu.edu/~cs330/
#include <stdio.h>
#include <math.h>
#include <assert.h>
#ifndef M_PI
#define M_PI 3.14159265358979323846264338327950288
#endif
@mb19
mb19 / gist:1d1b96655f29b8fe2f62
Last active August 29, 2015 14:17
Perl script to harvest webpage links and images
#!/usr/bin/perl
use strict;
my $site="http://www.nytimes.com";
#Set up image_urls and links variables
my @image_urls;
my @links;
open (my $fh, "curl $site |") or die "$!\n";