Skip to content

Instantly share code, notes, and snippets.

@NateWeiler
NateWeiler / How to connect Git Bash to GitHub.md
Created December 15, 2020 12:53
How to connect Git Bash to GitHub

How to connect Git Bash to GitHub

Setup github password terminal:

$ git config credential.helper store
$ git push https://github.com/owner/repo.git

Username for 'https://github.com': <USERNAME>
Password for 'https://[email protected]': <PASSWORD>
@sarkrui
sarkrui / FreeZoteroOverleaf.md
Created November 23, 2022 06:33 — forked from heyjoeway/FreeZoteroOverleaf.md
Free Zotero "integration" in Overleaf

Get a list of collections using:

https://api.zotero.org/users/[USER ID]/collections?key=[API KEY]

Where:

Find the "key" attribute corresponding to the collection you want to use. This is your [COLLECTION ID]. Then, in Overleaf, create a new file. Select "From External URL", then insert the following URL:

@RyotaUshio
RyotaUshio / obsidian-debug-info.ts
Last active June 28, 2025 09:26
Recreate Obsidian's "Show debug info" command
// Originally from the PDF++ plugin (https://github.com/RyotaUshio/obsidian-pdf-plus)
/** Selected subset of the "Show debug info" command's result with some additional entries. */
export async function getObsidianDebugInfo(app: App) {
// This is an empty string if it's the default theme
const themeName = app.customCss.theme;
const themeManifest = app.customCss.themes[themeName];
const numSnippets = app.customCss.snippets.filter((snippet) => app.customCss.enabledSnippets.has(snippet)).length;
const plugins = app.plugins.plugins;

Logitec Camera C210 (maybe C270) - Error - lvrs64.sys , lvuvc64.sys Windows 11 memory integrity

Problem

There problem with the Logitech webcam software are the drivers lvrs64.sys and lvuvc64.sys. These drivers are blocking Windows memory integrity.

Solution

I managed to make this working removing all the drivers from Win11, and use native Win11 native drivers.

  • Windows+X > Device Manager> Imaging Devices > Uninstall device > remove with drivers.
  • Disconnect and connect camera [Error will pop up, ignore it]
@JoakimThorsen
JoakimThorsen / TMC links.md
Last active June 28, 2025 09:23
An attempt at collecting TMC-related resources, websites, mods, servers, and other links.
@franklinmoy3
franklinmoy3 / opkg_updater.sh
Last active June 28, 2025 09:17
OpenWRT OPKG update all installed packages
#!/bin/sh
# Example of job definition (as add job using crontab -e):
# .---------------- minute (0 - 59)
# | .------------- hour (0 - 23)
# | | .---------- day of month (1 - 31)
# | | | .------- month (1 - 12) OR jan,feb,mar,apr ...
# | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# | | | | |
# * * * * * user-name command to be executed
# 30 02 15,28 * * /root/opkg_updater.sh
@tin-z
tin-z / VR_roadmap.md
Last active June 28, 2025 09:16
Becoming a Vulnerability Researcher roadmap: my personal experience
@VictorTaelin
VictorTaelin / dps_sup_nodes.md
Last active June 28, 2025 09:16
Accelerating Discrete Program Search with SUP Nodes

Fast Discrete Program Search 2

I am investigating how to use Bend (a parallel language) to accelerate Symbolic AI; in special, Discrete Program Search. Basically, think of it as an alternative to LLMs, GPTs, NNs, that is also capable of generating code, but by entirely different means. This kind of approach was never scaled with mass compute before - it wasn't possible! - but Bend changes this. So, my idea was to do it, and see where it goes.

Now, while I was implementing some candidate algorithms on Bend, I realized that, rather than mass parallelism, I could use an entirely different mechanism to speed things up: SUP Nodes. Basically, it is a feature that Bend inherited from its underlying model ("Interaction Combinators") that, in simple terms, allows us to combine multiple functions into a single superposed one, and apply them all to an argument "at the same time". In short, it allows us to call N functions at a fraction of the expected cost. Or, in simple terms: why parallelize when we can share?

A

@VictorTaelin
VictorTaelin / fast_dps_add_carry.md
Last active June 28, 2025 09:15
Fast Discrete Program Search with HVM Superpositions (SUP nodes) - finding ADD-CARRY

HOC's Fast Discrete Program Search (DPS)

HOC will soon (EOY?) launch an API for our DPS solution. The interface will be simple:

  • You give us a set of examples (input/output pairs)

  • We'll give you a (Python?) function that models it

And that's it. It will be an universal function finder.