This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { writeFileSync } from "fs"; | |
const originalFetch = globalThis.fetch.bind(globalThis); | |
function safeStringifyDeep(obj, seen = new WeakSet()) { | |
if (obj === null || typeof obj !== 'object') return obj; | |
if (seen.has(obj)) return "<<Circular>>"; | |
seen.add(obj); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Injectable, OnModuleInit } from '@nestjs/common'; | |
import { InjectRedis } from '@liaoliaots/nestjs-redis'; | |
import { Redis } from 'ioredis'; | |
import { v4 as uuidv4 } from 'uuid'; | |
@Injectable() | |
export class RedisService implements OnModuleInit { | |
private redisSubscriber: Redis; | |
constructor(@InjectRedis() private readonly redis: Redis) {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Acronym | Full Form | |
---|---|---|
AFAIK | As Far As I Know | |
AMA | Ask Me Anything | |
CMV | Change My View | |
DAE | Does Anyone Else | |
ELI5 | Explain Like I'm 5 | |
ETA | Edited To Add | |
FTFY | Fixed That For You | |
FWIW | For What It's Worth | |
IANAD | I Am Not A Doctor |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
yt-dlp https://www.youtube.com/watch?v=6T46sgty4Mk -o test-2 | |
mkdir img | |
git clone https://github.com/LexCybermac/smlr | |
ffmpeg -i test-2.mp4 -vf "fps=1" img/frame_%04d.png | |
pip install torch torchvision numpy Pillow transformers tqdm pathlib annoy scipy | |
python .\smlr.py --image_directory .\img\ --clip_model openai/clip-vit-base-patch16 --threshold 0.22 --batch_size 192 | |
Or (didn't try) | |
https://colab.research.google.com/github/roboflow-ai/notebooks/blob/main/notebooks/image_embeddings_analysis_part_1.ipynb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import cv2 | |
import numpy as np | |
from PIL import Image, ImageDraw, ImageFont | |
import os | |
import shutil | |
debug = False | |
# UI using ShadCN, fast iteraation, learn how to do streaming UIs though |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <fstream> | |
#include <string> | |
#include <vector> | |
#include <thread> | |
#include <curl/curl.h> | |
#include <cstdlib> | |
#include <ctime> | |
#include <sstream> | |
#include <mutex> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
from Google import Create_Service | |
from googleapiclient.http import MediaFileUpload | |
import hashlib | |
import json | |
API_NAME = 'drive' | |
API_VERSION = 'v3' | |
SCOPES = ['https://www.googleapis.com/auth/drive'] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://kevinlinxc.medium.com/how-hard-could-installing-autocomplete-for-powershell-be-4c8a2cbc69be | |
# Update-Module PowerShellGet -Force | |
# Install-Module -Name PSReadLine -AllowPrerelease -Scope CurrentUser -Force -SkipPublisherCheck | |
Invoke-Expression (& 'C:\Users\hp\scoop\shims\starship.exe' init powershell --print-full-init | Out-String) | |
Import-Module PSReadLine | |
Import-Module -Name Terminal-Icons | |
Set-PSReadLineOption -PredictionSource History | |
Set-PsFzfOption -PSReadlineChordProvider 'Ctrl+f' -PSReadlineChordReverseHistory 'Ctrl+r' |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://95.229.228.109:81/cgi-bin/faststream.jpg?stream=half&fps=15&rand=COUNTER | |
http://196.218.116.139:80/cgi-bin/viewer/video.jpg | |
http://213.240.185.79:50001/cgi-bin/faststream.jpg?stream=half&fps=15&rand=COUNTER | |
http://187.145.51.144:8083/cgi-bin/viewer/video.jpg | |
http://78.33.151.99:8888/mjpg/video.mjpg?COUNTER | |
http://84.244.69.110:80/cgi-bin/viewer/video.jpg | |
http://88.247.179.172:60001/cgi-bin/snapshot.cgi?chn=0&u=admin&p=&q=0 | |
http://76.70.29.102:2080/mjpg/video.mjpg?COUNTER | |
http://73.138.177.206:1024/mjpg/video.mjpg?COUNTER | |
http://188.235.132.145:80/cgi-bin/viewer/video.jpg |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <windows.h> | |
#include <iostream> | |
#include <string> | |
#include <winuser.h> | |
HWND g_hTextBox; | |
HWND g_hButton; | |
LRESULT CALLBACK WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam); |
NewerOlder