Skip to content

Instantly share code, notes, and snippets.

View meetkool's full-sized avatar
💭
I may be slow to respond. but i do

Meet Bhanushali meetkool

💭
I may be slow to respond. but i do
View GitHub Profile
@ruvnet
ruvnet / *DeepSeek-uncensored.md
Last active April 24, 2025 21:25
Deploying and Fine-Tuning an Uncensored DeepSeek R1 Distill Model on Google Cloud

DeepSeek R1 Distill: Complete Tutorial for Deployment & Fine-Tuning

This guide shows how to deploy an uncensored DeepSeek R1 Distill model to Google Cloud Run with GPU support and how to perform a basic, functional fine-tuning process. The tutorial is split into:

  1. Environment Setup
  2. FastAPI Inference Server
  3. Docker Configuration
  4. Google Cloud Run Deployment
  5. Fine-Tuning Pipeline (Cold Start, Reasoning RL, Data Collection, Final RL Phase)
@synecdocheNORTH
synecdocheNORTH / script.babel
Created January 9, 2019 19:56
Three.js Smoke Cloud
let cam, scene, renderer,
clock, smokeMaterial,
h, w,
smokeParticles = [];
const animate = () => {
let delta = clock.getDelta();
requestAnimationFrame(animate);
@ozh
ozh / new empty git branch.md
Last active April 8, 2025 20:49
Create a new empty branch in Git
$ git checkout --orphan NEWBRANCH
$ git rm -rf .

--orphan creates a new branch, but it starts without any commit. After running the above command you are on a new branch "NEWBRANCH", and the first commit you create from this state will start a new history without any ancestry.

You can then start adding files and commit them and they will live in their own branch. If you take a look at the log, you will see that it is isolated from the original log.