This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# If you haven't done this already since upgrading, you need to: | |
xcode-select --install | |
# then build mcrypt with brew: | |
brew install php55-mcrypt | |
# If you don't have a php.ini already then copy the default over: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[~/Downloads]⚡ unzip MSEdge.Win10TH2.VirtualBox.zip | |
Archive: MSEdge.Win10TH2.VirtualBox.zip | |
warning [MSEdge.Win10TH2.VirtualBox.zip]: 558164870 extra bytes at beginning or within zipfile | |
(attempting to process anyway) | |
error [MSEdge.Win10TH2.VirtualBox.zip]: start of central directory not found; | |
zipfile corrupt. | |
(please check that you have transferred or created the zipfile in the | |
appropriate BINARY mode and that you have compiled UnZip properly) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
var gulp = require('gulp'), | |
sass = require('gulp-sass'), | |
autoprefixer = require('gulp-autoprefixer'), | |
livereload = require('gulp-livereload'), | |
sourcemaps = require('gulp-sourcemaps'), | |
concat = require('gulp-concat'), | |
rename = require('gulp-rename'), | |
uglify = require('gulp-uglify'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
html, body { | |
margin: 0; | |
padding: 0; | |
} | |
#background { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int main(int argc, char** argv) { | |
int a; | |
int b; | |
a = b = 1; | |
a == b; | |
return 0; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# A rewrite of an originally terrible solution to the interview challenge | |
# in the 2020-08-31 issue of @cassidoo's newsletter: | |
# https://buttondown.email/cassidoo/archive/9bbcae4c-b24e-4d91-9332-115a9c286041 | |
prices = [110, 1, 999, 180, 260, 40, 310, 535, 695, 1, 999, 1] | |
highest = 0 | |
buy_day = 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\t | |
\n | |
\x0b | |
\x0c | |
\r | |
\x1c | |
\x1d | |
\x1e | |
\x1f | |
SPACE |
OlderNewer