topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Saturday September 19, 2026, 3:26 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 ... 202 203 204 205 206 [207] 208 209 210 211 212 ... 404next
5151
General Software Discussion / Re: Too many programs in my start menu!
« Last post by wraith808 on January 04, 2014, 02:11 PM »
A Start Menu Organizer would work also.

I know of two:
http://www.winstep.n...artmenuorganizer.asp

http://www.tidystartmenu.com/index.shtml

I've made use of Tidy Start Menu several times, and love it enough that I purchased it.  I use other WinStep programs (Nexus mostly now), so you couldn't go wrong with either IMO.
5152
N.A.N.Y. 2014 / Re: NANY 2014 Release - epCheck
« Last post by wraith808 on January 04, 2014, 01:03 PM »
Ah... I didn't know if he was saying that he got it to work with nothing else.
5153
Living Room / Re: Evernote, the bug-ridden elephant.
« Last post by wraith808 on January 04, 2014, 01:02 PM »
I use it quite extensively... on several different platforms.  And I've not experienced anything like what he says.  If it was so endemic, especially being a web application used quite extensively by the userbase that he quoted, wouldn't there be more of a record of said lapses?  More people rising up as their data was lost?

Inquiring minds wonder...?
5154
N.A.N.Y. 2014 / Re: NANY 2014 Release - epCheck
« Last post by wraith808 on January 04, 2014, 12:15 PM »
How did you do that?
5155
General Software Discussion / Re: What's your preferred File Manager
« Last post by wraith808 on January 04, 2014, 12:14 PM »
It just doesn't look appealing to me.  And mwb, some people are expressing the same frustration on BDJ in the comments.
5156
Living Room / Re: Best note-taking setup with tablet and keyboard?
« Last post by wraith808 on January 04, 2014, 12:11 PM »
Finally, while I don't use an Android editor with your requirements, and so can't give you any recommendations, here is a place to start looking.

xtabber -thanks for your thoughts and suggestions. Actually capturing notes on the go is not a problem, as my iPod touch 4th gen. is highly portable and great for that. It is more for the home and for work when I don't want to turn on or wake a PC/laptop/netbook. My old iPad fit the bill, but I didn't have a good keyboard for it.

I'd be more interested in the forthcoming Nexus 10 (2) with a keyboard folio case (but it would probably work with the Nimblstand as well). Big screen is better both for writing and for reading and annotating PDFs, for instance. Good to see there are now some decent Markdown editors for Android too.

I just bought a Dell Venue Pro 8 instead of an iPad Mini to hopefully start to get me out of the Apple infrastructure.  As a .NET developer, I can also directly develop for it, and it was cheap... $329 for 64GB and a full version of windows?  A no brainer I thought.

I'm starting to regret not going for the iPad mini.  From software to accessories, to ... just about everything.  Don't get me wrong... it's a great device.  And being able to program for it is great.  But I find myself picking up my iPad more than it... even in the cases that I bought the 8" tablet for.  It's more portable... so would be better to carry around.  But I still carry my iPad.  I tried only using it... but missed my iPad's ease of use.  And the apps.  That's the big thing.  Not the buy in of having them.  But the apps themselves and the paradigm of usage.

I positively hate iOS7 with a passion.  But at least it's internally consistent.  Most Windows tablet apps aren't really.  And programming for it, I see that MS left it more open than the Apple infrastructure.  And when I evaluated the Nexus and played with a friends applications and such, I could see the same disconnect.

Though I enjoy my Venue Pro, I think I'm getting an iPad Mini when i get a chance.  That same ecosystem that we as hackers and technologies skewer them for?  When you just need to get things done, and you're already used to it, it's hard to change to the wild west paradigm.

Oh... and what Markdown Editors do you use on the iPad?  Just wondering...
5157
N.A.N.Y. 2014 / Re: NANY 2014 Release: Process Piglet
« Last post by wraith808 on January 04, 2014, 11:59 AM »
Yeah... memory usage is a big black hole at times.  Even on Windows XP where it shows the Mem Usage- that's a combination of WS Private and WS Shared.

There's three sets from what I understand- the virtual memory (which I didn't even touch on), the Private Working Set (the memory recently touched by the application and not a candidate for Garbage Collection) and the Sharable Working Set (the memory not recently touched and is a candidate for Garbage Collection).  Windows uses the Free memory first- it's easier to allocate, and is not a big processor or disk I/O drain.

It might be good to include a summary of memory usage and perhaps links to a couple of non-technical (or less technical) explanations, so that people that download that don't have an idea of how memory work have a better idea of how to use process piglet.

Some of all this does matter though, because I have an older laptop with only 500ish megs of ram! So I def see performance lags on that laptop, so if the browser is using that all by itself, then the laptop might be desperately caching to keep up.

Actually, it still doesn't, even with less memory.  The only way to make it not matter, is not to load the memory in the first place.

