Skip to content

Instantly share code, notes, and snippets.

View thetrung's full-sized avatar

Nguyễn Thế Trung thetrung

View GitHub Profile
@thetrung
thetrung / run_server.sh
Created September 8, 2020 16:05
Start SimpleHTTPServer in Background
#!/usr/bin/env bash
# Create a page in the current dir
echo "Init server..."
# Start server
python -m SimpleHTTPServer 8000 &> /dev/null &
pid=$!
@thetrung
thetrung / iOS_info.plist
Created November 20, 2020 18:09
To fix iPAD UI bug when submitting to AppStore
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>BuildMachineOSBuild</key>
<string>19G73</string>
<key>CFBundleDevelopmentRegion</key>
<string>{{ios.default_language}}</string>
<key>CFBundleDisplayName</key>
<string>{{project.title}}</string>
@thetrung
thetrung / settings.json
Last active December 10, 2022 07:18
Settings-vsCode-10.Dec.2022
{
"workbench.startupEditor": "none",
"workbench.activityBar.visible": false,
// "workbench.editor.showIcons": false,
"editor.fontSize": 13.7,
// 3 columns section of Line-Number
// "editor.lineHeight": 26,
// "editor.folding": false,