Skip to content

Instantly share code, notes, and snippets.

View distante's full-sized avatar
🥸
unit testing life.

Saninn Salas Diaz distante

🥸
unit testing life.
View GitHub Profile
@distante
distante / running-logs
Created December 30, 2023 18:57
nextcloud android app start logs
--------- 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
@distante
distante / adb.md
Last active August 13, 2020 08:45
Setup adb for remote development with local devices
@distante
distante / beforeAndroidBuild.js
Created May 13, 2018 17:34
Folder fixes for Cordova 8 (Android 7.0.0)
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);
@distante
distante / .bashrc
Created August 11, 2017 18:08 — forked from wzup/.bashrc
alias for Git Bash on Windows
# 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'
@distante
distante / SineWave.cs
Last active January 2, 2017 20:00 — forked from benkitzelman/SineWave.cs
Generate WAV formatted dtmf tones in C#
using System;
using System.Collections.Generic;
using System.Text;
namespace ConversionLayer.Wave
{
internal class SineWave
{
#region Fields