Skip to content

Instantly share code, notes, and snippets.

@takekazuomi
takekazuomi / csharp.gitignore
Created April 17, 2014 05:47
.gitignore for C#
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
# User-specific files
*.suo
*.user
*.sln.docstates
# Build results
@FreddieOliveira
FreddieOliveira / docker.md
Last active May 4, 2024 12:04
This tutorial shows how to run docker natively on Android, without VMs and chroot.

Docker on Android 🐋📱

Edit 🎉

All packages, except for Tini have been added to termux-root. To install them, simply pkg install root-repo && pkg install docker. This will install the whole docker suite, left only Tini to be compiled manually.


Summary

@kyo-takano
kyo-takano / making-the-most-of-local-llms.ipynb
Last active May 4, 2024 12:02
ローカルLLMはこーやって使うの💢
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ianhan
ianhan / readme
Created July 6, 2019 08:21 — forked from captain-amygdala/readme
G-Sync Arria V Module Reverse notes
Location of the zip with the quartus project, scans and this note:
https://drive.google.com/file/d/19l7rQpiQJmDnbOJQavnp8BZulNxUG0uI/view?usp=sharing
Power
I injected 5V on C60 (Fat ceramic cap , on top lower right corner near the sodimm edge)
The Module needs a fair ammount of current to start up properly. I had my lab supply at 3A current
limit, with the original config bitstream off the config prom on the module it draws about 700mA after startup
@abir-taheer
abir-taheer / instagram-follower-following.js
Last active May 4, 2024 11:59
"This is our community, this is our family, these are our friends." https://www.youtube.com/watch?v=gk7iWgCk14U&t=425s
if (window.location.origin !== "https://www.instagram.com") {
window.alert(
"Hey! You need to be on the instagram site before you run the code. I'm taking you there now but you're going to have to run the code into the console again.",
);
window.location.href = "https://www.instagram.com";
console.clear();
}
const fetchOptions = {
credentials: "include",
@jrudolph
jrudolph / build-yugabyte-locally.md
Last active May 4, 2024 11:54
How to build yugabyte locally
-- === DDL
CREATE TABLE categories (
id INT PRIMARY KEY AUTO_INCREMENT,
name CHAR(50) NOT NULL
);
CREATE TABLE items (
id INT PRIMARY KEY AUTO_INCREMENT,
name CHAR(50) NOT NULL,
created_at TIMESTAMP,
@protorob
protorob / artowoo.sh
Last active May 4, 2024 11:52
Bash Sript to Automate the Configuration of the Artomultiplo's Woocommerce Starter Kit
#!/bin/bash -e
# Start allways the same
wpuser='yourusername'
wpuseremail='yourname@yourdomain.tld'
wpuserpass=$(date +%s | sha256sum | base64 | head -c 16)
dpprefix=$(date +%s | sha256sum | base64 | head -c 6)
clear