Skip to content

Instantly share code, notes, and snippets.

View Niweera's full-sized avatar
🚁
________Apache_Helicopter_______

Nipuna Weerasekara Niweera

🚁
________Apache_Helicopter_______
View GitHub Profile
@VerteDinde
VerteDinde / electron-openjs.md
Last active June 23, 2020 21:05
Electron + OpenJS: Additional Resources

Welcome! 👋

If you're here, you may have watched Electron's OpenJS keynote and are looking for additional resources. We're happy that you're interested in Electron!

Below are a list of all of the resources listed in the keynote, as well as some additional links that you may find helpful.

I'd like to learn more about Electron!

const scraper = require('./scrape.js')
const models = require('./models.js')
const processModels = models => Promise.all(
models.map(model => processLinks(model, model.urls))
).then(
result => console.log(JSON.stringify(result))
)
const processLinks = (model, urls) => Promise.all(
@lukas-h
lukas-h / license-badges.md
Last active May 28, 2024 10:58
Markdown License Badges for your Project

Markdown License badges

Collection of License badges for your Project's README file.
This list includes the most common open source and open data licenses.
Easily copy and paste the code under the badges into your Markdown files.

Notes

  • The badges do not fully replace the license informations for your projects, they are only emblems for the README, that the user can see the License at first glance.

Translations: (No guarantee that the translations are up-to-date)

@justintv
justintv / .bashrc
Created August 17, 2009 00:53
Display git branch in bash prompt
# If you work with git, you've probably had that nagging sensation of not knowing what branch you are on. Worry no longer!
export PS1="\\w:\$(git branch 2>/dev/null | grep '^*' | colrm 1 2)\$ "
# This will change your prompt to display not only your working directory but also your current git branch, if you have one. Pretty nifty!
# ~/code/web:beta_directory$ git checkout master
# Switched to branch "master"
# ~/code/web:master$ git checkout beta_directory
# Switched to branch "beta_directory"