Skip to content

Instantly share code, notes, and snippets.

View vshmoylov's full-sized avatar
🤩
Building some great stuff

Victor Shmoilov vshmoylov

🤩
Building some great stuff
View GitHub Profile
@vshmoylov
vshmoylov / lswitch.c
Last active August 16, 2020 12:00
Language switcher. Taken from: https://haali.su/winutils/ Eventually will rewrite this to PowerShell script.
#define _WIN32_WINNT 0x500
#include <windows.h>
#include <tchar.h>
TCHAR g_prog_dir[MAX_PATH*2];
DWORD g_prog_dir_len;
HHOOK g_khook;
HANDLE g_hEvent;
UINT g_key=VK_APPS;
@abbaspour
abbaspour / nginx.conf
Last active August 28, 2024 02:52
Guide how to enable JWT validation on open source nginx server using ngx-http-auth-jwt-module
daemon off;
worker_processes 1;
error_log logs/error.log;
events {
worker_connections 1024;
}
http {
include mime.types;
@ChewySalmon
ChewySalmon / app.dockerfile
Last active March 27, 2023 18:00
Laravel development docker setup using PHP 8+, Nginx, MySql 8+, PhpMyAdmin and Mailhog. Includes all relevant service Dockerfiles and the Compose file. [Imagick edition]
FROM php:8.0-fpm
RUN apt-get update && apt-get install -y \
libmagickwand-dev \
--no-install-recommends \
&& pecl install imagick \
&& docker-php-ext-enable imagick \
&& docker-php-ext-install pdo_mysql
@veekaybee
veekaybee / normcore-llm.md
Last active July 27, 2025 15:50
Normcore LLM Reads

Anti-hype LLM reading list

Goals: Add links that are reasonable and good explanations of how stuff works. No hype and no vendor content if possible. Practical first-hand accounts of models in prod eagerly sought.

Foundational Concepts

Screenshot 2023-12-18 at 10 40 27 PM

Pre-Transformer Models