$ 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>
Discover gists
Get a list of collections using:
https://api.zotero.org/users/[USER ID]/collections?key=[API KEY]
Where:
[USER ID]
: Listed here: https://www.zotero.org/settings/keys[API KEY]
: Create one here: https://www.zotero.org/settings/keys
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:
- Autonomous Mapping and Navigation Using SLAM Toolbox, Nav2, Gazebo, and Rviz Visualization
- GLC: Semantic Graph-Guided Coarse-Fine-Refine Full Loop Closing for LiDAR SLAM
- Drift-free Visual SLAM using Digital Twins
- pySLAM: a visual SLAM pipeline in Python for monocular, stereo and RGBD cameras.
- pySLAM SLAM pipeline updates
- ICRA 2025 Gaussian-LIC: Real-Time Photo-Realistic SLAM with Gaussian Splatting and LiDAR-Inertial-Camera Fusion
- An unofficial open source implentation of CSIRO's Wildcat SLAM.
- DynoSAM: Dynamic Object Smoothing and Mapping for Dynamic SLAM
- [Present and Future of SLAM in Extreme Environments](https://ieeexplore.
// 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; |
There problem with the Logitech webcam software are the drivers lvrs64.sys
and lvuvc64.sys
.
These drivers are blocking Windows memory integrity.
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]
There are many, many resources, websites, mods, discord servers, and other links that people playing technical minecraft might find useful. This is an attempt at collecting and categorizing some of them.
Starring or bookmarking this gist may be useful :)
Contents:
#!/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 |
-
- #iot
- #chrome-and-friends: Chrome, V8, Blink, Mojo, etc.
- Linux kernel #todo
- expdev #todo
- fuzzing #todo
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