topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Tuesday November 11, 2025, 4:00 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 ... 19 20 21 22 23 [24] 25 26 27 28 29 ... 184next
576
Post New Requests Here / Re: IDEA: drag window to edge automatically resizes it
« Last post by jgpaiva on November 24, 2009, 05:51 PM »
I honestly haven't observed that behaviour.. Maybe someone else has noticed the same problem and can provide more details.
577
Post New Requests Here / Re: IDEA: drag window to edge automatically resizes it
« Last post by jgpaiva on November 23, 2009, 04:47 PM »
Now that's surprising, empyrean. Are you sure you were not dragging a window to the edge of the screen or didn't click middle mouse button?
Those are other ways of activating the grid.
578
Post New Requests Here / Re: IDEA: drag window to edge automatically resizes it
« Last post by jgpaiva on November 16, 2009, 02:06 PM »
Hi

I have just started using gridmove on windows 7, I actually started using it so I could keep the right side of my 2nd monitor free for my gadgets ala vista sidebar style, which it works well for.  On using it more I actually much prefer it to the built in windows 7 aero snap, namely because it has proper multimonitor support and I can arrange windows side by side on a single monitor without using the keyboard.

The only thing missing from this program IMO is the undocking functionality windows 7 has in its own aero snap. Namely if I dock a window to the side with aero snap as soon as I undock it returns to its former size. With gridmove it stays the same size so I have to manually resize.

Is there any chance this functionality could be added? It would make this a really perfect little app if it could be done

Here's Hoping  :)
Hi andonevris!

Yes, I can relate to your problem, I think aero snap is really neatly implemented, but it's part of the Operating System. It'd be much more difficult for GridMove to do the same, and I currently really have no way of implementing it in a reasonable time.

I'm not sure how much of GridMove you can use, but if you can edit the grid, you can edit a "Restore" grid element with the size of the whole screen. It doesn't get you the same behavior as aero snap, but it can be seen as a workaround, I think.

Here's the element you should add: (notice: replace '4' with the number of the last grid element + 1, and don't forget to add one to the numberofgroups parameter!)
[4]

  TriggerTop   = [Monitor1Top]
  TriggerLeft  = [Monitor1Left]
  TriggerBottom= [Monitor1Bottom]
  TriggerRight = [Monitor1Right]
 
  GridTop   = Restore
  GridLeft  = Restore
  GridBottom= Restore
  GridRight = Restore
579
Developer's Corner / Re: What's your Programming Language?
« Last post by jgpaiva on November 14, 2009, 03:54 PM »
it just means that it may use more memory
That's what I call inefficient.
Hmm, since Java *may* use less memory than C++, and *may* run faster than C++, does that mean C++ is also an inefficient and slow language?
Or better yet, as Assembly is always faster and uses less memory than both C++ or Java, does it make both languages inefficient and slow?
580
Developer's Corner / Re: What's your Programming Language?
« Last post by jgpaiva on November 14, 2009, 12:51 PM »
Java might have a garbage collector, but its major disadvantage is that you just can't collect garbage yourself, so it tends to memory hogs of a quite notable amount.
That does not mean that you can't write "efficient and fast code" in Java, it just means that it may use more memory. On the other hand, the JVM can do stuff like copy-on-write, which may even cause a lower memory usage than a C++ program.
581
Developer's Corner / Re: What's your Programming Language?
« Last post by jgpaiva on November 14, 2009, 10:34 AM »
My favorite programming language is Java.
Oh God why?  ;D

It's a bit like C/C++ in many ways.
... except that you can write efficient and fast code in C++.
You'd be surprised how having one thread dedicated to code optimization (speculative execution, caching of frequent objects and stuff like that) can help the performance of your code ;)
During a project for university, a friend of mine has tested C vs Java for dynamic function calls, memory allocation (and access) and native function calls. C only got the best results for native function calls.
I'm not a hardcore fan of Java, but I've been using C++ for work for the last year and a half, and I have already regretted quite a few times not having selected Java for the project.
582
Living Room / Re: Vista : included backup and security software
« Last post by jgpaiva on November 13, 2009, 08:28 AM »
Sorry to bump an old topic, but I just find it hilarious that MS designs Windows from the ground up, yet they cannopt manufacture a sufficient piece of security software. It's like if everyone bought a Ford, but they immediately went to Chevrolet to swap out the tires after every purchase. Just sad and bizarre,
Windows now has Windows Security Essentials.

