Skip to content

Instantly share code, notes, and snippets.

View digitaljavelina's full-sized avatar

Michael Henry digitaljavelina

View GitHub Profile
@GrfxGuru
GrfxGuru / bootstrap_mac.sh
Last active February 24, 2025 09:09
My bootstrap for setting up a new macOS machine
#!/usr/bin/env bash
#
# Bootstrap script for setting up a macOS machine
#
#
echo "Remember to install Xcode from the Store first"
echo "Starting bootstrapping"
anonymous
anonymous / config.json
Created January 3, 2017 05:09
Bootstrap Customizer Config
{
"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",

Keybase proof

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:

anonymous
anonymous / form.json
Created January 2, 2017 04:44
A saved configuration for a schema form example, http://textalk.github.io/angular-schema-form/examples/bootstrap-example.html
[
{
"type": "help",
"helpvalue": "<div class=\"alert alert-info\">Grid it up with bootstrap</div>"
},
{
"type": "section",
"htmlClass": "row",
"items": [
{
@AlexJF12
AlexJF12 / bike day heatmap.txt
Last active January 2, 2017 04:46
DC Bike Day Heatmap
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";
@patpohler
patpohler / Big List of Real Estate APIs.md
Last active February 19, 2026 17:06
Evolving list of Real Estate APIs by Category

Big List of Real Estate APIs

Listings / Property Data

####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/
@vburojevic
vburojevic / swift
Created April 26, 2016 20:45
Swift
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 {