topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Saturday April 27, 2024, 9:03 am
  • 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

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - hamradio [ switch to compact view ]

Pages: prev1 ... 4 5 6 7 8 [9] 10 11 12 13 14 ... 34next
201
N.A.N.Y. 2012 / Re: NANY 2012 RELEASE: Portable Extension Warlock
« on: January 06, 2016, 11:24 AM »
Release Notes of 2.1.0.2

A few bugs from version 2.1.0 build 1 fixed.  Let me know if anymore are found.

Thanks for the update, hamradio! I was able to use this feature #1 to add custom icons for CLI apps (e.g. ffmpeg). #3 is a nifty time-saver too.

You're very welcome.

202
N.A.N.Y. 2015 / Re: NANY 2015 RELEASE: File Downloader
« on: January 05, 2016, 05:35 PM »
Yeah! I just discovered this neat little tool after seeing their post. Made me register here and follow this thread, in case there are any updates in the future.

Welcome to the site as well, tomdoe!

Hamradio, a FARR alias to invoke File Downloader might be nice thing to add.

Perhaps I will create one soon...

:)

203
N.A.N.Y. 2012 / Re: NANY 2012 RELEASE: Portable Extension Warlock
« on: January 05, 2016, 05:06 PM »
The following update has a couple new features...

RECOMMENDED UPDATE:

1. Added the ability to create the icons for existing applications and automatically for new and edited applications if they don't already exist to read from them instead of from the application executable each time.
2.You may customize them as long as the filename/directory structure and image width/height is followed.
3.Launcher was updated for key press find of applications by first letter only.

Note if application icons are not found, then it should fall back to the application executable.

Enjoy and as always let me know if bugs are found. :)

Download link in 1st post.

204
Living Room / Re: HAPPY NEW YEAR 2016
« on: January 01, 2016, 12:20 AM »

Happy New Year 2016!

205
N.A.N.Y. 2016 / NANY 2016 Release: Minecraft Places
« on: December 30, 2015, 08:21 PM »
NANY 2016 Release Information

Application Name Minecraft Places
Version 1.0.0 build 1
Short Description Stores coordinates of important places you find in your Minecraft worlds.
Supported OSes Tested on Windows 7 64 bit.
Web PageMinecraft Places
Download Link Minecraft Places
License USE/MISUSE AT YOUR OWN RISK! NO WARRANTY OF ANY KIND! Do not distribute. Instead link to this topic please!
System Requirements
  • .NET Framework 4.6
  • Obviously a computer...
Version History
"Version 1.x.x build x"
  • 1.0.0 build 1 initial public version

Author hamradio

Description
Store the coordinates of places you visit in Minecraft in a searchable database to find your way back to your base, a dungeon, a stronghold, and/or other places of your interest.

Features
Portable enabled.
Keep notes about each place.
You may also edit/copy a place and change what is needed.
You may also delete places you no longer need.
Search the places. (Hint: Right click search bar for search type.)

Screenshots

The main window with some places...
screen_12302015.png

Usage

Installation
Extract to an application folder outside of the normal program files folder making sure to extract it with folder structure intact.

Using the Application
Extract as noted in the installation instructions, run, and get to creating your list of places.

Help File
No help file created at this time.

Uninstallation
Just delete the application files.

Known Issues
Currently do not know of any.

Note
Initially intended to be for personal/family only use, but thought I would release it as this years NANY.

206
Developer's Corner / Re: Copy/pasting code and the last line effect
« on: December 11, 2015, 06:54 PM »
So instead of the last line pasted...the author of the code seems to have simply forgot to increase the array size.  Which is definitely not the last line effect anyhow.

207
Developer's Corner / Re: Copy/pasting code and the last line effect
« on: December 11, 2015, 06:33 PM »
Multi Theft Auto

class CWaterPolySAInterface
{
public:
    WORD m_wVertexIDs[3];
};
CWaterPoly* CWaterManagerSA::CreateQuad (....)
{
  ....
  pInterface->m_wVertexIDs [ 0 ] = pV1->GetID ();
  pInterface->m_wVertexIDs [ 1 ] = pV2->GetID ();
  pInterface->m_wVertexIDs [ 2 ] = pV3->GetID ();
  pInterface->m_wVertexIDs [ 3 ] = pV4->GetID ();
  ....
}

The last line was pasted mechanically and is redundant. There are only 3 items in the array.

I noticed the author of that article is actually wrong about the above one. Because it appears the array starts at 0 therefore that one is absolutely correct because it has 4 items in the way 0, 1, 2 and 3. ;)

208
Heres a microsoft article about Runtime Broker on windows 10 using too much memory.

http://windows.micro...sing-too-much-memory

One thing the article says is...

Runtime Broker is a Windows process in Task Manager that helps manage permissions on your PC for apps from Windows Store. It should only use a few megabytes of memory, but in some cases, a faulty app might cause Runtime Broker to use up to a gigabyte of RAM or more.

209
Living Room / Re: Your own paper planner and calendars for 2015
« on: November 20, 2015, 01:04 PM »
timeanddate.com/calendar/create

^ 404


Think it needs to be updated to the following, but not sure: https://www.timeandd...com/calendar/events/

210
DeVamp, you can try with vers. 0.19 and use hamradio's regex, but use <\1lane\2> as replacement text. Then compare the output with what WildGem gives you and tell me if it's the same ;D.

\1 will be replaced with what's captured for the first group (defined by the () in the regex), \2 by what's in the second group, etc.

Still glad someone finds TIMU useful! :Thmbsup:

It works for me in TIMU 0.19 now too like he said...

I used <(/?)(\d+?)> for regex and for replacement text <\1lane\2>.  So either will work now with the update to TIMU to 0.19. :)

