topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Monday November 10, 2025, 3:55 pm
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Recent Posts

Pages: prev1 2 3 4 5 6 [7] 8 9 10 11 12 ... 30next
151
Post New Requests Here / Re: Create Song Playlist
« Last post by publicdomain on May 17, 2023, 05:28 AM »
An alternative idea would be to copy the songs to another folder.

Any thoughts or ideas greatly appreciated.

Hi Nick,

No need to copy files, I know how to do it. I've worked with both .m3u/m3u8 and file search.

If nobody comes-up with something as I finish your previous program, I'm totally in for "nkPlaylist" :)

(I am actively devoted to the coding spree!)

Thanks,
Vic
152
PublicDomainVic / Re: Single Dot in Graphics Window
« Last post by publicdomain on May 12, 2023, 01:19 PM »
Really, any way you accomplish the overall objective will be terrific.

The program is shaped :up:

(Also making a handy .ini editor GUI to accompany nkDot)

Stay tuned!

nkDotEditor_ALPHA01.png

nkDot_ALPHA01.png
153
Hello again Nick, please go with the shutdown command in your UEFI system.

The tool I have in mind is inspired by your request yet isn't the same (just edited it up).

(Going to list you as the inspiration for the resulting "DriveUp" program BTW :Thmbsup:)
154
Announce Your Software/Service/Product / Re: DC coding spree service
« Last post by publicdomain on May 11, 2023, 08:19 PM »
Thanks to Jesse/Mouser for leading by example and supporting the creation of more coding snacks via current DC Coding Spree

You Rock!



image_2023-05-21_205254342.png
155
Hi Nick! I'm spinning-up a quickie drive letter selection GUI + registry edit project inspired by this :Thmbsup:

Repo @ https://github.com/publicdomain/driveup
156
PublicDomainVic / Re: Single Dot in Graphics Window
« Last post by publicdomain on May 11, 2023, 12:17 AM »
If user adjusts size of window, what happens to the dots?

The way I'm coding it... the dots are painted the same no matter the window size.

If you need the program to operate full-screen in order to rid yourself of such ambiguities, please say it!

This stage of development is the perfect time :)

There's graphics code available for overlaying on top of all windows cleanly (i.e. border-less transparent/invisible window surface covering the desktop).
157
Announce Your Software/Service/Product / DC coding spree service
« Last post by publicdomain on May 10, 2023, 02:09 PM »
Hello dear DC fellows, hope all is going well for you & yours. This is my focused service:

DC coding spree

I am currently doing a dedicated DC coding spree to attend programs in the coding snacks section(s), so the output of my service is to deliver as many user-requested releases as I can during this time for DonationCoder.com & DCmembers.com in order to boost the community.

If there was ever a moment to support, it is this; if you planned to support once a year, the most significant time is now :Thmbsup: It will have the most positive impact   :-*

I'm home & working devotedly on DC programs... you can be part of this by powering the community-coding by means of your direct support by Paypal:

Paypal @ www.paypal.com/paypalme/victorvls
Paypal email: [email protected]

or by means of your donation credits if you have some "cody's" you'd like to spare toward supporting the releases:

Support with your DonationCredits!

This makes a big difference to assist/enable me in helping more fellows in the DC community by shaping & bringing these software requests to life

Thank you for keeping the donation coding alive!
 
From a most-grateful,
Vic
158
First post was updated to reflect Flatten Folder Menu v0.2.0:

⬇️ Downloads:

159
SearchShortcut was updated to v0.2.0:

⬇️ Downloads:




v0.2.0:

  • Set title by exe file name.
160
PublicDomainVic / Re: Single Dot in Graphics Window
« Last post by publicdomain on May 08, 2023, 06:36 PM »
Vic, searching the web turned up the following:

https://github.com/v...andom-dots-generator

Hi Nick! That's for the web yet it can be useful as an existing example :up:

Have you experience in graphics programming?

Yes I do :)

As a matter of fact there's a graphics app in our PD project's repos @ https://github.com/publicdomain/screenmark

Hope this won't be something that keeps you away from what you prefer.

Helping the fellows with my skills is what I prefer! :Thmbsup: :-*

Look forward to seeing what you come up with.

I'm currently doing a DC coding spree right now; this is the next release

Cheers!
161
General Software Discussion / Re: Need CSS Help, please
« Last post by publicdomain on May 08, 2023, 06:15 PM »
Hello @kyrathaba! I'm currently doing a DC coding spree, so I'm happy to assist you  :Thmbsup:

Please try this:

@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,700|Quattrocento:700');

html * {
  font-size: 12pt;
  line-height: 1.625 !important;
  color: #2020131;
  font-family: 'Open Sans', sans-serif !important;
}