PS: yep, I removed your out of context link. Please try not to spam forums in order to get SEO for that other security company. And hey, I even added a link for a competitor to the thread, isn't that cool? :D
583
General Software Discussion / Re: Worst Win7 reviews (ongoing)
« Last post by jgpaiva on November 12, 2009, 08:03 AM »
I can give you better, Paul!
Here's the PPA: https://launchpad.ne...ar-main/+archive/ppa
If you're running 9.10, it's really easy to add the PPA, and you get the updates through the automatic updater ;)
584
General Software Discussion / Re: Worst Win7 reviews (ongoing)
« Last post by jgpaiva on November 11, 2009, 03:34 PM »
Does KDE also have that pop-up preview grouping option?

Yes, that's what I was looking for too. Default KDE (with desktop effects in suse) doesn't, unfortunately. The best thing I've found is dockbarX for gnome, which does the launcher + taskbar button + grouping behavior, but doesn't really have the window previews. Maybe some day (hopefully not too far away ;) )
585
JGPaiva's GridMove and Ahk Tools / Re: ; will start a comment in .grid file?
« Last post by jgpaiva on November 04, 2009, 06:26 PM »
Hi ehaerim!

Yes it does, the grid files are just .ini files with a different extension.
586
FARR Plugins and Aliases / Re: Farr Alias: nircmd alias
« Last post by jgpaiva on November 01, 2009, 09:49 AM »
You're right, delwoode. I have removed the superfluous files, and removed the nircmdc.exe file (which wasn't being used anyway).
587
Developer's Corner / Re: Help with Processing 1.0
« Last post by jgpaiva on October 28, 2009, 06:58 AM »
Hmm, that looks like school work, right?
What language is it? Oh, Processing 1.0. Didn't know such language existed :)

I can't see any Bin in that code, so I suppose you should start by making one. You could take the book as example, I think. The main difference would be that the Bin wouldn't have the move() function.
588
Developer's Corner / Re: What's your Programming Language?
« Last post by jgpaiva on October 26, 2009, 03:10 PM »
Thus, Java is none either.  :D
:) :)
589
General Software Discussion / Re: Worst Win7 reviews (ongoing)
« Last post by jgpaiva on October 26, 2009, 05:32 AM »
KDE was there 16 months ago and has really gotten better (I can make it look list Win7, Vista, or OSX if I want, but the original KDE is -- for me -- better than all those)
That's really cool!
Could you direct me somewhere where I can make kde have that taskbar just like win7? If so, that might be my last drop to move from gnome to kde :)
590
I'd love to see the number of votants too ;)
I already cast mine :D
592
Living Room / Re: INTERNATIONAL CAPS LOCK DAY - OCT 22 & JUNE 28
« Last post by jgpaiva on October 24, 2009, 02:43 PM »
1234567!
-cranioscopical (October 22, 2009, 04:09 PM)
Man, that deserved you some credits just for the style :P
593
Living Room / Re: What are you waiting for?
« Last post by jgpaiva on October 24, 2009, 09:04 AM »
Ubuntu 9.10  ;D Actually no, I couldn't care less :)

The discussion of my master thesis, just delivered the document yesterday and I'm anxious for putting it away and starting to work on much more interesting stuff :D
594
General Software Discussion / Re: 10 things to do after installing Linux
« Last post by jgpaiva on October 19, 2009, 12:21 PM »
Linux Mint? That greenish Ubuntu derivative?
Thus: That greenish ((Debian derivative) derivative)?

Why not using the original Debian instead?
1 - Because newbies want to start the computer, get their mp3s from their windows machine and listen to them right away.
2 - Because newbies want to start the computer, insert a divx and see it right away.
3 - Because newbies want to start their computer, open a window and have the desktop effects right away (even if they have an nvidia graphics card).

