I hereby claim:
- I am dreddpenguin on github.
- I am dreddpenguin (https://keybase.io/dreddpenguin) on keybase.
- I have a public key whose fingerprint is 450F 72D6 F3B4 49ED B393 953F FBB6 6405 F54C C323
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| # | |
| # Bootstrap script for setting up a macOS machine | |
| # | |
| # | |
| echo "Remember to install Xcode from the Store first" | |
| echo "Starting bootstrapping" |
| { | |
| "vars": { | |
| "@gray-base": "#000", | |
| "@gray-darker": "lighten(@gray-base, 13.5%)", | |
| "@gray-dark": "lighten(@gray-base, 20%)", | |
| "@gray": "lighten(@gray-base, 33.5%)", | |
| "@gray-light": "lighten(@gray-base, 46.7%)", | |
| "@gray-lighter": "lighten(@gray-base, 93.5%)", | |
| "@brand-primary": "darken(#428bca, 6.5%)", | |
| "@brand-success": "#5cb85c", |
I hereby claim:
To claim this, I am signing this object:
| [ | |
| { | |
| "type": "help", | |
| "helpvalue": "<div class=\"alert alert-info\">Grid it up with bootstrap</div>" | |
| }, | |
| { | |
| "type": "section", | |
| "htmlClass": "row", | |
| "items": [ | |
| { |
| library(ggplot2) | |
| ggplot(bike_day_heatmap, aes(x = week, y = days, fill = n)) + | |
| scale_fill_viridis(name="# of Rides", option = "C", | |
| limits = c(0, max(bike_day_heatmap$n))) + | |
| geom_tile(color = "white", size = 0.4) + | |
| scale_x_continuous(expand = c(0, 0), breaks = seq(1, 52, length = 12), | |
| labels = c("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"))+ | |
| theme_minimal() + | |
| theme(legend.position = "bottom") + |
| var convertToOunces = function() { | |
| for (i=0;i<cups.length;i++) { | |
| ounces[i] = cups[i] * 8; | |
| } | |
| }; | |
| var scores = [83,40,55,72,59,88,99]; | |
| var passOrFail = function() { | |
| for (i=0;i<scores.length;i++) { | |
| if (scores[i]>=60) { | |
| scores[i] = "pass"; |
####Rets Rabbit http://www.retsrabbit.com
Rets Rabbit removes the nightmare of importing thousands of real estate listings and photos from RETS or ListHub and gives you an easy to use import and Web API server so you can focus on building your listing search powered website or app.
| https://itunes.apple.com/pl/book/swift-programming-language/id881256329?mt=11 | |
| Swift programming language book | |
| https://itunes.apple.com/us/course/developing-ios-8-apps-swift/id961180099 | |
| Developing swift iOS applications | |
| http://www.apple.com/swift/playgrounds/ | |
| Swift playgrounds | |
| https://www.hackingwithswift.com/ |
| override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int { | |
| guard let items = items else { | |
| return 0 | |
| } | |
| return items.count | |
| } | |
| override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) { | |
| guard let item = items?[indexPath.row] else { |