VMWare Fusion 13 is now released. Read Vagrant and VMWare Fusion 13 Player on Apple M1 Pro for the latest.
This document summarizes notes taken while to make the VMWare Tech preview work on Apple M1 Pro, it originated
| { | |
| "workbench.startupEditor": "none", | |
| "workbench.iconTheme": "moxer-icons", | |
| "workbench.colorTheme": "Aura Dark", | |
| "workbench.settings.editor": "json", | |
| "breadcrumbs.enabled": false, | |
| "explorer.compactFolders": false, | |
| "editor.wordWrap": "bounded", | |
| "editor.tabSize": 2, | |
| "editor.inlineSuggest.enabled": true, |
VMWare Fusion 13 is now released. Read Vagrant and VMWare Fusion 13 Player on Apple M1 Pro for the latest.
This document summarizes notes taken while to make the VMWare Tech preview work on Apple M1 Pro, it originated
| kubectl get nodes --sort-by=".status.conditions[?(@.reason == 'KubeletReady' )].lastTransitionTime" |
| #!/bin/bash | |
| # https://gist.github.com/949831 | |
| # http://blog.carbonfive.com/2011/05/04/automated-ad-hoc-builds-using-xcode-4/ | |
| # command line OTA distribution references and examples | |
| # http://nachbaur.com/blog/how-to-automate-your-iphone-app-builds-with-hudson | |
| # http://nachbaur.com/blog/building-ios-apps-for-over-the-air-adhoc-distribution | |
| # http://blog.octo.com/en/automating-over-the-air-deployment-for-iphone/ | |
| # http://www.neat.io/posts/2010/10/27/automated-ota-ios-app-distribution.html |
| # Backup | |
| docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql | |
| # Restore | |
| cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE | |
| <?php | |
| date_default_timezone_set('America/Detroit'); | |
| //include autoloader to make sure all files are included | |
| include '../autoloader.inc.php'; | |
| usergrid_autoload('Apigee\\Usergrid\\Client'); | |
| //initialize the SDK | |
| $client = new Apigee\Usergrid\Client('crainsdetroit','cdbapp'); | |
| //Need to login before doing anything for the sake of permissions | |
| $client->login("USERNAME","PASSWORD"); |