@font-face {
   font-family: 'Open Sans Light';
   font-style: normal;
   font-weight: 300;
   src:url(https://fonts.gstatic.com/s/opensans/v13/DXI1ORHCpsQm3Vp6mXoaTRa1RVmPjeKy21_GQJaLlJI.woff) format('woff');
}

body {
    font-family: 'Open Sans', sans-serif !important;
}

body.dark {
    background: black;
    color: white;
}

h1, h2 {
    text-align: center;
    font-family: "Quattrocento", Georgia, 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 30pt;
    margin-bottom: 10px;
}

h2 {
    font-size: 14pt;
    font-style: italic;
    font-family: sans-serif;
    font-weight: lighter;
    color: #BBB;
}

.dark h2 {
    color: #666;
}

.header {
    padding-top: 3em;
    padding-bottom: 3em;
}

h3.written-in-ink {
    font-size: 9pt;
    font-family: sans-serif;
    text-align: center;
    font-weight: 700;
    position: fixed;
    display: block;
    width: 100%;
    background: white;
    margin: 0;
    padding-top: 6px;
    padding-bottom: 6px;
    top: 0;
}

.dark h3.written-in-ink {
    background: black;
}


/* Seems necessary to make iframes work on itch.io on mobile iOS :-( */
.outerContainer {
    position: absolute;
    display: block;
    margin: 0;
    padding: 0;
    -webkit-overflow-scrolling: touch;
    overflow: scroll;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.container {
    display: block;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    padding-top: 4em;
    background: white;
}

.dark .container {
    background: black;
}

p {
    font-size: 11pt;
    color: #888;
    line-height: 1.7em;
    font-weight: lighter;
}

.danger {
    color: red;
font-weight: bold;
}

.gain-life {
color: green;
font-weight: bold;
}

strong {
    color: black;
    font-weight: bold;
}

.dark strong {
    color: white;
}

img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.container .hide {
    opacity: 0.0;
}

.container .invisible {
    display: none;
}

.container * {
    opacity: 1.0;
    transition: opacity 1.0s;
}

p.choice {
    text-align: center;
    line-height: 1.7em;
}

/* first choice */
:not(.choice) + .choice {
    padding-top: 1em;
}

/* Built in class if you want to write:
     The End # CLASS: end
*/
.end {
    text-align: center;
    font-weight: bold;
    color: white;
    padding-top: 20px;
    padding-bottom: 20px;
}

162
PublicDomainVic / Re: Single Dot in Graphics Window
« Last post by publicdomain on May 07, 2023, 12:51 PM »
Sure thing Nick! I'm finishing a program for Contro to get into this
-publicdomain (May 05, 2023, 10:30 AM)

I'm on it now!  :)

Name: nkDot.

Repo @ https://github.com/publicdomain/nkdot
163
CSV replacer

Replace strings in text files according to loaded CSV file lines.



⬇️ Downloads:




Made for: Contro

Original thread: Script for replace any substring in a text file accodring a csv data file

Source code: CSVreplace @ GitHub

Targets Microsoft .NET framework v4.5

v0.1.0 notes:

  • Backup files on replace.
  • Add selected file(s) or a whole folder.
  • Filter lines by "{search},{replace}" format.
  • Trim blanks.
  • Check on add.
  • Sorted lists.
  • File/New to start afresh.
  • Always on top.

Day #126, Week #18 @ May 06, 2023

==========

Release supporters:

  • Jesse Reichler (A.K.A. Mouser from DonationCoder.com)
  • Max P.
  • Kathryn S.
  • Cranioscopical
  • Tomos
  • luvnbeast
  • nkormanik
  • Will you be our next supporter? :)
💗 Support:

One-time Paypal @ https://www.paypal.com/paypalme/victorvls
Our Patreon page @ www.patreon.com/publicdomain.
Email/Paypal: [email protected]

Thanks & keep on rocking! 👍
Vic
164
PublicDomainVic / Re: Single Dot in Graphics Window
« Last post by publicdomain on May 05, 2023, 10:30 AM »
Sure thing Nick! I'm finishing a program for Contro to get into this within the next few days :Thmbsup:

(I'm actually stashing resources to perform a very focused DC coding spree for due releases & serving the fellows around, in line with this community's awesome vision :-*)
165
ClipText

Captures clipboard text copy history to a text file.



⬇️ Downloads:




Made for: rgdot

Original thread: Clipboard to text file

Source code: ClipText @ GitHub

Targets Microsoft .NET framework v4.5

v0.1.0 notes:

  • Easy start/stop at the push of a button.
  • Backup target text file to start afresh.
  • Set target text file via open file dialog.
  • Enter key starts/stops (via accept button).
  • Remember text file.
  • Count captures.
  • Always on top.

Day #123, Week #18 @ May 03, 2023

==========

Release supporters:

  • Jesse Reichler (A.K.A. Mouser from DonationCoder.com)
  • Max P.
  • Kathryn S.
  • Cranioscopical
  • Tomos
  • luvnbeast
  • nkormanik
  • Will you be our next supporter? :)
💗 Support:

One-time Paypal @ https://www.paypal.com/paypalme/victorvls
Our Patreon page @ www.patreon.com/publicdomain.
Email/Paypal: [email protected]

