Skip to content

Instantly share code, notes, and snippets.

View aimproxy's full-sized avatar
🎯
Focusing

Micael Dias aimproxy

🎯
Focusing
View GitHub Profile
@aimproxy
aimproxy / vercel_landing_page.tsx
Created January 26, 2026 15:16
vercel_landing_page.tsx
// @ts-nocheck
// @ts-ignore
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
export function App() {
return (
<div
className="stack-module__UbbKhW__stack stack geist-soft-reset grid-module__4pDFEa__page lg:first:pt-[calc(var(--banner-min-height))] lg:first:has->[data-slot=banner]]:pt-0 stack-module__UbbKhW__padding"
data-version="v1"
@aimproxy
aimproxy / geist_vercel.css
Created January 26, 2026 15:15
geist_vercel.css
This file has been truncated, but you can view the full file.
:root{--banner-min-height:64px;scroll-padding:0}body{background:var(--ds-background-200)!important}@property --value{syntax:"<integer>";inherits:true;initial-value:0}@counter-style pad{system:extends decimal;pad:2 "0"}
/*# sourceMappingURL=8d4102365ffd08b8.css.map*/.botid-explainer-module__CbG1Bq__deny{opacity:0;animation:1s ease-in infinite botid-explainer-module__CbG1Bq__denyAnim;transform:translate(0)}@media (prefers-reduced-motion:reduce){.botid-explainer-module__CbG1Bq__deny{opacity:1;transform:translate(100%)}}@keyframes botid-explainer-module__CbG1Bq__denyAnim{0%{opacity:0;transform:translate(0%)}20%{opacity:1}25%{transform:translate(100%)}60%{opacity:1}to{transform:translate(-2vw)translateY(500%)}}.botid-explainer-module__CbG1Bq__shake{animation:1s linear infinite botid-explainer-module__CbG1Bq__shakeAnim;transform:scaleX(1)translate(-40px)}@media (prefers-reduced-motion:reduce){.botid-explainer-module__CbG1Bq__shake{transform:scaleX(1)}}@keyframes botid-explainer-module__CbG1Bq__shakeAnim{0%{transfor

AAO V2 NOTES

In this Notebook

Local Search
2 Opt Swap
3 Opt Swap
Variable Neighborhood Search
Ant Colony
Simulated Annealing
import { NextApiRequest, NextApiResponse } from 'next'
import axios, { AxiosInstance } from 'axios'
import { atob } from 'buffer'
const UUIDService = axios.create({
baseURL: 'https://api.mojang.com/users/profiles/minecraft/',
})
const ProfileService = axios.create({
baseURL: 'https://sessionserver.mojang.com/session/minecraft/profile/',
@aimproxy
aimproxy / Installing Rancher and RKE
Created March 15, 2022 19:35 — forked from kiranchavala/Installing Rancher and RKE
Installing Rancher and RKE
Installing RKE and Rancher
Ubuntu 20.04
1 vim /etc/ssh/sshd_config
2 systemctl restart sshd
3 sudo apt-get update
4 sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common
5 curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
6 sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
@aimproxy
aimproxy / cpusbtoftp.ps1
Last active March 30, 2019 16:40
WMI USB Detection Event then copy all files to an FTP Server!
Register-WmiEvent -Class win32_VolumeChangeEvent -SourceIdentifier volumeChange
do{
$newEvent = Wait-Event -SourceIdentifier volumeChange
$eventType = $newEvent.SourceEventArgs.NewEvent.EventType
$eventTypeName = switch($eventType)
{
1 {"Configuration changed"}
2 {"Device arrival"}