<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
code --install-extension Angular.ng-template | |
code --install-extension Compulim.vscode-express | |
code --install-extension EditorConfig.EditorConfig | |
code --install-extension SimonTest.simontest | |
code --install-extension Zignd.html-css-class-completion | |
code --install-extension alefragnani.project-manager | |
code --install-extension andys8.jest-snippets | |
code --install-extension burkeholland.simple-react-snippets | |
code --install-extension capaj.vscode-exports-autocomplete | |
code --install-extension ChakrounAnas.turbo-console-log |
[ | |
"com.noshufou.android.su", | |
"com.noshufou.android.su.elite", | |
"eu.chainfire.supersu", | |
"com.koushikdutta.superuser", | |
"com.thirdparty.superuser", | |
"com.yellowes.su", | |
"com.topjohnwu.magisk", | |
"com.kingroot.kinguser", | |
"com.kingo.root", |
-- Remove the history from | |
rm -rf .git | |
-- recreate the repos from the current content only | |
git init | |
git add . | |
git commit -m "Initial commit" | |
-- push to the github remote repos ensuring you overwrite history | |
git remote add origin [email protected]:<YOUR ACCOUNT>/<YOUR REPOS>.git |
var lastTimeBackPress=0; | |
var timePeriodToExit=2000; | |
function onBackKeyDown(e){ | |
e.preventDefault(); | |
e.stopPropagation(); | |
if(new Date().getTime() - lastTimeBackPress < timePeriodToExit){ | |
navigator.app.exitApp(); | |
}else{ | |
window.plugins.toast.showWithOptions( |
var gulp = require('gulp'), | |
browserSync = require('browser-sync'), | |
historyApiFallback = require('connect-history-api-fallback'); | |
gulp.task('serve', function() { | |
browserSync({ | |
files: ['js/**/*.js', '*.html', 'css/**/*.css'], | |
server: { | |
baseDir: '.', | |
middleware: [ historyApiFallback() ] |
//AngularJS app | |
.config( function myAppConfig ($locationProvider) { | |
$locationProvider.html5Mode(true); | |
... | |
} |
FROM php:5.6-cli | |
RUN apt-get update \ | |
&& apt-get install -y \ | |
libfreetype6-dev \ | |
&& rm -rf /var/lib/apt/lists/* \ | |
&& docker-php-ext-install iconv \ | |
&& apt-get remove -y \ | |
libfreetype6-dev \ | |
&& apt-get install -y \ |
#!/bin/bash | |
# Functions ============================================== | |
# return 1 if global command line program installed, else 0 | |
# example | |
# echo "node: $(program_is_installed node)" | |
function program_is_installed { | |
# set to 1 initially | |
local return_=1 |