Skip to content

Instantly share code, notes, and snippets.

View ram-xv's full-sized avatar
🎯
Focusing

ram-xv

🎯
Focusing
View GitHub Profile
@ram-xv
ram-xv / composer-debug.md
Last active October 5, 2023 04:36
Run Composer in debug mode

Windows

To enable and run Composer in debug mode for a more detailed analysis of its operations, carefully follow these step-by-step instructions provided below.

  1. Completely close Composer if already open
  2. Go to Composer's install location (mine is at C:\Users{username}\AppData\Local\Programs\Bot Framework Composer)
  3. Open a terminal in that directory (On Windows, CMD terminal seems to work best)
  4. run set DEBUG=composer*
  5. In that same terminal after step 4, run the Composer executable from the terminal.
  • Ex: in Windows command prompt: run "Bot Framework Composer.exe"
@ram-xv
ram-xv / ubuntu.md
Last active July 19, 2021 05:13
Build Ionic 5 on Linux Ubuntu using Cordova

Using Ubuntu 20 & Ionic 5

install dependencies

sudo add-apt-repository ppa:cwchien/gradle

sudo apt-get update

sudo apt-get install build-essential libssl-dev git lib32stdc++6 lib32z1 openjdk-8-jdk gradle

@ram-xv
ram-xv / FirestoreImportExport.md
Last active July 23, 2021 18:18
Firestore Import Export Data command

Export

npx -p node-firestore-import-export firestore-export -a credentials.json -b backup.json

Import

npx -p node-firestore-import-export firestore-import -a credentials.json -b backup.json