Skip to content

Instantly share code, notes, and snippets.

View Adhjie's full-sized avatar
🎯
Focusing

Adi Adhjie

🎯
Focusing
View GitHub Profile
@dk949
dk949 / comments_of_the_world.md
Last active June 27, 2025 19:40
Comments in different programming languages

Comments in different programming languages

This document lists comment styles and languages (and dialects) that use it. The list is based on the one used in NERD commenter.

Comment types are grouped by the types of symbols used. Each example is organised as a comment block followed by a list of languages.

Note1: the number of languages is quite large, and much of this

@RubenKelevra
RubenKelevra / fast_firefox.md
Last active July 4, 2025 12:11
Make Firefox fast again
@gorshkov-leonid
gorshkov-leonid / docker-in-windows.md
Last active April 2, 2025 10:16
Docker In Windows (Final)

See final versions without trash here

Docker in Windows without Docker Desktop

❤️‍🔥 Install docker client in Windows

  • Download necessary version of docker binaries from https://docs.docker.com/engine/install/binaries/ and extract archive to c:/Program Files, for example, using script in powershell. Run powershell as Administrator and call:
    Expand-Archive .\docker-20.10.9.zip -DestianationPath $Env:ProgramFiles  
    Files docker.exe and dockerd.exe will be here c:/Program Files/docker/.
@gorshkov-leonid
gorshkov-leonid / install-applications.md
Last active December 13, 2024 10:38
Install applications
@gorshkov-leonid
gorshkov-leonid / docker-in-windows.md
Last active July 1, 2025 21:48
Docker in Windows without Docker Desktop
@gorshkov-leonid
gorshkov-leonid / install-and-configure-ubuntu-wsl.md
Last active December 13, 2024 10:37
Install and configure Ubuntu WSL
@brainfucksec
brainfucksec / user.js
Last active June 27, 2025 07:17
user.js - brainfucksec
/*********************************************************************
*
* Name: user.js | brainfucksec
* Descr.: Mozilla Firefox configuration file: `user.js`
* Version: 0.24.2
* Date: 2025-06-08
* URL: https://gist.github.com/brainfucksec/68e79da1c965aeaa4782914afd8f7fa2
* Maintainer: brainf+ck
*
* Info:
@shaybensasson
shaybensasson / install-obsidian.sh
Created July 10, 2021 07:02
Installing Obsidian (an advanced markdown editor) on Ubuntu
#!/usr/bin/env bash
# see https://forum.obsidian.md/t/gnome-desktop-installer/499
set -euo pipefail
icon_url="https://cdn.discordapp.com/icons/686053708261228577/1361e62fed2fee55c7885103c864e2a8.png"
#dl_url=${1:-}
dl_url=$( curl -s https://api.github.com/repos/obsidianmd/obsidian-releases/releases/latest \
| grep "browser_download_url.*AppImage" | tail -n 1 | cut -d '"' -f 4 )