I wanted to open my old Maschine projects created prior to travel in 2015. I picked up a second hand Maschine Mk1 for a good price.
There are compatability issues between Maschine Mk1 and macOS Catalina 10.15.7
{ | |
"scripts": { | |
"dev": "npx esno server.ts", | |
"build": "vite build", | |
"build:ssr": "vite build --ssr", | |
"build:all": "npm run build && npm run build:ssr" | |
} | |
} |
I wanted to open my old Maschine projects created prior to travel in 2015. I picked up a second hand Maschine Mk1 for a good price.
There are compatability issues between Maschine Mk1 and macOS Catalina 10.15.7
export default function renderRoute(request, reply) { | |
const store = configureStore(); | |
store.dispatch(match(request.path, (error, redirectLocation, routerState) => { | |
if (redirectLocation) { | |
reply.redirect(redirectLocation.pathname + redirectLocation.search); | |
} else if (error) { | |
reply(error.message).code(500); | |
} else if (!routerState) { | |
reply('Not found').code(404); | |
} else { |
# | |
# Verify captcha | |
$post_data = http_build_query( | |
array( | |
'secret' => CAPTCHA_SECRET, | |
'response' => $_POST['g-recaptcha-response'], | |
'remoteip' => $_SERVER['REMOTE_ADDR'] | |
) | |
); | |
$opts = array('http' => |
var gulp = require('gulp'), | |
sass = require('gulp-sass'), | |
browserify = require('gulp-browserify'), | |
concat = require('gulp-concat'), | |
embedlr = require('gulp-embedlr'), | |
refresh = require('gulp-livereload'), | |
lrserver = require('tiny-lr')(), | |
express = require('express'), | |
livereload = require('connect-livereload') | |
livereloadport = 35729, |
/** | |
* Syntax highlighting | |
* Colors from SublimeText theme "Spacegray" | |
* https://github.com/kkga/spacegray | |
*/ | |
.highlight { | |
background-color: #343d46; | |
color: white; |
#!/usr/bin/sh | |
rm -rf "$HOME/Library/Preferences/WebIde40" | |
rm -rf "$HOME/Library/Caches/WebIde40" | |
rm -rf "$HOME/Library/Application Support/WebIde40" | |
rm -rf "$HOME/Library/Logs/WebIde40" |
/** | |
* Is Old Android | |
* | |
* Check to see it the user agent is Android and if so then | |
* check the version number to see if it is lower than 4.0.0 | |
* or passed parameter | |
* | |
* @param string $version | |
* @return boolean | |
*/ |