https://stackoverflow.com/a/62906571/1255819
Found onKill old adb server on remote server.
devhost$ adb kill-server
Activate adb server on local client
laptop$ adb start-server
devhost$ adb kill-server
laptop$ adb start-server
const fs = require('fs-extra'); | |
console.log("\n\nBefore Run Script\n\n"); | |
function copyDirs(fromPath, toPath, dirsToCopy) { | |
for (let i = 0; i < dirsToCopy.length; i++) { | |
let fromDir = fromPath + dirsToCopy[i]; | |
let toDir = toPath + dirsToCopy[i]; | |
let dirExist = fs.existsSync(toDir); |
# create a file C:\Users\[user]\.bashrc | |
# add this content | |
# add your onw aliases or changes these ones as you like | |
# to make a dot (.bashrs) file in windows, create a file ".bashrs." (without extention) and save. windows will save it as ".bashrc" | |
alias ls='ls -alh' | |
alias cdnginx='cd /c/nginx && ls' | |
alias cdmcga='cd /c/Users/[user]/sbox/node/mcga && ls' | |
alias cdfood9='cd /c/Users/[user]/sbox/node/food9 && ls' | |
alias cdmysql='cd /c/nginx/mysql/bin && ls' |
using System; | |
using System.Collections.Generic; | |
using System.Text; | |
namespace ConversionLayer.Wave | |
{ | |
internal class SineWave | |
{ | |
#region Fields |