Ever been working for a while on your machine, then all of a sudden the disk light comes on and the entire machine just grinds to a halt?  Even your mouse might start flaking out, or not move at all.  And it might seem like your machine is completely locked.  But if you wait for a while (a few minutes- maybe even 10-20 in bad cases), the machine becomes usable again?

That's Garbage Collection at work.  When there's no more physical memory, the machine pages everything out to disk, then starts to stack them up in order by process so that the memory is nicely arranged, and the free memory is collected from each process, and at the end of the stack.  It takes a while, and uses up your entire processor.

And because of how intensive it is, a programmer can't even make it happen in a managed programming language (most of the more recent ones).  You can request it to happen as soon as possible, but you can't make it happen.  Mostly because it's something that you should let the OS take care of by design.
5158
N.A.N.Y. 2014 / Re: NANY 2014 Release: Process Piglet
« Last post by wraith808 on January 03, 2014, 05:07 PM »
Hmm. "...And then does this a few times without compacting."

Maybe. But then I'd wish the browsers would do their own compacting and go "back down" to a sensible size. I guess it's a vestige bit of being a luddite where I just hate to see "huge" memory usages for viewing what should be a "simple" web page. Maybe the Plugins get involved too.

Update:
I still don't like seeing 416 megs used, but I have spotted a "process Palemoon.exe has gracefully lowered its memory use" message!



Garbage collection is very processor intensive in many cases.  So you'd get into a position where your browser was regularly slowing down your machine rather than just appearing to use a lot of memory.
5159
N.A.N.Y. 2014 / Re: NANY 2014 Release: Process Piglet
« Last post by wraith808 on January 03, 2014, 03:30 PM »
Well I had thought that PaleMoon/Firefox "had solved the memory leaks". Apparently according to piglet, not exactly.

Can someone explain what the browser is *doing* with all that space? You can go to some random webpage (not even a video) and all of a sudden it spikes!



Well, I will say that I do have a question in regards to PP...

If you look at memory like a series of cells
(with U= in use, and F = free)

FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF

And then load a program

UUUUUFFFFFFFFFFFFFFFFFFFFFFFFFFFFF

Then the program has to do something, i.e. load a tab, that will spike usage for a brief time

UUUUUUUUUUFFFFFFFFFFFFFFFFFFFFFFF

And then gives that memory back... though its not contiguous

UUUFFFFFUUFFFFFFFFFFFFFFFFFFFFFFFF

And then does this a few times without compacting, because nothing else needs the memory currently...

UUUFFFFFUUUUUFFFUUFFFUUFFFFFFFFFF

What would PP show in that case?  Because that's a lot of the way that memory management in a garbage collected world works.  Working Set is the current size, in bytes, of the Working Set of this process. The Working Set is the set of memory pages touched recently by the threads in the process. If free memory in the computer is above a threshold, pages are left in the Working Set of a process even if they are not in use.  When free memory falls below a threshold, pages are trimmed from Working Sets. If they are needed they will then be soft-faulted back into the Working Set before leaving main memory.

Is the memory being reported the WS Private or the WS Sharable?

A good explanation that goes into it better than I can: http://cybernetnews....ory-usage-explained/
5160
Mouser's Zone / Re: Update Check
« Last post by wraith808 on January 03, 2014, 10:14 AM »
Ah... I figured it out.  I guess I was using an older version before you added that ability but the update check was there.  I updated to the latest and the option is there.
5161
Mouser's Zone / Re: Update Check
« Last post by wraith808 on January 03, 2014, 10:06 AM »
Thanks!  I thought that was unusual... I looked for it and didn't find it.  :-[
5162
Living Room / Re: Best note-taking setup with tablet and keyboard?
« Last post by wraith808 on January 03, 2014, 09:56 AM »
You might try a clamcase instead of the zagg.

Thanks. Looks good but it's not out yet for iPad Air and also I'm in the UK, so I suspect it will take a few more months to get here.
Ah... that sucks.  It adds a bit of weight to it, but after trying that vs. other alternatives, it was the best for what it does.  As a note, other alternatives I tried were:

