Skip to content

Instantly share code, notes, and snippets.

View vicradon's full-sized avatar
:bowtie:
building telex

Osinachi Chukwujama vicradon

:bowtie:
building telex
View GitHub Profile
@vicradon
vicradon / pg-db-and-user-setup.sh
Created February 28, 2025 11:19
Set up a PostgreSQL database and User
#!/bin/bash
read -p "Enter the database name to create: " DB_NAME
read -p "Do you want to use an existing user? (y/n): " USE_EXISTING_USER
if [ "$USE_EXISTING_USER" == "y" ]; then
read -p "Enter the existing PostgreSQL username: " DB_USER
else
read -p "Enter new username: " DB_USER
read -s -p "Enter password for new user: " DB_PASS
@vicradon
vicradon / accessing-old-fusion-360-account.md
Created February 3, 2025 12:30
How to access your old Fusion 360 files

Accessing Old Fusion 360 Account

First Login to the Autodesk Accounts Page

https://accounts.autodesk.com/logon

image

When you login, you'll be able to access your files in the Fusino team

@vicradon
vicradon / convert-pytorch-state-dictionary-to-onnx.py
Last active December 28, 2024 05:49
Pytorch model inference using the eval mode
import torch
from torchvision import models
# single image batch size, 3 color channels, height, and width
dummy_input = torch.randn(1, 3, 224, 224, requires_grad=True)
resnet = models.resnet50()
resnet.fc = torch.nn.Linear(in_features=2048, out_features=102)
resnet.load_state_dict(torch.load("model.pth", weights_only=True, map_location=torch.device('cpu')))
torch.onnx.export(resnet, dummy_input, "model.onnx")
@vicradon
vicradon / github-repo-content.txt.sh
Last active February 4, 2025 19:22
A gist that concatenate the content of a repo into a single txt file for LLM inference
#!/bin/bash
# Define output file
OUTPUT="big.txt"
# Define excluded directories
EXCLUDED_DIRS=(
".git"
".venv"
"__pycache__"
@vicradon
vicradon / generate-mandelbrot-set.py
Last active November 24, 2024 16:01
A Python program to generate and visualize a Mandelbrot set
import numpy as np
import matplotlib.pyplot as plt
'''
z₀ = 0
zₙ₊₁ = zₙ² + c
'''
def is_mandelbrot(complex_num, max_iter=100):
z = 0
for n in range(max_iter):
@vicradon
vicradon / copy-to-clipboard-macos.m
Last active September 12, 2024 09:01 — forked from mwender/impbcopy.m
Command line copy an image file to the clipboard in Mac OS X. See first comment for install instructions.
#import <Foundation/Foundation.h>
#import <Cocoa/Cocoa.h>
#import <unistd.h>
BOOL copy_to_clipboard(NSString *path)
{
// http://stackoverflow.com/questions/2681630/how-to-read-png-image-to-nsimage
NSImage * image;
if([path isEqualToString:@"-"])
{
// http://caiustheory.com/read-standard-input-using-objective-c
@vicradon
vicradon / bulk-invite-guest-user-powershell-azure.ps1
Created September 7, 2024 06:09
Bulk invite guest users azure powershell
$invitations = import-csv c:\bulkinvite\invitations.csv
$messageInfo = [Microsoft.Graph.PowerShell.Models.MicrosoftGraphInvitation]@{ CustomizedMessageBody = "Hello. You are invited to the Contoso organization." }
foreach ($email in $invitations)
{New-MgInvitation -InviteRedirectUrl https://portal.azure.com -InvitedUserDisplayName $email.Name -InvitedUserEmailAddress $email.InvitedUserEmailAddress -InvitedUserMessageInfo $messageInfo -SendInvitationMessage
}
@vicradon
vicradon / download-and-extract-node.js
Last active August 30, 2024 07:50
Download and extract Node.js
#!/bin/bash
sudo apt install wget xz-utils -y
# download and extract node.js
wget https://nodejs.org/dist/v20.17.0/node-v20.17.0-linux-x64.tar.xz
tar -xf node-v20.17.0-linux-x64.tar.xz
cd node-v20.17.0-linux-x64
sudo cp bin/* /usr/local/bin
@vicradon
vicradon / install-go.sh
Created July 18, 2024 16:43
Install Go
#!/bin/bash
cd ~
wget https://go.dev/dl/go1.22.5.linux-amd64.tar.gz
sudo rm -rf /usr/local/go && sudo tar -C /usr/local -xzf go1.22.5.linux-amd64.tar.gz
echo "export PATH=$PATH:/usr/local/go/bin" >> ~/.bashrc
@vicradon
vicradon / force-overwrite.sh
Created July 1, 2024 03:51
Force overwrite packages when I got this error "The following packages have unmet dependencies: libgdal30 : Depends: libodbcinst2 (>= 2.3.1) but it is not going to be installed"
sudo apt install -o DPkg::Options::="--force-overwrite" libodbcinst2 unixodbc-common