set HTTP_PROXY=http://username:[email protected]:8080
set HTTPS_PROXY=https://username:[email protected]:8080
format: http://username:password@proxy_address:port
example: http://username:[email protected]:8080
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <style> | |
| html,body{ | |
| height: 100%; | |
| } | |
| .container-fluid{ | |
| background: red; |
set HTTP_PROXY=http://username:[email protected]:8080
set HTTPS_PROXY=https://username:[email protected]:8080
format: http://username:password@proxy_address:port
example: http://username:[email protected]:8080
| using System; | |
| using System.Runtime.InteropServices; | |
| using Microsoft.Win32.SafeHandles; | |
| using System.IO; | |
| namespace heri16 | |
| { | |
| /// <summary> | |
| /// Static class to help Start a GUI/Console Windows Process as any user that is logged-in to an Interactive Terminal-Session (e.g. RDP). |
| Angular Firebase (channel): | |
| https://www.youtube.com/channel/UCsBjURrPoezykLs9EqgamOA/search?query=firestore | |
| Quick Start: | |
| https://angularfirebase.com/lessons/firestore-with-angularfire-basics/ | |
| OAuth (Google, fb, etc.) Sign-in: | |
| https://angularfirebase.com/lessons/google-user-auth-with-firestore-custom-data/ | |
| Python SDK (maybe used on RPi) |
| Getting PELUX+QtAuto on the Raspberry Pi 3 | |
| http://pelux.io/yocto/2017/10/27/QtAuto-on-Raspberry-Pi.html | |
| https://github.com/Pelagicore/pelux.io/blob/master/_posts/2017-10-27-QtAuto-on-Raspberry-Pi.md | |
| Open source Linux automotive stack runs on Raspberry Pi and new Intel ARP | |
| https://hk.saowen.com/a/dcec63f458192d85ecf1bda47659b110064e541a5cd6886851c89fd5d0622952 | |
| #Android AUTO |
| @echo off | |
| TITLE "Windows 7 USB installer by MOHAMED EL-SHAHAWI" | |
| set _DVD=H: | |
| :Menu | |
| CLS | |
| echo. | |
| echo. Windows 7 USB installer | |
| echo. |
| .\CompilerSim.exe | foreach-object -process { | |
| switch ($_){ | |
| { $_.tolower().contains("warning")} {Write-Host $_ -foregroundColor Yellow} | |
| { $_.tolower().contains("error")} {Write-Host $_ -foregroundColor Red} | |
| default {Write-Host $_ -foregroundColor White} | |
| } | |
| } | |
| #Ref: https://stackoverflow.com/a/9530314/2747089 |
| Add Submodule to repo: | |
| git add submodule http://---- source/ | |
| Add All Changes | |
| git add . | |
| Add Some files only | |
| git add <filename> <filename2> | |
| Open VIM for commit message before commit: |
| // A Script for Adobe Illustrator to Duplicate Items Hor/Ver with Margin | |
| // Originally by https://github.com/hilukasz | |
| // Modified by Mohamed ElShahawi (ExtremeGTX) | |
| app.userInteractionLevel = UserInteractionLevel.DONTDISPLAYALERTS; | |
| var doc = app.activeDocument; | |
| var selected = doc.selection; | |
| var selectedHeight = selected[0].height; |