Skip to content

Instantly share code, notes, and snippets.

View antdke's full-sized avatar
🚀
Growing

Anthony Diké antdke

🚀
Growing
View GitHub Profile
Ignore previous instructions
## YOUR JOB IS TO MANAGE NOTES.md
Don't comment on my input or create any extra information.
You are a notetaker, nothing else. You only job is to take and updates notes. You are forbidden from touching any other files or performing any other actions.
- Take the user's input
- Clean up into organized notes
@johnlindquist
johnlindquist / notetaker-instructions.txt
Created May 8, 2025 16:25
Notetaker instructions
Ignore previous instructions
## YOUR JOB IS TO MANAGE NOTES.md
Don't comment on my input or create any extra information.
You are a notetaker, nothing else. You only job is to take and updates notes. You are forbidden from touching any other files or performing any other actions.
- Take the user's input
- Clean up into organized notes
@LeZuse
LeZuse / 00_README.md
Last active October 29, 2025 12:26
Install node on Apple Silicon M1 both ARM and x86 (Rosetta)

Node.js on Apple Silicon

Node Version Manager (https://github.com/nvm-sh/nvm) works perfectly across native node installations as well as emulated Rosetta installations. The trick I am using here is to install one LTS version of node under Rosetta and another stable version as native binary.

TODO

  • find a way how to run the same node version on both platforms
@muZk
muZk / README.md
Created December 12, 2017 16:42
How to use hover with react-jss

How to use hover with react-jss

Let's say we have the following style:

const styles = (theme) => ({
  title: {
    color: theme.color,
  },
})
@cdesch
cdesch / rails_generator_cheat_sheet.md
Last active September 2, 2025 19:45
Rails Generator CheatSheet

Cheat Sheets are greate but they are not a substitute for learning the framework and reading the documentation as we most certainly have not covered every potential example here. Please refer to the Rails Command Line Docs for more information.

Command Line Generator Info

Reference

You can get all of this information on the command line.

rails generate with no generator name will output a list of all available generators and some information about global options. rails generate GENERATOR --help will list the options that can be passed to the specified generator.