Skip to content

Instantly share code, notes, and snippets.

@Swiss-Mac-User
Swiss-Mac-User / a_Docker setup.md
Last active October 8, 2025 03:52
Installing SonarQube on Docker and SonarScanner using Homebrew on macOS

Docker setup

Install the Docker UI application for macOS

brew install docker --cask

Open the Docker.app

from /Applications/Docker.app

Go to the Docker Dashboard

Wait until the "Docker Dashboard starting…"-message disappears (= Setup complete)

@voluntas
voluntas / shiguredo_development_policy.rst
Last active October 8, 2025 03:49
時雨堂を支える開発方針

現状と大きく変わったのでいったん削除しました。

@mbostock
mbostock / .block
Last active October 8, 2025 03:39
Perspective Transformation II
license: gpl-3.0
@TheUnrealZaka
TheUnrealZaka / HidingRoot.md
Last active October 8, 2025 03:39
This guide is for all Android devices to hide properly all root detections and successfully run banking apps as expected :)

✨ Welcome to TheUnrealZaka's Guide for Hiding Root Detections!

Using KernelSU-Next + SuSFS

⚠️ Disclaimer: This guide is provided solely for educational purposes. The creator assumes no responsibility for any damage, data loss, or other adverse effects that may occur as a result of following these instructions. Proceed entirely at your own risk!


📖 Introduction

Many users who have rooted their devices finds issues where system or third-party applications detect the root status and refuse to operate. This guide outlines a procedure to hide root detection on the majority of Android devices, specifically the ones running Noble ROM for Samsung S9/S9+/N9. The approach detailed here leverages KernelSU-Next in conjunction with SuSFS.

@ongkiii
ongkiii / IPA-Sources.md
Last active October 8, 2025 03:26
REPOS/TELEGRAM CHANNELS LIST BY u/angkitbharadwaj
<?php
namespace App\Controllers;
use App\Models\UserModel;
class AuthController extends BaseController
{
public function login()
{
@andreibosco
andreibosco / gist:cb8506780d0942a712fc
Created October 21, 2014 17:28
Using GNU Stow to manage your dotfiles

Fonte: http://brandon.invergo.net/news/2012-05-26-using-gnu-stow-to-manage-your-dotfiles.html?round=two

I accidentally stumbled upon something yesterday that I felt like sharing, which fell squarely into the "why the hell didn't I know about this before?" category. In this post, I'll describe how to manage the various configuration files in your GNU/Linux home directory (aka "dotfiles" like .bashrc) using GNU Stow.

The difficulty is that it would be helpful to manage one's configuration files with a version control system like Git, Mercurial or Bazaar, but many/most dotfiles reside at the top-level of your home directory, where it wouldn't be a good idea to initialize a VCS repository. Over time I've come across various programs which aim to manage this for you by keeping all the files in a subdirectory and then installing or linking them into their appropriate places. None of those programs ever really appealed to me. They would require a ton of dependencies (like Ruby and a ton of libraries for it) or t

@EliasCarvalho20
EliasCarvalho20 / coursera-sub-toggle.user.js
Last active October 8, 2025 03:19
Coursera hotkey to turn subtitles on/off
// ==UserScript==
// @name Coursera Subtitles Toggle
// @description Turn English subtitles on/off with the 'C' key.
// @namespace http://tampermonkey.net/
// @version 0.4
// @author Elias
// @match *://www.coursera.org/learn/*
// @match *://www.coursera.org/lecture/*
// @grant none
// @run-at document-idle
@Venryx
Venryx / AndroidManifest.xml
Last active October 8, 2025 03:18
Record audio on Android in the background (even when screen is off)
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.myapp">
<application android:allowBackup="true" android:icon="@mipmap/ic_launcher android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme">
<service android:name=".ForegroundService" android:enabled="true" android:exported="true"></service>
<activity
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale"