Skip to content

Instantly share code, notes, and snippets.

@0xdevalias
0xdevalias / music-apis-and-dbs.md
Last active May 5, 2024 21:25
A collection of music APIs, databases, and related tools
diff -U 3 -w -d -r -x .git -x Binaries -x Intermediate -- "a/RootMotionExtractor/RootMotionExtractor.uplugin" b/RootMotionExtractor/RootMotionExtractor.uplugin
--- "a/RootMotionExtractor/RootMotionExtractor.uplugin" 2023-04-09 11:17:42.466226109 -0700
+++ b/RootMotionExtractor/RootMotionExtractor.uplugin 2023-04-09 16:44:40.272197835 -0700
@@ -10,7 +10,7 @@
"DocsURL": "",
"MarketplaceURL": "com.epicgames.launcher://ue/marketplace/content/4b450f82f56040338a4d5744b3eda4f9",
"SupportURL": "http://puglifestudio.com/discord",
- "EngineVersion": "4.27.0",
+ "EngineVersion": "5.0.0",
"CanContainContent": false,
@umardx
umardx / Pi3_as_WiFi_AP_Bridge.md
Last active May 5, 2024 21:24
Using a Raspberry Pi 3 as a Wifi access point and bridge

The specificity of my setup, is that the Raspberry won’t be a router but a bridge. DHCP is thus delegated to the main ADSL router and all devices connected to the AP will appear on the same network than other devices. The instructions below are based on a fresh Raspbian lite install so that it can be reproduced easily.

Install the required packages :

$ sudo apt-get install -y bridge-utils hostapd

To create a bridge, we need to enable ip_forward in the kernel, for that, edit /etc/sysctl.conf and remove comment (#) from the following line :

Ideias para projetos em PHP
Famosos:
Facebook
Yahoo!
Wikipedia
WordPress
Joomla
Tumblr
MailChimp
@Gesugao-san
Gesugao-san / Open in WBM (v2).js
Last active May 5, 2024 21:23
Chrome Bookmarklet — Open in WBM (ver. 2)
javascript: (function() {
var debugOn = false;
if (debugOn) console.log("[\"WayBack Mashine\" (WBM) bookmarklet][log]\nStatus: script starts executing.");
const URLsFilter = ["www.", "http://", "https://"];
const WBMsites = ["https://web.archive.org/save/", "https://web.archive.org/save"];
if (!WBMsites.includes(this.document.location.href)) {
console.log("[WBM bookmarklet][log]\nUser is not on WBM. Target acquired.\nActions:\n1. Copying to current URL to clipboard.\n2. Opening WBM.\nTo second step, click on me on WBM page!");
var targetWBM_HTML = document.createElement("textarea");
targetWBM_HTML.textContent = location.href;
document.body.appendChild(targetWBM_HTML);
@Pagliacii
Pagliacii / neovim-as-merge-tool.md
Last active May 5, 2024 21:23
Using Neovim as a merge tool

git

Using diffview.nvim

# ~/.gitconfig
[merge]
  tool = diffview
[mergetool]
  prompt = false
@Gesugao-san
Gesugao-san / Open in WBM (v3).js
Last active May 5, 2024 21:22
Chrome Bookmarklet — Open in WBM (ver. 3)
javascript: (function() {
var debugOn = false;
let checkBoxesIDS = ["capture_outlinks", "capture_all", "capture_screenshot", "wm-save-mywebarchive", "email_result"];
const userLocation = this.document.location.href;
check();
function check() {
if (debugOn) console.log("[\"WayBack Mashine\" (WBM) bookmarklet][log]\nStatus: script starts executing.");
const URLsFilter = ["www.", "http://", "https://"];
const WBMsites = ["https://web.archive.org/save/", "https://web.archive.org/save"];
if (!WBMsites.includes(userLocation)) {
@gagarine
gagarine / bookmarklet-planete.js
Created September 6, 2011 21:06
bookmarklet for sankore
if (typeof jQuery == 'undefined') {
var jQ = document.createElement('script');
jQ.type = 'text/javascript';
jQ.onload = runthis;
jQ.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js';
document.body.appendChild(jQ);
} else {
runthis();
}
@godbox
godbox / x.js
Created October 8, 2009 09:12
Printliminator
CmdUtils.makeBookmarkletCommand({
name: "Printliminator",
url: "javascript:(function(){function%20loadScript(a,b){var%20c=document.createElement('script');c.type='text/javascript';c.src=a;var%20d=document.getElementsByTagName('head')[0],done=false;c.onload=c.onreadystatechange=function(){if(!done&&(!this.readyState||this.readyState=='loaded'||this.readyState=='complete')){done=true;b()}};d.appendChild(c)}loadScript('http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js?ver=1.3.2',function(){loadScript('http://css-tricks.com/examples/ThePrintliminator/js/printliminator.js',function(){printlimator()})})})()"
})
@godbox
godbox / x.js
Created October 12, 2009 18:32
function getBookmarklets(callback) {
var bookmarklets = {};
var Ci = Components.interfaces;
var Cc = Components.classes;
var bookmarks = Cc["@mozilla.org/browser/nav-bookmarks-service;1"]
.getService(Ci.nsINavBookmarksService);
var history = Cc["@mozilla.org/browser/nav-history-service;1"]