I guess these are just 3 reasons... If you dwell into the whole debian "no non-free stuff is installed", you'll probably find quite a few more interesting packages missing.
I prefer Ubuntu to Mint or Debian, but still I can appreciate the effort that Mint developers are making. I just wish more people in the open-source community would think like them.
595
General Software Discussion / Re: Who should judge Win7's success?
« Last post by jgpaiva on October 17, 2009, 08:51 AM »
Or do you mean it just uses more resources in general? But I always heard that "unused ram is wasted ram", don't you agree?
Unused RAM is cache for me. More resource usage = less performance with the same resources, right?
Yes, exactly, that's the reason Vista used more memory than XP, it used unused ram for cache. So you didn't notice the performance improvements mentioned in several reviews and you even noticed your computer being slower? I'd love to have the time to test it on my computer and see if it actually matches up to what's being said.

what I read about microsoft having made studies on how it was an improvement in usability for the general public.
Do you really trust Microsoft's studies? Of course they will never result in "this sucks".
I though microsoft wouldn't invest of money on creating a whole new interface if it didn't bring better usability results... If they faked the studies, and they launched an operating system with an unusable taskbar, wouldn't they lose even more costumers to other OS?

I've seen a microsoft presentation about how and why they developed the new taskbar. It's really interesting, they have the explanations for why they developed it like that, and show the usability results and the costumer experience data which led them through the design process.
Honestly, since I've tried windows 7, I've been trying to find something similar to its taskbar in Ubuntu. I've found dockbarX, and think it's a fantastic improvement because the taskbar gets way more organized. Its only problem is its paradigm doesn't work so well with multiple desktops.
596
General Software Discussion / Re: Who should judge Win7's success?
« Last post by jgpaiva on October 17, 2009, 05:55 AM »
It's said that Vista is somewhat stabler and compatible than Win. 7.
Doesn't windows 7 have a small update to WDM? I wouldn't be surprised if vendors still haven't upgraded their drivers to fit it. From what I understand, it isn't such a major leap as it was with XP->Vista, so wouldn't be surprised if it was actually a smoother transition than it was back then.
597
General Software Discussion / Re: Who should judge Win7's success?
« Last post by jgpaiva on October 17, 2009, 05:49 AM »
It takes as much space as Vista? It takes as much time to boot as Vista?
According to the recommendations, it takes at least twice as much of resources. :P
Do you mean the computer performs slower than with vista?
I didn't know about that.. I only read a few of the first articles I could find about vista vs win 7 they mentioned improvements in speed when using the system (some of them even mention some stuff faster than XP  :-\).
Or do you mean it just uses more resources in general? But I always heard that "unused ram is wasted ram", don't you agree?

No more actual "task" bar, no more classic start menu; two big disadvantages for me. Of course, computer newbies (starting with Vista or sth) won't have these problems.
Oh, then you meant that it was unusable for you. I misunderstood, I assumed you meant it was a general thing, and that sort of went against what I read about microsoft having made studies on how it was an improvement in usability for the general public.
598
General Software Discussion / Re: Who should judge Win7's success?
« Last post by jgpaiva on October 16, 2009, 07:39 PM »
Windows 7 is, basically, Vista with a unusable task bar. So I can't see a sense in "upgrading".
Why do you say that?
There have been no changes in the inner workings? It takes as much space as Vista? It takes as much time to boot as Vista?
About the taskbar, you found studies showing that people are less productive when using win7?
Have you been using it yourself and finding that you worked much better with vista?
599
Living Room / Re: Anybody else playing with Wave?
« Last post by jgpaiva on October 16, 2009, 05:51 AM »
I've just received my invite!

I'm with Deozzan, though.. Too litle people to talk to :)
600
JGPaiva's GridMove and Ahk Tools / Re: GridMove: Grids Here
« Last post by jgpaiva on October 14, 2009, 04:46 AM »
xiperware: Incredible work, that looks amazing!
I think I'll include that in the next release of GridMove, is that ok with you?
Pages: prev1 ... 19 20 21 22 23 [24] 25 26 27 28 29 ... 184next