This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @ECHO OFF | |
| CLS | |
| ECHO CreateObject("Wscript.Shell").Run("taskmgr.exe"),0,False>"%temp%\taskman.vbs" | |
| %windir%\System32\cscript.exe %temp%\taskman.vbs //nologo | |
| EXIT | |
| :: | |
| :: Windows 10, run taskmanager minimized/hidden window at logon (and only show icon in the taskbartray) | |
| :: Created by Keejelo - 2025 | |
| :: https://gist.github.com/keejelo/7f16ef96427ef9fde360463f789378ea | |
| :: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <meta charset="utf-8"> | |
| <title>Time converter</title> | |
| <style> | |
| body | |
| { | |
| margin:0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //-------------------------------------------------------------------------------- | |
| // Filename: trim_string_whitespace.c | |
| //-------------------------------------------------------------------------------- | |
| // ** Trim leading and trailing whitespace | |
| //-------------------------------------------------------------------------------- | |
| char *trim(char *s) | |
| { | |
| char c[] = "\x20\t\n\v\f\r"; // whitespace characters | |
| int i, j; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| '-------------------------------------------------------------------------------- | |
| ' Filename: kill.vbs | |
| '-------------------------------------------------------------------------------- | |
| ' KillProcess v3.2 - Terminates a running process (program) | |
| ' Author: Keejelo | |
| ' gist.github.com/keejelo/476bf9cbe6e750cef561ebab9debb3fd | |
| '-------------------------------------------------------------------------------- | |
| ' Usage: kill "param1" param2 | |
| ' @ param1 = "processname", i.e. "notepad.exe" | |
| ' @ param2 = seconds to wait until process is terminated (optional) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| '-------------------------------------------------------------------------------- | |
| ' Filename: wait.vbs | |
| '-------------------------------------------------------------------------------- | |
| ' Wait v1.0 - Waits n seconds before running something | |
| ' Author: Keejelo | |
| ' gist.github.com/keejelo/52ba7b8a02afa10d95c07ae41e07b48c | |
| '-------------------------------------------------------------------------------- | |
| ' Usage: wait "arg1" [arg2] | |
| ' @arg1 = "processname", e.g. "notepad.exe" | |
| ' @arg2 = seconds to wait until process is started |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ' How to run taskmanager minimized/hidden window: | |
| ' 1. Open Task Manager and click "More details" to activate the top menu. | |
| ' 2. Go to "Options" menu and toggle "Hide when minimized" checked (on) | |
| ' 3. Then copy this file (taskman.vbs) in your startup directory ( Win+R and type: shell:startup ), | |
| ' or run it some other way when you startup or log in to your computer. | |
| ' The command below runs taskmanager minimized and hidden: | |
| CreateObject("Wscript.Shell").Run "taskmgr.exe", 0, False | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ::*********************************************************************************************************************** | |
| :: Filename: make_html_list.bat | |
| :: Author : keejelo | |
| :: Version : 1.25 | |
| :: Descr. : Makes a dynamic and sortable HTML list containing all games in gamefolder. | |
| :: Usage : vvvvvvv | |
| :: Put this file into folder "hakchi2\games_snes" and then run it. | |
| :: To make the list sortable -> postfix the gametitles (in hakchi2) with one of the labels below: | |
| :: (NES),(SNES),(ARCADE),(MAME),(SEGA),(MD),(GEN),(GB) ..or make your own, just add it below in the code like the rest.. | |
| :: Examples of postfix: |