def add(x,y):
return x+y
def sub(x,y):
return x-y
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'======================================================================================================= | |
' 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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."> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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), |
NewerOlder