Skip to content

Instantly share code, notes, and snippets.

View mirajshah's full-sized avatar

Miraj Shah mirajshah

View GitHub Profile
@themightychris
themightychris / TECHNO-REBELS.md
Last active February 17, 2022 16:35
Alvin Toffler's description of techno-rebels from the 1980 book The Third Wave

The Techno-Rebels

The magnitude of such an advance—its importance for the future of evolution itself—makes it critically necessary that we begin to guide it. To adopt a hands-off, damn-the-torpedoes approach could spell doom for ourselves and our children. For the power, scale, and speed of the change is like nothing before in history, and our minds are still fresh with news of the near-catastrophe at Three Mile Island, the tragic DC-10 crashes, the hard-to-plug massive oil spill off the Mexican coast, and a hundred other technological horrors. Faced with such disasters, can we permit the development and combination of tomorrow’s even more powerful technologies to be controlled by the same shortsighted and selfish criteria used during the Second Wave era?

The basic questions asked of new technologies during the past three hundred years, in both capitalist and socialist nations, have been simple: do they contribute to economic gain or military clout? These twin criteria are clearly no longer adequate. New

@kevinburke
kevinburke / compile_pypy.sh
Created October 26, 2013 14:52
pypy compile script
#!/bin/bash
set -ex
NAME=pypy
VERSION=2.1
FOLDER=$NAME-$VERSION-src
BINARY=$FOLDER.tar.bz2
URL=https://bitbucket.org/pypy/pypy/downloads/$BINARY
if hash pypy 2>/dev/null; then
@codahale
codahale / pom.xml
Last active October 26, 2024 07:45
Take this and save it as pom.xml in your project directory.
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>my-project</artifactId>
<version>0.0.1-SNAPSHOT</version>
<dependencies>
<!-- none yet -->