Skip to content

Instantly share code, notes, and snippets.

View Sarverott's full-sized avatar
💭
I may be slow to respond.

Sett Sarverott Sarverott

💭
I may be slow to respond.
View GitHub Profile
@DolphinOfficial
DolphinOfficial / PostShutdownFullLog.txt
Created April 16, 2025 00:48
Text file created by Roblox
-- 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 ------------------
{
}
@cnlohr
cnlohr / testsecret.yml
Created February 5, 2025 04:02
workflow with manual dispatch and secret in environment - needs to be run manually - only works after committed to default branch
# 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:
@supersonictw
supersonictw / ollama-export.sh
Last active January 29, 2026 06:22
Ollama Model Export Script
#!/bin/bash
# Ollama Model Export Script
# Usage: bash ollama-export.sh vicuna:7b
# SPDX-License-Identifier: MIT (https://ncurl.xyz/s/o_o6DVqIR)
# https://gist.github.com/supersonictw/f6cf5e599377132fe5e180b3d495c553
# Interrupt if any error occurred
set -e
# Declare
@AnweshGangula
AnweshGangula / WebGL-WebGPU-frameworks-libraries.md
Created April 15, 2024 10:26 — forked from dmnsgn/WebGL-WebGPU-frameworks-libraries.md
A collection of WebGL and WebGPU frameworks and libraries

A non-exhaustive list of WebGL and WebGPU frameworks and libraries. It is mostly for learning purposes as some of the libraries listed are wip/outdated/not maintained anymore.

Engines and libraries ⚙️

Name Stars Last Commit Description
three.js ![GitHub
@apoos-maximus
apoos-maximus / raw_packet_read_write.c
Created March 19, 2024 20:35 — forked from cnlohr/raw_packet_read_write.c
Read/write raw packets in C in Linux
//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>
@cnlohr
cnlohr / raw_packet_read_write.c
Last active May 2, 2025 16:21
Read/write raw packets in C in Linux
//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>
[
{
"name": "160m",
"lower_bound": 1810000,
"upper_bound": 2000000,
"frequencies": {
"bpsk31": 1838000,
"ft8": 1840000,
"wspr": 1836600,
"jt65": 1838000,
@AndreiTelteu
AndreiTelteu / ProxyController.php
Created August 3, 2020 11:53
Laravel Simple Proxy Gateway with Guzzle
<?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
@evantoli
evantoli / GitConfigHttpProxy.md
Last active March 8, 2026 14:47
Configure Git to use a proxy

Configure Git to use a proxy

In Brief

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: