I hereby claim:
- I am nullpixel1 on github.
- I am nullpixel (https://keybase.io/nullpixel) on keybase.
- I have a public key ASCmc9LNJf1rpn_QJD2ZgNxn0kCWS3HxQz6HsPkhzvziCAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| <!-- | |
| Copyright (C) 2016 Jamie Bishop | |
| This program is free software: you can redistribute it and/or modify | |
| it under the terms of the GNU Affero General Public License as | |
| published by the Free Software Foundation, either version 3 of the | |
| License, or (at your option) any later version. | |
| This program is distributed in the hope that it will be useful, | |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| typedef NS_ENUM(NSUInteger, UIBackgroundStyle) { | |
| UIBackgroundStyleDefault, | |
| UIBackgroundStyleTransparent, | |
| UIBackgroundStyleLightBlur, | |
| UIBackgroundStyleDarkBlur, | |
| UIBackgroundStyleDarkTranslucent | |
| }; | |
| @interface UIApplication (UIBackgroundStyle) | |
| -(void)_setBackgroundStyle:(UIBackgroundStyle)style; |
I hereby claim:
To claim this, I am signing this object:
As a freelancer, I build a lot of web sites. That's a lot of code changes to track. Thankfully, a Git-enabled workflow with proper branching makes short work of project tracking. I can easily see development features in branches as well as a snapshot of the sites' production code. A nice addition to that workflow is that ability to use Git to push updates to any of the various sites I work on while committing changes.
| # Path to your oh-my-zsh installation. | |
| export ZSH=/home/null/.oh-my-zsh | |
| # ------------------------------------------------------------------- | |
| # General ZSH config | |
| # ------------------------------------------------------------------- | |
| ZSH_THEME="dracula" | |
| plugins=(git) |
| const getPixels = require('get-pixels'); | |
| const path = require('path'); | |
| const mongoose = require("mongoose"); | |
| const config = require('../config/config'); | |
| const Pixel = require('../models/pixel'); | |
| mongoose.connect(config.database).then(() => console.info('Connected to database')); | |
| const batch_size = 1000; |
| [{ | |
| "name": "Aberdare Rail Station", | |
| "crs": "ABA", | |
| "tiploc": "ABDARE", | |
| "easting": 300400, | |
| "northing": 202800 | |
| }, { | |
| "name": "Aberdour Rail Station", | |
| "crs": "AUR", | |
| "tiploc": "ABDO", |
| import Foundation | |
| class FileDownloader { | |
| // MARK: - Properties | |
| private var outputFolder: URL | |
| private var queueIdentifier: String | |
| private var urlSession: URLSession | |
| // MARK: - Types |