211
Hey,

I have a question about the replace regex.

I have an XML file (simplified as example)
<road>
  <1>
    <car color="red">car1</car>
    <car color="blue">car2</car>
    ...
  </1>
  <2>
    ...
  </2>
  <3>
    ...
  </3>
... till <39>
</road>

Now I was hoping I could change the <1></1> till <39></39>
into <lane1></lane1> till <lane39></lane39>

I use <[0123456789]> as Search regular expression, and that selects the first tags correctly.
But I have no clue how to provide something from the searched text into the replacement text.

Could you explain a bit how to use the regex replace.

Thank you.


I am a user of both TIMU and WildGem so in the meantime while it gets worked on for this one...you can do it with WildGem which can be found on DonationCoder forum as well at: https://www.donation...ex.php?topic=41103.0

I used <(/?)(\d+?)> for regex and for replacement text <$1lane$2>.

It worked with your example. :)

212
Auto-rooting adware is a worrying development in the Android ecosystem in which malware roots the device automatically after the user installs it, embeds itself as a system application, and becomes nearly impossible to remove.
-Lookout blog post

More at the following link...
https://blog.lookout.com/blog/2015/11/04/trojanized-adware/

213
N.A.N.Y. 2015 / Re: NANY 2015 RELEASE: Link Warlock
« on: November 05, 2015, 01:05 PM »
A few updates to behind the scenes code and also now comes multi selection and multi delete due to the updates of behind the scenes code in version 1.1.0 build 1.  Sorry it took so long to get out, but I am just now getting back into programming a little more regularly after my health issues this past spring.  Download link is in first post.


The new delete dialog with a few items selected in the main window...
screen_11052015_002.png

214
(on a side note I have donated twice to donation coder and it does not show up at all.)

If you want it to show up on the forum then take a look on how to do that at the following DonationCoder url...

https://www.donation...r.com/Help/entry/18/

Also more helpful links about donating is at: https://www.donationcoder.com/Help/3/

If you need further help on the donation end contact mouser.

215
General Software Discussion / Re: 1Password Leaks Your Data
« on: October 19, 2015, 12:45 PM »
Also the case of what about web browser history if you don't clear the history/cache all the time and have one of those reset password website addresses in it that doesn't expire? Same thing going on there I would think especially if computer was compromised...

216
You can grab the slither between the search textbox and the help button and drag it to the right. :)

217
N.A.N.Y. 2014 / Re: NANY 2014 RELEASE: Weather Station Warlock
« on: September 17, 2015, 04:59 PM »
Updated to 1.0.0 build 1 with a few fixes as listed.  If you got the error with previous version be sure to go into the cache folder and delete states.txt file as well.

1. Added a user agent for when the feed gets downloaded to fix download forbidden as the national weather service has started requiring a user agent to prevent an error 403 forbidden on requests it appears.
2. In turn by adding a user agent it is now downloaded slightly different.

Please update to the latest version as previous versions will no longer work the way it appears (download link in first post).

Thanks! :)

218
Clown and turkey badges always existed?  :huh: ;D

Yep! ;D

219
PBOL / Re: Latest Progress Bars of Life - Version 2.03 - May 16, 2014
« on: September 09, 2015, 05:09 PM »
I spotted a minor bug (or feature?) in the latest version. Ampersand doesn't get rendered in an item name. Instead, the next character gets underlined, when displayed as a bar title.

Try putting 2 of em like &&.  I think that can fix it if I understand what you want.

220
Living Room / Re: When you make your 100'th Post
« on: August 23, 2015, 09:07 PM »
I slipped up on my last 100th mark, so I suggest a forum feature that reminds people when they are within say 2 posts of a new 100th milestone. :)
So when you go to make a post, you're already set to post something, so it allows for that by telling you basically that the post after your next will be a 100th.
Or...something like that.  :)

edit: with opt/in-out feature.


Or even an addon/bot to post it for everyone under their name... ;D Just a thought...lol

221
General Software Discussion / Re: Ooh, CarotDAV portable ROCKS!
« on: July 17, 2015, 07:56 PM »
Nice and just a note from the CarotDAV website so everyone knows...

By default, passwords are saved with no encryption. -> In the setting file, there are login IDs and raw passwords. By default, it is not encrypted. If you want to avoid risk, use master password.

Weird. The website also says (emphasis added):

Includes automatic file-splitting (e.g. OneDrive's 25 meg file size limit) and doesn't store passwords in plain text. For additional security, a master password can be set.

The portable freeware site says that but I was talking on the main homepage for the program itself.

222
General Software Discussion / Re: Ooh, CarotDAV portable ROCKS!
« on: July 17, 2015, 06:54 PM »
Nice and just a note from the CarotDAV website so everyone knows...

By default, passwords are saved with no encryption. -> In the setting file, there are login IDs and raw passwords. By default, it is not encrypted. If you want to avoid risk, use master password.

223
Living Room / Re: The joy of seeing a first time forum poster
« on: June 30, 2015, 02:20 PM »
Agreed and :Thmbsup:!

224
Announce Your Software/Service/Product / Re: WildGem 1.1
« on: June 29, 2015, 02:56 PM »
Thanks for the update! :Thmbsup:

225
Announce Your Software/Service/Product / Re: WildGem 1.1
« on: June 16, 2015, 06:12 PM »
@hamradio: Oh, I read your initial post again. Properly this time. I see what you want - for the Find section to cover the whole width (and to hide the entire Replace section).

That's... interesting. I like it. I'll put that on the todo list instead.

Thanks. Glad you figured out what I was getting at. :)

Pages: prev1 ... 4 5 6 7 8 [9] 10 11 12 13 14 ... 34next