I hereby claim:
- I am alexanderhiam on github.
- I am graycat (https://keybase.io/graycat) on keybase.
- I have a public key whose fingerprint is D01F 6B39 58C6 6360 CCBE BBE6 BDF4 4E9A 807D EF3E
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
package jsouptest; | |
import java.io.IOException; | |
import java.util.HashSet; | |
import java.util.Set; | |
import java.util.regex.Matcher; | |
import java.util.regex.Pattern; | |
import org.jsoup.nodes.Document; | |
import org.jsoup.Jsoup; | |
import org.jsoup.nodes.Element; |
#!/usr/bin/env python | |
# Here is the python2 script to see StackOverflow 2015 election candidates who're going to the next phase along with their vote-counts. | |
# For this script to work, you must need to install Python's BeautifulSoup html parser. | |
# Created by Stack Overflow user Avinash Raj ( http://stackoverflow.com/users/3297613/avinash-raj ) | |
from bs4 import BeautifulSoup | |
import urllib2 | |
s = urllib2.urlopen('http://stackoverflow.com/election/6?tab=primary') | |
soup = BeautifulSoup(s) |
Please petition Github to support HTTPS on github pages: https://github.com/contact
Here's what I wrote:
Obviously, a lot of people want HTTPS for github pages:
Until recently, that would be difficult to implement but, as it turns out, the implementation is pretty much complete:
Audio compression is used to reduce the dynamic range of a recording. Dynamic range is the difference between the loudest and softest parts of an audio signal. It was originally used to guard against defects when cutting wax and vinyl phonograph records, but generally became useful as a way of increasing the loudness of an audio recording without achieving distortion.
The goal of most compression applications is to increase the amplitude of the softest parts of a recording, without increasing the amplitude of the loudest parts.
Compressors generally all have the same conceptual parts. However, not all compressors present variable controls for all parts to the user. If you don't see all of your compressor's controls here, there's a chance it either has a fixed value (and no control), or is named something else:
package com.atami.mgodroid.util; | |
import java.util.LinkedList; | |
import android.app.IntentService; | |
import android.content.Intent; | |
/** | |
* An extension of the IntentService class that will block |