yttcom.net
Backend
/
Tools
/
DB Viewer
yttcom.net
Domains
/
DB Viewer
v2.0 · 07.11.26
◇ laboratory.db
systems/30-tech/laboratory/
records.db
inbox.db
transfers.db
knowledge.db
jurisdiction.db
laboratory
›
commands
Tables
categories
0
commands
37
creators
0
events
0
knowledge
12
prog_counter
3
qa
37
scripts
1
shortcuts
29
sqlite_sequence
7
templates
14
commands
37 rows
37
Create File (heredoc)
Heredoc method — create file by pasting content between EOF markers
▾
tap
id
37
platform
android
name
Create File (heredoc)
cmd
cat > ~/file.py << 'EOF'
via
Termux
active
1
description
Heredoc method — create file by pasting content between EOF markers
⊞ Full detail →
36
Move / Rename
Move or rename a file or folder
▾
tap
id
36
platform
android
name
Move / Rename
cmd
mv [source] [dest]
via
Termux
active
1
description
Move or rename a file or folder
⊞ Full detail →
35
Copy Folder
Copy folder recursively
▾
tap
id
35
platform
android
name
Copy Folder
cmd
cp -r [source] [dest]
via
Termux
active
1
description
Copy folder recursively
⊞ Full detail →
34
Delete Folder
Delete folder and all contents — IRREVERSIBLE
▾
tap
id
34
platform
android
name
Delete Folder
cmd
rm -rf [folder]
via
Termux
active
1
description
Delete folder and all contents — IRREVERSIBLE
⊞ Full detail →
33
Count Files
Count all files in a folder recursively
▾
tap
id
33
platform
android
name
Count Files
cmd
find [folder] -type f | wc -l
via
Termux
active
1
description
Count all files in a folder recursively
⊞ Full detail →
32
Folder Size
Show total size of a specific folder
▾
tap
id
32
platform
android
name
Folder Size
cmd
du -sh /storage/emulated/0/[folder]
via
Termux
active
1
description
Show total size of a specific folder
⊞ Full detail →
31
Show Disk Usage
Show disk usage and available storage
▾
tap
id
31
platform
android
name
Show Disk Usage
cmd
df -h
via
Termux
active
1
description
Show disk usage and available storage
⊞ Full detail →
30
List Home Files
List all files in Termux home including hidden
▾
tap
id
30
platform
android
name
List Home Files
cmd
ls -la ~/
via
Termux
active
1
description
List all files in Termux home including hidden
⊞ Full detail →
29
List Phone Storage
List phone storage root — confirm storage access granted
▾
tap
id
29
platform
android
name
List Phone Storage
cmd
ls /storage/emulated/0/
via
Termux
active
1
description
List phone storage root — confirm storage access granted
⊞ Full detail →
28
Run Python Script
Run a Python script from Termux home folder
▾
tap
id
28
platform
android
name
Run Python Script
cmd
python3 ~/script.py
via
Termux
active
1
description
Run a Python script from Termux home folder
⊞ Full detail →
27
Verify Python
Verify Python is installed and check version
▾
tap
id
27
platform
android
name
Verify Python
cmd
python3 --version
via
Termux
active
1
description
Verify Python is installed and check version
⊞ Full detail →
26
List Installed
List all installed Termux packages
▾
tap
id
26
platform
android
name
List Installed
cmd
pkg list-installed
via
Termux
active
1
description
List all installed Termux packages
⊞ Full detail →
25
Install Nano
Install nano text editor
▾
tap
id
25
platform
android
name
Install Nano
cmd
pkg install nano
via
Termux
active
1
description
Install nano text editor
⊞ Full detail →
24
Install Git
Install Git for cloning repos
▾
tap
id
24
platform
android
name
Install Git
cmd
pkg install git
via
Termux
active
1
description
Install Git for cloning repos
⊞ Full detail →
23
Install Python
Install Python 3.x (~105MB)
▾
tap
id
23
platform
android
name
Install Python
cmd
pkg install python
via
Termux
active
1
description
Install Python 3.x (~105MB)
⊞ Full detail →
22
Update Packages
Update all Termux packages — run periodically
▾
tap
id
22
platform
android
name
Update Packages
cmd
pkg update && pkg upgrade
via
Termux
active
1
description
Update all Termux packages — run periodically
⊞ Full detail →
21
Grant Storage Access
Grant Termux access to phone storage — run once on fresh install
▾
tap
id
21
platform
android
name
Grant Storage Access
cmd
termux-setup-storage
via
Termux
active
1
description
Grant Termux access to phone storage — run once on fresh install
⊞ Full detail →
20
Uninstall Store App
Uninstall a Store app — replace keyword with app name fragment
▾
tap
id
20
platform
windows
name
Uninstall Store App
cmd
Get-AppxPackage *keyword* | Remove-AppxPackage
via
PowerShell
active
1
description
Uninstall a Store app — replace keyword with app name fragment
⊞ Full detail →
19
Update All Apps
Update all apps that have winget packages
▾
tap
id
19
platform
windows
name
Update All Apps
cmd
winget upgrade --all
via
PowerShell
active
1
description
Update all apps that have winget packages
⊞ Full detail →
18
List Installed Apps
List all installed apps via Windows Package Manager
▾
tap
id
18
platform
windows
name
List Installed Apps
cmd
winget list
via
PowerShell
active
1
description
List all installed apps via Windows Package Manager
⊞ Full detail →
17
List Downloads
List files in Downloads folder
▾
tap
id
17
platform
windows
name
List Downloads
cmd
dir "$env:USERPROFILE\Downloads"
via
PowerShell
active
1
description
List files in Downloads folder
⊞ Full detail →
16
Run Script from Downloads
Run PS1 from Downloads — replace SCRIPTNAME with filename
▾
tap
id
16
platform
windows
name
Run Script from Downloads
cmd
& "$env:USERPROFILE\Downloads\SCRIPTNAME.ps1"
via
PowerShell
active
1
description
Run PS1 from Downloads — replace SCRIPTNAME with filename
⊞ Full detail →
15
Allow Script (session)
Allow a script to run this session only — safe and temporary
▾
tap
id
15
platform
windows
name
Allow Script (session)
cmd
Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass
via
PowerShell
active
1
description
Allow a script to run this session only — safe and temporary
⊞ Full detail →
14
Full Network Info
Full adapter info including MAC address
▾
tap
id
14
platform
windows
name
Full Network Info
cmd
ipconfig /all
via
CMD/PS
active
1
description
Full adapter info including MAC address
⊞ Full detail →
13
Active Connections
Show all active network connections and listening ports
▾
tap
id
13
platform
windows
name
Active Connections
cmd
netstat -an
via
CMD/PS
active
1
description
Show all active network connections and listening ports
⊞ Full detail →
12
Apps and Features
Install or uninstall programs
▾
tap
id
12
platform
windows
name
Apps and Features
cmd
ms-settings:appsfeatures
via
Win+R
active
1
description
Install or uninstall programs
⊞ Full detail →
11
Default Apps
Open Default Apps settings in Windows 11
▾
tap
id
11
platform
windows
name
Default Apps
cmd
ms-settings:defaultapps
via
Win+R
active
1
description
Open Default Apps settings in Windows 11
⊞ Full detail →
10
ClearType Tuning
Fix blurry fonts — wizard picks best setting for your monitor
▾
tap
id
10
platform
windows
name
ClearType Tuning
cmd
cttune
via
Win+R
active
1
description
Fix blurry fonts — wizard picks best setting for your monitor
⊞ Full detail →
9
Group Policy
Group Policy Editor (Pro edition only)
▾
tap
id
9
platform
windows
name
Group Policy
cmd
gpedit.msc
via
Win+R
active
1
description
Group Policy Editor (Pro edition only)
⊞ Full detail →
8
Disk Management
Partitions and drives
▾
tap
id
8
platform
windows
name
Disk Management
cmd
diskmgmt.msc
via
Win+R
active
1
description
Partitions and drives
⊞ Full detail →
7
Device Manager
Drivers and hardware
▾
tap
id
7
platform
windows
name
Device Manager
cmd
devmgmt.msc
via
Win+R
active
1
description
Drivers and hardware
⊞ Full detail →
6
Event Viewer
System logs and errors
▾
tap
id
6
platform
windows
name
Event Viewer
cmd
eventvwr
via
Win+R
active
1
description
System logs and errors
⊞ Full detail →
5
Services
Windows Services — enable/disable background services
▾
tap
id
5
platform
windows
name
Services
cmd
services.msc
via
Win+R
active
1
description
Windows Services — enable/disable background services
⊞ Full detail →
4
Registry Editor
Registry Editor — run as Admin
▾
tap
id
4
platform
windows
name
Registry Editor
cmd
regedit
via
Win+R
active
1
description
Registry Editor — run as Admin
⊞ Full detail →
3
System Config
Startup, services, boot options
▾
tap
id
3
platform
windows
name
System Config
cmd
msconfig
via
Win+R
active
1
description
Startup, services, boot options
⊞ Full detail →
2
System Properties
Advanced tab — Visual Effects, Performance, computer name, remote
▾
tap
id
2
platform
windows
name
System Properties
cmd
sysdm.cpl
via
Win+R
active
1
description
Advanced tab — Visual Effects, Performance, computer name, remote
⊞ Full detail →
1
Power Options
Change between Balanced and High Performance power plans
▾
tap
id
1
platform
windows
name
Power Options
cmd
powercfg.cpl
via
Win+R
active
1
description
Change between Balanced and High Performance power plans
⊞ Full detail →
Backend
Domains
Panel
DB Viewer
Transfers