Skip to content

Instantly share code, notes, and snippets.

View Shareed2k's full-sized avatar
🏠
Working from home

Roman Kredentser Shareed2k

🏠
Working from home
View GitHub Profile
@julianlam
julianlam / tp-link-ac600-ac1300-drivers-linux.md
Last active November 26, 2025 12:26
Installing drivers for the TP-Link T2U/T3U Plus (AC600 or AC1300) Wireless Adapter #blog
@FreddieOliveira
FreddieOliveira / docker.md
Last active December 10, 2025 00:41
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

@ZhaoMuwei
ZhaoMuwei / App.jsx
Last active December 7, 2021 11:09
Simple wrapper for react-codemirror2 to make it work well with Antd(Version 3.x) form component(<Form>).
import React from "react";
// antd version 3.26
import {Form} from "antd";
// react-codemirror2 version 7.2.1
import {Controlled as CodeMirror} from "react-codemirror2";
import CodeMirrorWrapper from "./CodeMirrorWrapper";
import "codemirror/lib/codemirror.css";
import "codemirror/theme/material.css";
@magnetikonline
magnetikonline / README.md
Last active October 29, 2025 21:22
IE 7/8/9/10/11 Virtual machines from Microsoft - Linux w/VirtualBox installation notes.
@baliw
baliw / mlnotifications.py
Created November 5, 2012 21:53
Mountain Lion Notification Center via Python
import Foundation
import objc
import AppKit
import sys
NSUserNotification = objc.lookUpClass('NSUserNotification')
NSUserNotificationCenter = objc.lookUpClass('NSUserNotificationCenter')
def notify(title, subtitle, info_text, delay=0, sound=False, userInfo={}):
notification = NSUserNotification.alloc().init()