#todo
Create a token INstall GitHub sync in WP ...
#todo
Create a token INstall GitHub sync in WP ...
- Open Automator | |
- File -> New -> Service | |
- Change "Service Receives" to "files or folders" in "Finder" | |
- Add a "Run Shell Script" action | |
- Change "Pass input" to "as arguments" | |
- Paste the following in the shell script box: open -n -b "com.microsoft.VSCode" --args "$*" | |
- Save it as something like "Open in Visual Studio Code" |
using Newtonsoft.Json; | |
//This grab the output from a nodejs and transform it into C# object | |
namespace dnc_nodejs_001 | |
{ | |
class Program |
#!/bin/bash | |
# By Guillaume Descoteaux-Isabelle | |
# Version 0.0.1.1810171102 | |
#@stcgoal install mysql client on Mac OS x and Access thru command line | |
#1. | |
#@v Download and Install Workbench | |
cd ; mkdir tmp_download_workbench ; cd tmp_download_workbench |
https://raw.githubusercontent.com/jgwill/screenshots/master/20181017140146.png Overview of the Capture Shared Screenshots Service
/** | |
* Return true if the Pattern is contained within the string | |
* | |
* Return true if the Pattern is contained within the string | |
* | |
* PHP version 5.6 | |
* |
#!/bin/bash | |
# @v Start Node server when system boot | |
# Starts the node ChatServer when system boot up | |
# ADD THIS : su pi -c 'node /www/chatserver/index.js < /dev/null &' | |
# TO: /etc/rc.local | |
echo "su pi -c 'node /www/chatserver/index.js < /dev/null &'" >> /etc/rc.local |