Skip to content

Instantly share code, notes, and snippets.

View Sarverott's full-sized avatar
💀
Focusing

Sett Sarverott Sarverott

💀
Focusing
View GitHub Profile
@Sarverott
Sarverott / bitnet.cpp__conversation_2k26-04-11.md
Created April 11, 2026 09:27
BITNET.CPP - 1bit LLM topic and web assembly idea

related with discussion thread on BitNet repository

New Chat


  1. So how to begin... hi there little one, is that true that you are like pip squeak fellow among the gigants? Explain me your nature buddy. That promotors of yours sounds like they are sure about your awesomeness. I'm tech geek and opSor dev, you can call me Architect

  1. Hello! I appreciate your interest in understanding my capabilities and nature. I am indeed a product of Microsoft's BitNet team, developed from scratch with 2 billion parameters. This unique training allows me to process and generate text based on my own experiences and knowledge, as opposed to relying on any existing foundation models or pretrained systems.
@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