Search found 468 matches
- 24 Aug 2020 16:05
- Forum: DOS Batch Forum
- Topic: Cmdwiz - 54 operation cmd helper tool (now with Unicode)
- Replies: 50
- Views: 31113
Re: Cmdwiz - 54 operation cmd helper tool (now with Unicode)
Cmdwiz version 1.8 (link in first post) The " Does size matter? " release :mrgreen: This version contains NO new features or fixes.Instead it focuses on executable size. Even though it was never really a concern of mine, several people (including in this thread) have commented that they think the C...
- 08 Aug 2020 16:39
- Forum: DOS Batch Forum
- Topic: Gotoxy - advanced color text output and cursor control - now with server!
- Replies: 33
- Views: 38857
Re: Gotoxy
Well well, a new version of GotoXY (v 1.1) ! I don't think I touched this code since 2016 :) The updated link is the same as in the first post (and shared with Cmdwiz). I was adding server mode to Cmdwiz, and then I figured I should do it for Gotoxy as well, for a great speed improvement (not rivali...
- 08 Aug 2020 14:40
- Forum: DOS Batch Forum
- Topic: Cmdwiz - 54 operation cmd helper tool (now with Unicode)
- Replies: 50
- Views: 31113
Re: Cmdwiz - 53 operation cmd helper tool (now with Unicode)
Cmdwiz version 1.7 (link in first post) Hopefully a slightly more exciting release than the previous one. What's new: 1. Server mode. It works similar to cmdgfx server mode, i.e. once the server is running, operations are sent to it using echo, e.g.: echo "cmdwiz: setwindowpos 100 100" . Server mod...
- 13 Jul 2020 11:55
- Forum: DOS Batch Forum
- Topic: g.bat to jump between folders - need help to make it pure batch!
- Replies: 16
- Views: 5067
Re: g.bat to jump between folders - need help to make it pure batch!
Eureka!:
Thanks, that looks pretty useful! I’ll have a go.
Actually much more useful than turning g.bat into ”batch only”, which was just a little exercise anyway
Thanks, that looks pretty useful! I’ll have a go.
Actually much more useful than turning g.bat into ”batch only”, which was just a little exercise anyway

- 12 Jul 2020 04:54
- Forum: DOS Batch Forum
- Topic: Game Of Life
- Replies: 21
- Views: 4969
Re: Game Of Life
By the way, if you like Game of Life, check out 3d Cellular Automata, such as https://www.youtube.com/watch?v=dQJ5aEsP6Fs It is basically just like Game Of Life, but extended to 3 dimensions (so 26 neighbours instead of 8 ), typically with a 3d cube representing each cell. That level of processing (...
- 11 Jul 2020 06:03
- Forum: DOS Batch Forum
- Topic: g.bat to jump between folders - need help to make it pure batch!
- Replies: 16
- Views: 5067
Re: g.bat to jump between folders - need help to make it pure batch!
Updated Mediafire link and above archive one more time, since I removed the use of tr.exe, so that the original g.bat now only relies on findstr and gawk.exe (while the ~50% slower g-jrepl.bat does not rely on gawk.exe at all) Aacini: I'd still be interested if you have some idea why your proposed s...
- 11 Jul 2020 05:11
- Forum: DOS Batch Forum
- Topic: Listc - a modern Windows file explorer/viewer in the console window
- Replies: 18
- Views: 12118
Re: Listc - a modern Windows file explorer/viewer in the console window
Not sure when, or even why, it started happening, but I noticed Listc had keys "bleeding through" when using it lately (for example, pressing Escape after bringing up the Help screen would exit not just the help screen but the entire program!).It also would affect pressing "y" e.g. after responding ...
- 08 Jul 2020 09:19
- Forum: DOS Batch Forum
- Topic: Game Of Life
- Replies: 21
- Views: 4969
Re: Game Of Life
Just before this topic disappears off the page, I just want to point to: https://www.dostips.com/forum/viewtopic.php?f=3&t=9662 The archive there includes a very fast GameOfLife implementation, running fullscreen with a pixel font. My assumption that I would get 100+ FPS for 1920x1080 for a native C...
- 06 Jul 2020 06:07
- Forum: DOS Batch Forum
- Topic: Expression Lab - interactive expression display
- Replies: 11
- Views: 2995
Re: Expression Lab - interactive expression display
https://www.dropbox.com/s/d61jdq0cot8a9ep/expr3.png?raw=1 Alright, not quite done... I decided to go full circle :mrgreen: With threading support, block expressions were getting fairly fast, but still... obviously you cannot get close to native code without using native code. So, I decided to add t...
- 06 Jul 2020 05:00
- Forum: DOS Batch Forum
- Topic: g.bat to jump between folders - need help to make it pure batch!
- Replies: 16
- Views: 5067
Re: g.bat to jump between folders - need help to make it pure batch!
Oh... actually Findstr is the perfect replacement for grep in this case :oops: :) While waiting for Aacini's updated version, I replaced the archives above and removed grep.exe. That means I have a (pure batch, kind of) working version now using only jrepl and findstr. Still also keeping the first v...
- 06 Jul 2020 02:04
- Forum: DOS Batch Forum
- Topic: g.bat to jump between folders - need help to make it pure batch!
- Replies: 16
- Views: 5067
Re: g.bat to jump between folders - need help to make it pure batch (JREPL help wanted!)
Looks like a promising approach Aacini,and thanks for taking the time! It's not running here though. First it created an empty folder file when running: g * I had to add :\ on line 20 so it looks like: (for /R %drive%:\ /D %%d in (\*) do echo %%d) > FoldersInDrive%Drive%.txt Then when running g.bat ...
- 03 Jul 2020 13:24
- Forum: DOS Batch Forum
- Topic: g.bat to jump between folders - need help to make it pure batch!
- Replies: 16
- Views: 5067
Re: g.bat to jump between folders - need help to make it pure batch
Ahh, one of misol's hidden gems! :mrgreen: Seriously though, I use this script pretty much every day. It's great for quickly jumping between folders in command line (especially if Windows is scheduled to update its folder database once a day or so). As the title says (4 years ago!), I wanted to conv...
- 30 Jun 2020 15:49
- Forum: DOS Batch Forum
- Topic: Cmdwiz - 54 operation cmd helper tool (now with Unicode)
- Replies: 50
- Views: 31113
Re: Cmdwiz - 52 operation cmd helper tool (now with Unicode)
Updated to version 1.6 (link in first post) The "scaling issues" release... What's new: 1. All window operations now use and return unscaled display values . Again, as with getdisplaydim in v1.5, this is a (potentially) breaking change, but this is how I think Cmdwiz should actually behave. 2. New ...
- 30 Jun 2020 06:41
- Forum: DOS Batch Forum
- Topic: Expression Lab - interactive expression display
- Replies: 11
- Views: 2995
Re: Expression Lab - interactive expression display
Replaced archive one more time due to: 1. Fixed bugs in Cmdgfx in "mod" function, and negative wrapping. 2. Added 6 new expressions, removed 2 boring ones 3. Added a second texture, 'i' button now selects no texture or texture 1-2. 4. Upped the number of temporary storage variables to 10 (s0-s9) 5....
- 23 Jun 2020 09:18
- Forum: DOS Batch Forum
- Topic: Expression Lab - interactive expression display
- Replies: 11
- Views: 2995
Re: Expression Lab - interactive expression display
Replaced the archive because: 1. It wasn't writing the effect index in the title (which it does now) 2. Added support for using a background image in the expression, either for an image effect or as a texture. This has to be enabled with the 'i' key if using it for your own expressions. Also, even ...