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
| import { defineConfig } from 'vite'; | |
| import laravel from 'laravel-vite-plugin'; | |
| import fs from 'fs'; | |
| import { resolve } from 'path'; | |
| import { homedir } from 'os'; | |
| let host = 'sendstack.test'; | |
| let homeDir = homedir(); | |
| let serverConfig = {}; |
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
| Script comunas, regiones, provincias Junio 2022 | |
| DROP TABLE IF EXISTS `comunas`; | |
| CREATE TABLE `comunas` ( | |
| `id` int(11) NOT NULL AUTO_INCREMENT, | |
| `comuna` varchar(64) NOT NULL, | |
| `provincia_id` int(11) NOT NULL, | |
| PRIMARY KEY (`id`) | |
| ) ENGINE=MyISAM AUTO_INCREMENT=346 DEFAULT CHARSET=utf8; |
Thanks to /u/zpoo32 for reporting several issues in this list!
| { | |
| "frameworks": { | |
| "net46":{ | |
| "dependencies": { | |
| "ImageResizer": "4.1.9" | |
| } | |
| } | |
| } | |
| } |
| #!/bin/bash | |
| list=`lynx -source $1 | grep -o -e 'https[^"]*.m3u8' | xargs` | |
| course="${1##*/}" | |
| mkdir $course | |
| echo ">>> $(echo $list | wc -w) video(s) found" | |
| c=1 | |
| for video in $list |
| { | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "type": "node", | |
| "request": "launch", | |
| "name": "npm run dev", | |
| "runtimeExecutable": "npm", | |
| "windows": { | |
| "runtimeExecutable": "npm.cmd" |
| export function getFile(response) { | |
| var result = document.createElement('a'); | |
| var contentDisposition = response.headers.get('Content-Disposition') || ''; | |
| var filename = contentDisposition.split('filename=')[1]; | |
| filename = filename.replace(/"/g,"") | |
| return response.blob() | |
| .then(function(data) { | |
| result.href = window.URL.createObjectURL(data); | |
| result.target = '_self'; |
The apt-get version of node is incredibly old, and installing a new copy is a bit of a runaround.
So here's how you can use NVM to quickly get a fresh copy of Node on your new Bash on Windows install
$ touch ~/.bashrc
$ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
// restart bash
$ nvm install --lts