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
const webpack = require("webpack"); | |
const ExtractTextPlugin = require("extract-text-webpack-plugin"); | |
const ManifestPlugin = require("webpack-manifest-plugin"); | |
const autoprefixer = require("autoprefixer"); | |
const path = require("path"); | |
module.exports = { | |
entry: { | |
main: [ | |
"./assets/javascripts/index.js", |
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
-----BEGIN PGP MESSAGE----- | |
Version: GnuPG v1 | |
owF1UntQVFUc3gXCyAIr0ZCHeNXBgl3v+55LGIqvghxt0Ikg3e7j3OUusrvuLiur | |
CzNQIuaoYIMgby001yKBaQbQHmIWw9YgUyhggKCkEM3oRDOCDHUvQ5M10/nrnPP7 | |
zvf7vu93ip7x1fhoVzj9K06wCYla7yivST7a6diP8BbRhcTuR4TdMjQ71J2Zy4RI | |
LJIBXTxnh3rZEmm2iFBvskfOYWIQJ7TZZYtZQaF6Uo8iOTEqXH0syWYjtFltssqF | |
CATN4QQFJZQWeMAAQsAEXGQZnGRolGZ5liZYEic5hTLdYnf8qysyy2mQReV2Dp8w | |
h1+n1LJmCxyHcYQAFCbAcrzI4YAjeQySAkrSkEZRFWiHtjlLsmzP4FSxmdCWsRsa | |
bBbLrGPBIat1jEQxQAOMwBQ5nD1dtSdJGAcgSooUg0s0BThMEliRF1AoUCLKsBir |
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/env ruby | |
# Finds answer to following puzzle | |
# | |
# There are one thousand candles on the altar and one thousand priests | |
# in the temple. Their god asks the first priest to go and light all | |
# the candles. Then he has the second priest go to every second candle | |
# and put it out." | |
# | |
# The third goes to every third candle and, if it is not burning, he |
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/env python | |
from xml.etree import ElementTree | |
from xml.sax.handler import ContentHandler | |
from xml.sax import parse | |
import csv | |
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/sh | |
# | |
# Post-receive hook script which generates README.html to git-dir from | |
# README.md found at the head of master branch in repository. | |
# | |
# Gitweb can read the README.html and embed it to the project summary page. | |
git cat-file blob HEAD:README.md | markdown > $GIT_DIR/README.html |
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
;; The prime 41, can be written as the sum of six consecutive primes: 41 | |
;; = 2 + 3 + 5 + 7 + 11 + 13 | |
;; | |
;; This is the longest sum of consecutive primes that adds to a prime | |
;; below one-hundred. | |
;; | |
;; The longest sum of consecutive primes below one-thousand that adds to | |
;; a prime, contains 21 terms, and is equal to 953. | |
;; | |
;; Which prime, below one-million, can be written as the sum of the most |
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 <stdlib.h> | |
#include <stdio.h> | |
#include <math.h> | |
const double qpsk[] = {-1.0, 1.0}; | |
const double qam16[] = {-3.0, -1.0, 3.0, 1.0}; | |
const double qam64[] = {-7.0, -5.0, -1.0, -3.0, 7.0, 5.0, 1.0, 3.0}; | |
/* Generic function for converting short integers to bit string | |
* representation. |
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 | |
# Put this in ~/.kde/Autostart/ssh-agent.sh | |
export SSH_ASKPASS=/usr/bin/ksshaskpass | |
/usr/bin/ssh-add |
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
--type-add=ruby=.haml,.rake | |
--type-add=css=.less | |
--type-add=coffeescript=.coffee |
NewerOlder