I hereby claim:
- I am johnbintz on github.
- I am johnbintz (https://keybase.io/johnbintz) on keybase.
- I have a public key ASDiWYO6ih4lqd4TXhjqx5tDmR_54FfrB7nELTb7dWKiZQo
To claim this, I am signing this object:
| diff -ruN libicns-0.8.1/src/icns_element.c libicns-0.8.1-modified/src/icns_element.c | |
| --- libicns-0.8.1/src/icns_element.c 2012-06-13 19:42:06.000000000 -0400 | |
| +++ libicns-0.8.1-modified/src/icns_element.c 2022-01-31 08:07:50.871844474 -0500 | |
| @@ -565,6 +565,7 @@ | |
| switch(iconType) | |
| { | |
| case ICNS_1024x1024_32BIT_ARGB_DATA: | |
| + case ICNS_128x128_32BIT_ARGB_DATA: | |
| case ICNS_256x256_32BIT_ARGB_DATA: | |
| case ICNS_512x512_32BIT_ARGB_DATA: |
| #include <stdio.h> | |
| int main(int argc, char** args) { | |
| printf("Hello world!"); | |
| return 0; | |
| } |
I hereby claim:
To claim this, I am signing this object:
| // set max print size here | |
| slice_x = 80; | |
| slice_y = 80; | |
| slice_z = 80; | |
| // use like this: | |
| // | |
| // for y in 0 1 2 3; do for x in 0 1 2 3; do openscad -o "bottom_${x}x${y}.stl" --render -D x=$x -D y=$y bottom_slicer.scad ; done; done | |
| // | |
| // you may need to mess with the orientation of the imported file/slicer cube! |
| #_(defdeps [[org.clojure/clojure "1.7.0"] | |
| [org.clojure/data.xml "0.0.8"]]) | |
| (ns create-xml | |
| (:require [clojure.string :as str]) | |
| (:use [clojure.data.xml])) | |
| (def directory (clojure.java.io/file ".")) | |
| (defn get-extension [file] |
| #!/bin/bash | |
| docker run -it --name squid-deb-proxy-cache -v /var/cache/squid-deb-proxy busybox true | |
| docker run -d --restart=always --name squid-deb-proxy --volumes-from squid-deb-proxy-cache -p 0.0.0.0:48000:8000 pmoust/squid-deb-proxy |
| // this is a hack until react-native-webpack-server gets updated (and I'm | |
| // sure it will soon. :) ) | |
| // | |
| // you'll need 0.4.0-rc or better of react-native-webpack-server | |
| // don't run react-native-webpack-server's server for now, use react-native's | |
| // | |
| // also, run me in pure node and not babel-node, or react-native will try and | |
| // load polyfills that are already loaded. :/ | |
| var webpack = require('webpack'); | |
| var webpackConfig = require('./webpack.config.js'); |
| # be sure to comment out the require 'capistrano/deploy' line in your Capfile! | |
| # config valid only for Capistrano 3.1 | |
| lock '3.2.1' | |
| set :application, 'my-cool-application' | |
| # the base docker repo reference | |
| set :name, "johns-stuff/#{fetch(:application)}" |
| require 'csv' | |
| fields_to_keep = [ | |
| "Backer Id", "Pledge Amount", "Shipping Name", "Shipping Address 1", | |
| "Shipping Address 2", "Shipping City", "Shipping State", "Shipping Postal Code", | |
| "Shipping Country Name" | |
| ] | |
| sort_result_on = "Backer Id" |