Skip to content

Instantly share code, notes, and snippets.

View ollieglass's full-sized avatar

Ollie Glass ollieglass

View GitHub Profile
@IanColdwater
IanColdwater / twittermute.txt
Last active October 2, 2023 10:56
Here are some terms to mute on Twitter to clean your timeline up a bit.
View twittermute.txt
Mute these words in your settings here: https://twitter.com/settings/muted_keywords
ActivityTweet
generic_activity_highlights
generic_activity_momentsbreaking
RankedOrganicTweet
suggest_activity
suggest_activity_feed
suggest_activity_highlights
suggest_activity_tweet
@ericbusboom
ericbusboom / anscombes.csv
Last active September 3, 2021 18:03
Anscombe's Quartet Data
View anscombes.csv
id dataset x y
0 I 10.0 8.04
1 I 8.0 6.95
2 I 13.0 7.58
3 I 9.0 8.81
4 I 11.0 8.33
5 I 14.0 9.96
6 I 6.0 7.24
7 I 4.0 4.26
8 I 12.0 10.84
@nicoleslaw
nicoleslaw / 1_Tiny_Content_Framework.md
Last active August 8, 2023 19:37
Tiny Content Framework
View 1_Tiny_Content_Framework.md
@vwood
vwood / gist:1725650
Created February 2, 2012 20:44
Pythonic Java
View gist:1725650
import java.net.* ;
import java.io.* ;
import java.util.* ;
public class Server {
public static void main( String[] args) {
try {
ServerSocket sock = new ServerSocket(4712,100) ;
while(true) new Handler(sock.accept()).start() ;}
catch(IOException e) {
System.err.println(e) ;};}}