Skip to content

Instantly share code, notes, and snippets.

View ictus4u's full-sized avatar
πŸš€

Walter Gomez ictus4u

πŸš€
View GitHub Profile
@devinschumacher
devinschumacher / post.md
Last active March 31, 2025 06:29
How to Bulk Leave Facebook Groups (No extensions, ads, or paid products) - Step-by-Step Guide
title
How to Bulk Leave Facebook Groups (No extensions, ads, or paid products) - Step-by-Step Guide

How to Bulk Leave Facebook Groups (No extensions, ads, or paid products) - Step-by-Step Guide

Are you looking for an efficient way to leave multiple Facebook groups at once?

@MawKKe
MawKKe / cmake-cxx-mold-linking-howto.md
Last active February 4, 2025 19:11
How to try out the new "mold" linker with your CMake C/C++ project

How to try out the new mold linker with your CMake C/C++ project

Here is a quick how-to if you want to try out the new (supposedly fast) C/C++ linker https://github.com/rui314/mold

In this document I used Ubuntu-22.04 docker container with

  • GCC version 11.2.0
  • Clang version 14.0.0

1. Install mold :

@jackburns
jackburns / gmailAutoachive.js
Last active July 31, 2022 13:04
gmail autoarchive
function gmailAutoarchive() {
const rules = [
{label: "autoarchive", olderThanDays: 3},
{label: "autoarchive-delayed", olderThanDays: 7},
{label: "autoarchive-read", olderThanDays: 1, onlyRead: true},
{olderThanDays: 14, onlyRead: true}
]
const batch_size = 100;
# Go to ldap Folder and create a SSL Folder
cd /etc/ldap/
mkdir ssl
cd ssl/
# Create CA
openssl req \
-subj "/C=IN/ST=Maharashtra/L=Mumbai City/O=Information Security Systems/OU=IT Services/CN=OpenLDAP Test Server" \
@apr-1985
apr-1985 / 1-Jenkins-JCasC-Examples.md
Last active February 23, 2025 14:34
Jenkins Config As Code Examples

Jenkins JCasC Examples

Various examples of how to setup different components using JCasC

@dims
dims / README.md
Last active March 30, 2025 21:48
Kubernetes Resources
@FreddieOliveira
FreddieOliveira / docker.md
Last active April 24, 2025 10:02
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

@idelem
idelem / titleUrlMarkdownClip.js
Last active March 5, 2025 13:13 — forked from bradleybossard/titleUrlMarkdownClip.js
Bookmarklet to copy current page title and url in Markdown format to clipboard, like [title](url) - Usual for posting links to resources in README.md files
javascript:(function() {
function copyToClipboard(text) {
if (window.clipboardData && window.clipboardData.setData) {
/*IE specific code path to prevent textarea being shown while dialog is visible.*/
return clipboardData.setData("Text", text);
} else if (document.queryCommandSupported && document.queryCommandSupported("copy")) {
var textarea = document.createElement("textarea");
textarea.textContent = text;
@oofnikj
oofnikj / answerfile
Last active April 22, 2025 09:28
Install Docker on Termux
KEYMAPOPTS="us us"
HOSTNAMEOPTS="-n alpine"
INTERFACESOPTS="auto lo
iface lo inet loopback
auto eth0
iface eth0 inet dhcp
hostname alpine
"
TIMEZONEOPTS="-z UTC"
@aroraayush
aroraayush / compile-nfs-ganesha-ubuntu-18.04_20.04.md
Last active July 22, 2022 02:47 — forked from cy-lee/compile-nfs-ganesha-ubuntu-16.04
Install / Compile and Build nfs-ganesha under Ubuntu-18.04/20.04