- Using FreeBSD
- Mountain Lion
- VMware Fusion 5
- Your VMware is installed at '/Applications/VMware Fusion.app'
- Command Line tools are at '/Applications/VMware Fusion.app/Contents/Library'
- especially vmrun
| /* Credit for stuff from other subreddits | |
| r/Modclub: General inspiration and reference for other subreddits to pull from | |
| r/Music: the origin of the stick out headers? | |
| r/gentlemanboners: Typography for header | |
| r/chrome: moving the userbar up | |
| r/apple: Touchups to subreddit bar | |
| r/baseball: submit links | |
| r/UCSD: Dark Bluish Userbar | |
| r/UCR: Yellow Tabs | |
| r/surfing: Ideas on getting a surfboard back into the header |
| #import <Cocoa/Cocoa.h> | |
| // clang -Weverything -fobjc-arc -framework Cocoa -o notification notification.m | |
| void QuietLog (NSString *format, ...); | |
| void StartSpying (void); | |
| void StopSpying (void); | |
| void QuietLog (NSString *format, ...) { |
| require "rubygems" | |
| require 'sinatra' | |
| require "aws/s3" | |
| get '/' do | |
| return %Q{ | |
| <form action="upload" method="post" accept-charset="utf-8" enctype="multipart/form-data"> | |
| <div> | |
| <input type="file" name="file" value="" id="file"> | |
| </div> |
| # Public Domain, i.e. feel free to copy/paste | |
| # Considered a hack in Python 2 | |
| import inspect | |
| def caller_name(skip=2): | |
| """Get a name of a caller in the format module.class.method | |
| `skip` specifies how many levels of stack to skip while getting caller | |
| name. skip=1 means "who calls me", skip=2 "who calls my caller" etc. |
| // Lists of countries with ISO 3166 codes, presented in various formats. | |
| // Last Updated: July 30, 2020 | |
| // If you're using PHP, I suggest checking out: | |
| // https://github.com/thephpleague/iso3166 | |
| // or Laravel: https://github.com/squirephp/squire | |
| // | |
| // JS developers can check out: | |
| // https://www.npmjs.com/package/iso3166-2-db | |
| // |