Skip to content

Instantly share code, notes, and snippets.

View noahlias's full-sized avatar
🎯
Focusing

Noahlias noahlias

🎯
Focusing
View GitHub Profile
@noahlias
noahlias / main.cpp
Created August 16, 2023 02:28
video_to_ascii
#include <SFML/Audio.hpp>
#include <chrono>
#include <iostream>
#include <opencv2/opencv.hpp>
#include <thread>
using namespace std;
using namespace cv;
void playAudio(const string& audio_path) {
@noahlias
noahlias / olefile_test.py
Created June 5, 2023 16:34
OLE file research.
import click
import olefile
import os
import imghdr
import struct
import filetype
@click.command()
@click.argument("file_name", type=click.Path(exists=True))
@noahlias
noahlias / mergedict.md
Last active June 5, 2023 16:33
Some Research about python dict merge.
test_a = {'country':'China','state':None}
test_b = {'country': None,'state':'Beijing'}

Unpack and Merge

Reference