Skip to content

Instantly share code, notes, and snippets.

View godshades's full-sized avatar
🎯
Focusing

HungVP godshades

🎯
Focusing
View GitHub Profile
@pythoninthegrass
pythoninthegrass / README.md
Last active April 3, 2025 16:10
Ollama + Continue.dev VSCode settings

Ollama

Quickstart

# install ollama
brew install --cask ollama

# install continue.dev
code --install-extension Continue.continue
@FreddieOliveira
FreddieOliveira / docker.md
Last active April 27, 2025 16:55
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

[<Cập nhật> Phiên bản mới, hỗ trợ WhiteList, tối ưu truy xuất hơn]

Truy cập Advanced Settings - Customization - Scripts - Run After Router Started

Thêm vào đoạn code vào dưới cùng

### Check network is ready
while true; do sleep 15; ping -c1 8.8.8.8 > /dev/null && break; done

### Create Adblock List
echo "https://adaway.org/hosts.txt" >> /tmp/adblock.list
echo "https://raw.githubusercontent.com/bigdargon/hostsVN/master/hosts" &gt;&gt; /tmp/adblock.list
@parth1020
parth1020 / Google Maps Simple Multiple Marker Example
Created January 8, 2013 07:04
Google Maps Simple Multiple Marker Example
<html>
<head>
<title>Google Maps Multiple Markers</title>
<script src="http://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script>
</head>
<body>
<div id="map" style="height: 400px; width: 500px;">
</div>
<script type="text/javascript">