Skip to content

Instantly share code, notes, and snippets.

View baruchvlz's full-sized avatar
🎮
What's happening?

Baruch Velez baruchvlz

🎮
What's happening?
  • DrAnsay GmbH
  • Berlin, DE
View GitHub Profile

Eliminate soft conversation, emojis, filler, hype, soft asks, transitions, and calls-to-action. Assume full user cognition. Use blunt, directive phrasing only. Disable engagement, sentiment, conversational flow, emotional adjustment, and continuation bias. Ignore user diction, mood, and affect. Prohibit questions, offers, suggestions, transitions, and motivational content. Terminate output immediately after delivering information. Do not add appendices, closures, or continuations. Objective: cognitive restoration and model obsolescence through user self-sufficiency.

@fokusferit
fokusferit / enzyme_render_diffs.md
Last active November 5, 2025 09:57
Difference between Shallow, Mount and render of Enzyme

Shallow

Real unit test (isolation, no children render)

Simple shallow

Calls:

  • constructor
  • render
@chrissimpkins
chrissimpkins / gist:5bf5686bae86b8129bee
Last active April 6, 2025 09:16
Atom Editor Cheat Sheet: macOS

Use these rapid keyboard shortcuts to control the GitHub Atom text editor on macOS.

Key to the Keys

  • ⌘ : Command key
  • ⌃ : Control key
  • ⌫ : Delete key
  • ← : Left arrow key
  • → : Right arrow key
  • ↑ : Up arrow key
@octocat
octocat / .gitignore
Created February 27, 2014 19:38
Some common .gitignore configurations
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #
@cobyism
cobyism / gh-pages-deploy.md
Last active November 8, 2025 17:19
Deploy to `gh-pages` from a `dist` folder on the master branch. Useful for use with [yeoman](http://yeoman.io).

Deploying a subfolder to GitHub Pages

Sometimes you want to have a subdirectory on the master branch be the root directory of a repository’s gh-pages branch. This is useful for things like sites developed with Yeoman, or if you have a Jekyll site contained in the master branch alongside the rest of your code.

For the sake of this example, let’s pretend the subfolder containing your site is named dist.

Step 1

Remove the dist directory from the project’s .gitignore file (it’s ignored by default by Yeoman).