Skip to content

Instantly share code, notes, and snippets.

View GoodnessEzeokafor's full-sized avatar
🏠
Working from home

Ezeokafor GoodnessEzeokafor

🏠
Working from home
View GitHub Profile
  • git rm -r --cached .
  • git add .
  • git commit -m ".gitignore fix"
@GoodnessEzeokafor
GoodnessEzeokafor / Ganache.md
Created January 4, 2020 10:21
Installing Ganache on ubuntu
  • Ubuntu, open a browser and navigate to https://github.com/trufflesuite/ganache/releases
  • Download the latest Linux release which will be the *.AppImage file.For example ganache-1.3.0-x86_64.AppImage.
  • Once the download is complete, open a new terminal and change into the directory with the *.AppImage file.
  • Use chmod to make the file executable: chmod a+x ganache-1.3.0-x86_64.AppImage
  • You will be prompted if you want to integrate the application into your system. For convenience, click Yes. This will allow you to launch Ganache later from Ubuntu Application menu
  • Ganache will launch and prompt if you want to enable Google Analytics tracking to help the developers improve the software. Toggle this off if you wish, then click Continue.
@GoodnessEzeokafor
GoodnessEzeokafor / update.md
Created December 30, 2019 18:54
Renaming Apps from the CLI on Heroku
  • git remote rm heroku
  • heroku git:remote -a newname
@GoodnessEzeokafor
GoodnessEzeokafor / tar.md
Created December 19, 2019 15:18
Installing and extracting a tar gz file on ubuntu 18.04
## Truffle Integration process exited prematurely due to signal 'SIGINT'. (node:8450) MaxListenersExceededWarning: Possible EventEmitter memory leak detected. 2 watcher-stopped listeners added. Use emitter.setMaxListeners() to increase limit
* rm -rf ~/.config/Ganache
* ./ganache-2.1.2-linux-x86_64.AppImage
@GoodnessEzeokafor
GoodnessEzeokafor / deployingDjangoAppOnHeroku.md
Last active August 21, 2018 10:26
Deploying Your Django App On Heroku

#Install The Following Packages Django==2.0.7 # django dj-database-url==0.5.0 # for your database whitenoise==4.0 # to manage your static files on heroku gunicorn==19.9.0 # to deploy your app on heroku django-heroku==0.3.1

#Include the following on your .gitignore file *.pyc