Skip to content

Instantly share code, notes, and snippets.

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

Tony Truong sicay1

🏠
Working from home
View GitHub Profile
@sicay1
sicay1 / jellyfin_home_container.cmd
Created May 18, 2025 10:49
home jellyfin container
docker run -d --name jellyfin --user uid:gid --net=host --volume jellyfin-config:/config --volume jellyfin-cache:/cache --mount type=bind,source=D:\Jellyfin\media,target=/media --restart=unless-stopped jellyfin/jellyfin
@sicay1
sicay1 / gist:b1a3ee0f4a99238dd328e1b4dd6885dd
Last active May 15, 2025 10:30
Learn Python import - JUN

Create file calculation.py

def add(x,y):
  return x+y
  
def sub(x,y):
  return x-y
@sicay1
sicay1 / OffScrub16.vbs
Created December 31, 2024 06:29 — forked from gioxx/OffScrub16.vbs
OffScrub_O16msi.vbs Ufficiale Microsoft (Script to remove (scrub) Office 2016 MSI products when a regular uninstall is no longer possible)
'=======================================================================================================
' Name: OffScrub_O16msi.vbs
' Author: Microsoft Customer Support Services
' Copyright (c) 2015 Microsoft Corporation
' Script to remove (scrub) Office 2016 MSI products
' when a regular uninstall is no longer possible
'=======================================================================================================
Option Explicit
Dim sDefault
Godot offical tutorial
https://docs.godotengine.org/en/stable/community/tutorials.html#where-to-start
https://quiver.dev/tutorials/create-your-first-godot-4-game/
https://www.youtube.com/channel/UCLweX1UtQjRjj7rs_0XQ2Eg/videos
https://www.udemy.com/course/godot-4-gdscript-20-space-shooter/
https://www.udemy.com/course/godot-4-c-pong/
BYPASSING THE CHARACTER LIMIT DISPLAYED WHEN DEBUGGING WITH DELVE AND VSCODE
C:\Users\admin\AppData\Roaming\Code\User\settings.json
"go.delveConfig": {
"useApiV1": false,
"dlvLoadConfig": {
"followPointers": true,
"maxVariableRecurse": 3,
"maxStringLen": 300,
Windows: Internet <---> MITMProxy <---> Bluestacks
1. install mitmproxy
2. start bluestacks (steps 4,5 need bluestack running)
3. download mitm certificate for bluestacks.
start > proxy settings > manual proxy > HOST ip, 8080
NordVPN
get list ovpn link: https://nordvpn.com/ovpn/
create pass.txt file with content:
user
pass
- Edit->EOL Conversion->Convert to Unixformat
- Save txt-file
https://regexr.com/3f4vo
- Text
<!DOCTYPE html>
<html lang="en">
<head>
<title>[Udemy_] Go: The Complete Bootcamp Course (Golang)</title>
<meta charset="utf-8">
<meta name="description" content="Go: The Complete Bootcamp Course (Golang) | Download and Watch Udemy Paid Courses with certificates for Free. Learn Hacking, Photoshop, Coding, Programming, IT & Software, Marketing, Music and more.">
@sicay1
sicay1 / image.dart
Created September 17, 2019 10:20 — forked from aleguerra05/image.dart
decode image base64 in flutter
@override
Widget build(BuildContext context) {
if (_base64 == null)
return new Container();
Uint8List bytes = BASE64.decode(_base64);
return new Scaffold(
appBar: new AppBar(title: new Text('Example App')),
body: new ListTile(
leading: new Image.memory(bytes),
title: new Text(_base64),