Skip to content

Instantly share code, notes, and snippets.

View dmathewwws's full-sized avatar
🤠

Daniel Mathews dmathewwws

🤠
View GitHub Profile
@dmathewwws
dmathewwws / google-autocomplete.ipynb
Created November 12, 2020 03:41 — forked from mariolambe/google-autocomplete.ipynb
Extract Google Autocomplete keywords with Python
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@implementation MediaPlayerIOSPodcastTitles
@synthesize bridge = _bridge;
// Export a native module
// https://facebook.github.io/react-native/docs/native-modules-ios.html
RCT_EXPORT_MODULE();
// Export constants
// https://facebook.github.io/react-native/releases/next/docs/native-modules-ios.html#exporting-constants
- (NSDictionary *)constantsToExport
//:> # Swift
//:
//: * Modern
//: * Objective-C Interoperability
//: * Open source
//: * Interactive Playgrounds
//:
//:> # Playgrounds
//:
//: * Live rendering of code you type
### Keybase proof
I hereby claim:
* I am dmathewwws on github.
* I am dmathewwws (https://keybase.io/dmathewwws) on keybase.
* I have a public key ASA6VopZCFaRU5Dj47XLIQrIoK3x5RNm61QxFDeQbStwiwo
To claim this, I am signing this object:
@dmathewwws
dmathewwws / gist:b5f8c021bf1bed391a54251a75a2cb4d
Created December 1, 2017 17:09
Info.plist for XML / OPML Document types
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleIcons</key>
<dict>
<key>CFBundlePrimaryIcon</key>
<dict>
<key>CFBundleIconFiles</key>
<array>
<string>Echo-Icon.png</string>
@dmathewwws
dmathewwws / gist:348d55d3d9cdcb61a1afc66ea3bafcad
Created December 1, 2017 17:09
Info.plist for XML / OPML Document types
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleIcons</key>
<dict>
<key>CFBundlePrimaryIcon</key>
<dict>
<key>CFBundleIconFiles</key>
<array>
<string>Echo-Icon.png</string>
@dmathewwws
dmathewwws / debounce-throttle.swift
Created September 23, 2017 21:24 — forked from simme/debounce-throttle.swift
Swift 3 debounce & throttle
//
// debounce-throttle.swift
//
// Created by Simon Ljungberg on 19/12/16.
// License: MIT
//
import Foundation
extension TimeInterval {
import Vapor
let drop = Droplet()
drop.get("welcome") { request in
return "Hello"
}
drop.get("uppercase") { request in
guard let word = request.data["word"]?.string else { return "Could not grab the name" }
public extension UIDevice {
var deviceType: String {
var systemInfo = utsname()
uname(&systemInfo)
let machine = systemInfo.machine
let mirror = Mirror(reflecting: machine)
var identifier = ""