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:
-- AH POST-SERVER LOGS -- | |
-- ServerID: 85e463d3-abb8-498c-b0fd-ffd5bf1999c2 | |
-- Server started: April 16, 2025 12:46 AM UTC | Server uptime: 127 seconds | |
------------------ LOADB LOGS ------------------ | |
{ | |
} |
# So you don't pull your hair out, workflow dispatches must be in the default branch. | |
name: Secret Test | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: |
//Based on https://github.com/cnlohr/lamenet/blob/master/librawp.c | |
#include <stdio.h> | |
#include <arpa/inet.h> | |
#include <string.h> | |
#include <linux/if_packet.h> | |
#include <sys/ioctl.h> | |
#include <sys/socket.h> | |
#include <net/if.h> | |
#include <netinet/ether.h> |
//Based on https://github.com/cnlohr/lamenet/blob/master/librawp.c | |
#include <stdio.h> | |
#include <arpa/inet.h> | |
#include <string.h> | |
#include <linux/if_packet.h> | |
#include <sys/ioctl.h> | |
#include <sys/socket.h> | |
#include <net/if.h> | |
#include <netinet/ether.h> |
<?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 |