Adonit Writer+ Keyboard (a big contender vs. the clamcase, although also not for the air currently)
Logitech Ultrathin Keyboard Cover (linked the one for ipad air.  Didn't like the angle or the lack of travel between the keyboard and the screen)  Also tried that with the STM Org Board which if you're going to go with one that just attaches, is a great addition.

Logitech Keyboard Folio (same problem as keyboard cover)

Logitech Solar Keyboard Folio (strangely enough, this one felt better than the other two logitech offerings... but still couldn't get past the depth of the keyboard travel to the screen)

What I finally settled on was the Logitech Tablet Keyboard and the STM Skinny Ipad cover (also used the inCase Book Jacket Select depending on weight needed).  I found that separating the tether between the two was the way to go- I'd been trapped into laptop like world, and this actually worked a lot better.

Did you consider using a digitizer with a tablet solution?
Interesting suggestion. Do you have any particular tablet + software in mind to do this with? I presume this would use handwriting recognition? The last time I used that was with my Palm T|X...


Well, there's two ways to go... either handwriting as is, or handwriting recognition.

The first thing is getting a good pen- the Adonit Jot Pro wins hands down IMO.  It's a bit pricey, but worth it.  There's a more expensive one for artists; it uses bluetooth to facilitate pressure sensitivity.  But I didn't need it.  Wacom is also pretty good, but surprisingly, Adonit was the way to go for me.  That's the most important one- more important than the application.

For the application, however, I use OneNote/Outline+ and Evernote/Penultimate.  Both have search across handwritten text, so they have the ability to index all of my notes.

I also use AirDisplay to extend my computer screen when I'm at my desktop and then use my iPad like a wacom tablet to write/sketch on my computer.

And, I use the Whitelines products to converge regular note taking and scribblings with my iPad... it works wonders for scanning diagrams and sketches into my evernote account.

Let me know if you have any specific questions about any of them.
5163
Mouser's Zone / Update Check
« Last post by wraith808 on January 03, 2014, 09:18 AM »
I know this is at least an issue in FARR and SSC, but the update check has no way to disable it.  I update... but not necessarily when the check fires, especially on my work machine.  Then, day after day, the dialog continues to come up.  Very annoying.  But even worse than annoying, I was out of the office for a few weeks.  When I came back, FARR had 1 update reminder for every day I'd been out.

Can we have an option to not check for updates daily?  Or to disable update checks for a specific version until the next version?
5164
Living Room / Re: Best note-taking setup with tablet and keyboard?
« Last post by wraith808 on January 02, 2014, 08:07 PM »
You might try a clamcase instead of the zagg.  I know you said not pen and paper... but you're angling towards keyboard which is only one way of electronic note taking.  Did you consider using a digitizer with a tablet solution?
5165
N.A.N.Y. 2014 / Re: NANY 2014 Release - epCheck
« Last post by wraith808 on January 02, 2014, 03:10 PM »
Personally, I would see if its an issue.  With only one reported incidence of the problem, changing your approach based on that would seem premature.
5166
N.A.N.Y. 2014 / Re: NANY 2014 Release - epCheck
« Last post by wraith808 on January 02, 2014, 12:03 PM »
Works fine on my XP machine also.  One thing that I noticed- it brings up a copy dialog when downloading the information, which it doesn't do on my windows 7 machines.  Not sure if that's related, but figured I'd bring it up.  Maybe it's not the downloading... it's the copying of the information?
5167
N.A.N.Y. 2014 / Re: NANY 2014 Release - epCheck
« Last post by wraith808 on January 02, 2014, 12:03 AM »
This is really a cool app! :)
5168
N.A.N.Y. 2014 / Re: NANY 2014 Release: Reference Overlay Tool
« Last post by wraith808 on January 01, 2014, 11:43 PM »
Final Initial Release Posted... forgot to update the thread with a new post so it would update people.  :-[
5169
Living Room / Re: HAPPY NEW YEAR TO ALL OF DONATIONCODER - 2014!
« Last post by wraith808 on January 01, 2014, 01:22 PM »


makeitso2014.jpg
5170
Living Room / Re: Migrating from Google Gmail.com to Microsoft Outlook.com
« Last post by wraith808 on January 01, 2014, 12:08 PM »
It was likely that your address was not... it was just someone spoofing your e-mail address.

If you could log into the account, and changed the password, then that's the likely culprit.  And changing your address wouldn't really do anything about that...
5171
Living Room / Re: Facebook D.O.A.
« Last post by wraith808 on January 01, 2014, 11:13 AM »
^ And you know what?  They wouldn't care about that.  What would they care about?

4.6 million snapchat photos leaked.
5172
N.A.N.Y. 2014 / Re: NANY 2014 Release: ImgFloat (a tool for Screenshot Captor)
« Last post by wraith808 on December 31, 2013, 09:46 PM »
ImgFloat archive has been updated with documentation, license, and readme.  Website has also been updated with documentation, and a link to the same is above.

FIN
5173
Found Deals and Discounts / Re: eM Client 70% off
« Last post by wraith808 on December 31, 2013, 12:06 PM »
And it can't be used commercially... and support.  That's the extent of the differences between a lot of software use, and I guess that was my point.  There is a difference... so I don't see the problem?
5174
Found Deals and Discounts / Re: eM Client 70% off
« Last post by wraith808 on December 31, 2013, 11:16 AM »
That free version is only a trial, isn't it?  The home version is free, but it seems like there are limitations.
5175
Best Headline of 2013 by far!

zc0yJd1.png

From http://www.mirror.co...turbates-bar-2969797

Andrew Frey, 37, was eventually arrested after a wild, meth-fuelled weekend of erratic behaviour, which climaxed in the obscene outburst in Iggy's Bar & Grill in Salem, Oregon.

I see what you did there...
Pages: prev1 ... 202 203 204 205 206 [207] 208 209 210 211 212 ... 404next