You may need to configure a proxy server if you're having trouble cloning
or fetching from a remote repository or getting an error
like unable to access '...' Couldn't resolve host '...'
.
Consider something like:
<?php | |
namespace App\Http\Controllers; | |
use Illuminate\Http\Request; | |
use GuzzleHttp\Client; | |
class ProxyController extends Controller | |
{ | |
# CEFPYTHON | |
# example of how to do a "connection" overriding using an | |
# external library (eg: urllib3) instead of internal netwkork | |
# library of chromium | |
# | |
# Massimiliano Dal Cero - max<A_T>yatta<D_O_T>it | |
from cefpython3 import cefpython as cef | |
import platform | |
import sys |
No, seriously, don't. You're probably reading this because you've asked what VPN service to use, and this is the answer.
Note: The content in this post does not apply to using VPN for their intended purpose; that is, as a virtual private (internal) network. It only applies to using it as a glorified proxy, which is what every third-party "VPN provider" does.
// Comcast Cable Communications, LLC Proprietary. Copyright 2014. | |
// Intended use is to display browser notifications for critical and time sensitive events. | |
var _ComcastAlert = (function(){ | |
return { | |
SYS_URL: '/e8f6b078-0f35-11de-85c5-efc5ef23aa1f/aupm/notify.do' | |
, dragObj: {zIndex: 999999} | |
, browser: null | |
, comcastCheck: 1 | |
, comcastTimer: null | |
, xmlhttp: null |
#!/usr/bin/python | |
import pwd | |
import os | |
import re | |
import glob | |
PROC_TCP = "/proc/net/tcp" | |
STATE = { | |
'01':'ESTABLISHED', |
adb shell content delete --uri content://settings/settings/pointer_speed | |
adb shell content query --uri content://settings/settings | |
adb shell content insert --uri content://settings/secure --bind name:s:my_number --bind value:i:24 | |
See "package com.android.commands.content;" in /frameworks/base/cmds/content/ | |
Usese "final class ContentProviderProxy implements IContentProvider" in ContentProviderProxy.java |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000
# | |
# Copyright (C) 2013-2020 Vinay Sajip. New BSD License. | |
# | |
import os | |
import os.path | |
from subprocess import Popen, PIPE | |
import sys | |
from threading import Thread | |
from urllib.parse import urlparse | |
from urllib.request import urlretrieve |