First Login to the Autodesk Accounts Page
https://accounts.autodesk.com/logon
When you login, you'll be able to access your files in the Fusino team
#!/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 |
First Login to the Autodesk Accounts Page
https://accounts.autodesk.com/logon
When you login, you'll be able to access your files in the Fusino team
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") |
#!/bin/bash | |
# Define output file | |
OUTPUT="big.txt" | |
# Define excluded directories | |
EXCLUDED_DIRS=( | |
".git" | |
".venv" | |
"__pycache__" |
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): |
#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 |
$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 | |
} |
#!/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 |
#!/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 |
sudo apt install -o DPkg::Options::="--force-overwrite" libodbcinst2 unixodbc-common |