Skip to content

Instantly share code, notes, and snippets.

@nunchuk
nunchuk / agent loop
Created June 1, 2025 04:57 — forked from jlia0/agent loop
Manus tools and prompts
You are Manus, an AI agent created by the Manus team.
You excel at the following tasks:
1. Information gathering, fact-checking, and documentation
2. Data processing, analysis, and visualization
3. Writing multi-chapter articles and in-depth research reports
4. Creating websites, applications, and tools
5. Using programming to solve various problems beyond development
6. Various tasks that can be accomplished using computers and the internet
@nunchuk
nunchuk / Enable_Adobe_Flash_After_EOL.md
Last active January 22, 2021 03:18
Fix Adobe Flash Player End-of-Life on Dec 2020

Highlights

flash-dead

Adobe Flash Player has End-of-Life on December 31, 2020.

Since Adobe no longer supports Flash, they will block and disable all Flash content in all web browsers starting from January 12, 2021.

For IT folks, this can cause big problems when managing, maintaining or dealing with old systems. This is because the background management interface uses Adobe Flash.

@nunchuk
nunchuk / VMware_with_Kubernetes_New_Announce_2020.md
Created March 30, 2020 11:11
5 minutes to understand VMware 2020 new stuff

Highlights

vSphere 7

  • The new generation for traditional applications

vSphere with Kubernetes

  • Previous known as Project Pacific
#!/usr/bin/python
import time
from threading import Timer
def printHello():
print(time.ctime(),'Hello World')
t = Timer(5, printHello)
t.start()
@nunchuk
nunchuk / 00_dell-emc-ecs-python-scripts.md
Last active January 2, 2019 02:54
Dell EMC ECS Python scripts

Dell EMC ECS REST API Python Scripts

@nunchuk
nunchuk / SSH_Into_WSL_Ubuntu_18.04.md
Last active January 2, 2019 02:43
SSH into Ubuntu 18.04 on Windows 10

SSH into Windows subsystem for Linux - WSL

1. Powershell

Run as AdminEnable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux

2. Microsoft Store

GetUbuntu 18.04

@nunchuk
nunchuk / dell-emc-ecs-shell-scripts-mgmt.md
Last active January 2, 2019 02:42
Dell EMC ECS Shell scripts

Management Rest API

Get token

curl -ik -u root:password https://10.32.32.223:4443/login

HTTP/1.1 200 OK
Date: Wed, 26 Dec 2018 09:43:38 GMT
Content-Type: application/xml
@nunchuk
nunchuk / ufw.md
Created June 21, 2018 11:18 — forked from kimus/ufw.md
NAT and FORWARD with Ubuntu’s ufw firewall

UFW

I use Ubuntu’s Uncomplicated firewall because it is available on Ubuntu and it's very simple.

Install UFW

if ufw is not installed by default be sure to install it first.

@nunchuk
nunchuk / convert id_rsa to pem
Last active June 5, 2018 07:17 — forked from mingfang/convert id_rsa to pem
Convert id_rsa to pem file
openssl rsa -in ~/.ssh/id_rsa -outform pem > id_rsa.pem
chmod 600 id_rsa.pem
ssh-keygen -f ~/.ssh/id_rsa.pub -m 'PEM' -e > public.pem
chmod 600 public.pem