Skip to content

Instantly share code, notes, and snippets.

View codingdave's full-sized avatar

David-Tillmann Schaefer codingdave

View GitHub Profile
@codingdave
codingdave / bumble-chatlog-export.js
Last active October 21, 2024 14:45 — forked from sippsolutions/bumble-chatlog-export.js
Bumble Chatlog Export (paste in Browser Console while being on an individual Chat Page) with automatic Name resolution and date and Error checking
(function () {
function l(u, i) {
var d = document;
if (!d.getElementById(i)) {
var s = d.createElement('script');
s.src = u;
s.id = i;
d.body.appendChild(s);
}
}
@codingdave
codingdave / instructions.md
Created December 3, 2020 14:25 — forked from juniorz/instructions.md
Building tor on WD My Cloud EX2

How to build tor for WD My Cloud EX2

WD My Cloud EX2 has an Marvell Armada-370 CPU (Marvell PJ4Bv7 Processor rev 1 (v7l)) with 512MB RAM.

This device uses 32-bit binaries with 64K page size. WD releases a cross-compilation environment as part of its "WD My Cloud EX2 GPL Source Code". Download it from WD support page (making sure it matches your firmware version) and follow the instructions in My_Cloud_EX2_Release_Notes_GPL_*.txt to setup the environment. I recommend using a Debian OS.

The following packages are required to use the cross-compilation environment: build-essential automake lib32z1

Building dependencies

@codingdave
codingdave / MSBuildCheatSheet.xml
Created November 30, 2020 12:24 — forked from dotMorten/MSBuildCheatSheet.xml
MSBuild Cheat Sheet
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!--
How to define a variable.
Just stick a new node in a property group.
-->
<PropertyGroup>
<!-- This node in a property group will define a variable -->
<TestVariable>Test Variable Value</TestVariable>