Skip to content

Instantly share code, notes, and snippets.

View alexjercan's full-sized avatar
🎯
Focusing

Alexandru Jercan alexjercan

🎯
Focusing
  • Bucharest, Romania
View GitHub Profile
@alexjercan
alexjercan / index.html
Created August 2, 2023 13:59
ChatGPT webapp
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Chat App</title>
<script type="module" src="https://cdn.jsdelivr.net/npm/openai@3.3.0/+esm"></script>
</head>
<body>
<div>
<label for="openai-key">API key</label>
@alexjercan
alexjercan / aoc2021-day12.ipynb
Created December 12, 2021 12:10
Aoc2021 day12
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@alexjercan
alexjercan / aoc2021-day06.ipynb
Created December 6, 2021 21:38
Aoc2021 day06 lanternfish got out of hand
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@alexjercan
alexjercan / bpy-editor.py
Created August 16, 2021 17:03
Python script that uses the Blender Video Editor to automate image sequence plus audio into video file
import os
import re
import sys
import bpy
import argparse
from pathlib import Path
def atoi(text):
return int(text) if text.isdigit() else text