I hereby claim:
- I am anoadragon453 on github.
- I am anoa (https://keybase.io/anoa) on keybase.
- I have a public key whose fingerprint is 0245 0A9E DDFE E3E0 C730 B786 A7E4 A578 80C3 A4A9
To claim this, I am signing this object:
| @nix { "action": "setPhase", "phase": "unpackPhase" } | |
| unpacking sources | |
| unpacking source archive /nix/store/1jvrj4k63bzv92rqg70vnvipk05xw9zr-ardour | |
| source root is ardour | |
| @nix { "action": "setPhase", "phase": "patchPhase" } | |
| patching sources | |
| applying patch /nix/store/isrfcjlbi2g4hnxaq7nfiksfavg73hmy-as-flags.patch | |
| patching file libs/ardour/wscript | |
| Hunk #1 succeeded at 372 (offset -7 lines). | |
| patching script interpreter paths in ./tools/ |
| # Read the user manual for documentation: http://www.musicpd.org/doc/user/ | |
| # Files and directories ####################################################### | |
| # | |
| # This setting controls the top directory which MPD will search to discover the | |
| # available audio files and add them to the daemon's online database. This | |
| # setting defaults to the XDG directory, otherwise the music directory will be | |
| # be disabled and audio files will only be accepted over ipc socket (using | |
| # file:// protocol) or streaming files over an accepted protocol. |
I hereby claim:
To claim this, I am signing this object:
| import java.io.File; | |
| import java.io.FileNotFoundException; | |
| import java.util.*; | |
| public class main { | |
| public static void main(String[] args) { | |
| // Printing out to console | |
| System.out.print("Hey!"); // Print on the same line | |
| System.out.println("Hi!"); // Print on the next line | |
| CLGeocoder *geocoder = [CLGeocoder new]; | |
| CLLocation *newLocation = [[CLLocation alloc]initWithLatitude:21.1700 | |
| longitude:72.8300]; | |
| [geocoder reverseGeocodeLocation:newLocation | |
| completionHandler:^(NSArray *placemarks, NSError *error) { | |
| if (error) { | |
| NSLog(@"Geocode failed with error: %@", error); |
| CLGeocoder *geocoder = [CLGeocoder new]; | |
| [geocoder geocodeAddressString:@"ADDRESS_TO_SEARCH" completionHandler:^(NSArray *placemarks, NSError *error) { | |
| if (error) { | |
| NSLog(@"Error: %@", [error localizedDescription]); | |
| return; // Request failed, log error | |
| } | |
| // A location was generated, hooray! | |
| if (placemarks && [placemarks count] > 0) { | |
| CLPlacemark *placemark = placemarks[0]; // Our placemark |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # House Hunters International episode downloader | |
| # Code referenced from https://github.com/pantuts/asskick and https://stackoverflow.com/questions/12708751/python-writing-on-a-text-file | |
| # Created by Andrew Morgan (2015) | |
| from bs4 import BeautifulSoup | |
| import os | |
| import re | |
| import requests |
I hereby claim:
To claim this, I am signing this object:
| using UnityEngine; | |
| using System.Collections; | |
| public class AutoType : MonoBehaviour { | |
| public float letterPause = 0.2f; | |
| public AudioClip sound; | |
| public TextMesh textObject; | |
| string message; |