devhost$ adb kill-server
laptop$ adb start-server
| --------- beginning of main | |
| 12-30 18:54:09.789 2541 2541 I extcloud.client: Using CollectorTypeCC GC. | |
| 12-30 18:54:09.802 2541 2541 E extcloud.client: Not starting debugger since process cannot load the jdwp agent. | |
| 12-30 18:54:09.823 2541 2541 I MessageMonitor: Load libmiui_runtime | |
| 12-30 18:54:09.836 2541 2541 I ActivityThread: Relaunch all activities: onCoreSettingsChange | |
| 12-30 18:54:09.836 2541 2541 D CompatibilityChangeReporter: Compat change id reported: 171979766; UID 10131; state: ENABLED | |
| 12-30 18:54:09.859 2541 2541 D nativeloader: Configuring clns-4 for other apk /system/framework/org.apache.http.legacy.jar. target_sdk_version=33, uses_libraries=ALL, library_path=/data/app/~~MvrFdozI2bfN9zY4qlOi9g==/com.nextcloud.client-FfQe3_i-t5RNxXHHUyq8kw==/lib/arm64:/data/app/~~MvrFdozI2bfN9zY4qlOi9g==/com.nextcloud.client-FfQe3_i-t5RNxXHHUyq8kw==/base.apk!/lib/arm64-v8a:/data/app/~~MvrFdozI2bfN9zY4qlOi9g==/com.nextcloud.client-FfQe3_i-t5RNxXHHUyq8kw==/split_config.arm64_v8a.apk!/lib/arm64-v8a:/data/a |
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 |