Thanks & keep on rocking! 👍
Vic
166
Any news on this please?
...
Regards,
Abid

Hello Abid, I've added ScreenAction to the list of due programs I'm working on right now.

There is a ScreenAction release with basic features coming sooner rather than later. Having said that, do feel free to do your implementation. My personal policy regarding free software releases being: the more options for the community the merrier!

Cheers!  :Thmbsup:
Vic
167
SearchShortcut

Search across multiple engines.



⬇️ Downloads:




Made for: luvnbeast

Original thread: Idea: Stupidly Simple Search Shortcut

Source code: SearchShortcut @ GitHub

Targets Microsoft .NET framework v4.5

v0.2.0:

  • Set title by exe file name.

v0.1.0:

  • Easy keyword replacement.
  • Right-click menu to delete, edit and clear items in lists.
  • File/Open adds search engines from text file.
  • File/Save writes search engines to disk.
  • Persistent engines and terms in between runs.
  • Sorted lists.
  • Add on check.
  • Add on click.
  • Option to restore terms.
  • Delete key removes selected term/engine.
  • Search terms modes: Add terms, add and search, direct search.
  • Targets Chrome or default browser.
  • Always on top.

Day #129, Week #19 @ May 09, 2023

==========

Release supporters:

  • Jesse Reichler (A.K.A. Mouser from DonationCoder.com)
  • Max P.
  • Kathryn S.
  • Cranioscopical
  • Tomos
  • luvnbeast
  • nkormanik
  • Will you be our next supporter? :)
💗 Support:

One-time Paypal @ https://www.paypal.com/paypalme/victorvls
Our Patreon page @ www.patreon.com/publicdomain.
Email/Paypal: [email protected]

Thanks & keep on rocking! 👍
Vic
168
Post New Requests Here / Re: Idea: Stupidly Simple Search Shortcut
« Last post by publicdomain on April 30, 2023, 07:40 PM »
UPDATE: Three modes for handling search terms added:

07.png

Download @ https://github.com/publicdomain/search-shortcut/releases/tag/v0.1.0

We can consider this version feature-complete  :) Official release imminent made! @ SearchShortcut - Search across multiple engines (v0.1.0)
169
Finished Programs / Re: Duplicated Folders/Directories...
« Last post by publicdomain on April 30, 2023, 12:30 PM »
I'm happy to do a tool with such a 3-step algorithm ...
-publicdomain

It's on the way!  :)

Repo @ https://github.com/publicdomain/stepped-duplicated-folders

(with long path support right off the bat, via AlphaFS)
170
Post New Requests Here / Re: Idea: Stupidly Simple Search Shortcut
« Last post by publicdomain on April 30, 2023, 12:32 AM »
Hello again! Your program's code IS finished  :Thmbsup:

You can download & test  @ https://github.com/p.../releases/tag/v0.1.0
171
Post New Requests Here / Re: Idea: Stupidly Simple Search Shortcut
« Last post by publicdomain on April 20, 2023, 06:16 PM »
For sure, your testing/input is most-valuable: this is your program! :)

Initial beta version is about to be published can be downloaded now :up:
172
Without being too obstructive.
-Steven Avery (April 11, 2023, 06:48 PM)
I'm not trying to get people to become members of my forum
-Steven Avery (April 17, 2023, 05:45 AM)

Hello & good day Steven! Since you want fellow guests to also provide info when downloading, how about having a simple off-forum download page featuring some form fields plus "Submit & download" button?

The hosted page remains within your site's domain and the file is delivered from your Linode server via php script (with a redirection to prevent direct linking).

I can engage in such a straightforward off-forum hosted script if you wish :)

It will be open sourced at GitHub for utmost transparency  :up:

Cheers!
Vic
173
Post New Requests Here / Re: Idea: Stupidly Simple Search Shortcut
« Last post by publicdomain on April 17, 2023, 09:38 AM »
Glad you like the GUI, it's taking longer since it's being crafted with love :-*

There are two dynamic counters for checked terms and engines on the status bar plus some "bells & whistles" customization/options.

02.png

03.png

04.png

05.png

Code keeps on being pushed to GitHub. We're getting closer to a fully-working release  :Thmbsup:

Let's first have you confirm it does what you need before making it a permanent tray runner  :)

Cheers!
174
(On the way! :))
-publicdomain (April 10, 2023, 09:48 AM)

FlattenFolderMenu v0.2.0 with long path support via AlphaFS is complete code-wise.

GitHub tag @ https://github.com/publicdomain/flatten-folder-menu/releases/tag/v0.2.0

Proper public release with be done right after luvnbeast's SearchShoftcut.
175
The UNO platform is shaping quite well:

Open-source UI Platform for building single-codebase applications for Windows, iOS, Android, WebAssembly, macOS, and Linux

Website @ https://platform.uno
Pages: prev1 2 3 4 5 6 [7] 8 9 10 11 12 ... 30next