topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Wednesday April 8, 2026, 10:54 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 ... 632 633 634 635 636 [637] 638 639 640 641 642 ... 1515next
15901
Mouser's Zone / Apologies for my lack of updates lately (Aug 1, 2010)
« Last post by mouser on August 01, 2010, 10:24 AM »
Just wanted to humbly apologize to DC for my lack of software updates lately, and promise to get back on track soon.

I've been trying to finish up a web-based application that started small but is proving full of small puzzles to solve.  I hope to open it up to beta this month hope to get lots of feedback and suggestions from DC.

So i'll probably be a little slow with my DC updates in august, but after that i plan on some serious DC app focus, including releasing a couple more big DC applications.
15902
can you see if its only -capturedesktop that is yielding white captures, what about -capturescreeen
15903
i wonder if this has to do with the scheduled task running under lesser permissions than needed.  is there an way through scheduler to run minicap task as an administrator?
15904
I try to avoid thinking about corporations and business models as much as possible, but this morning i had a thought about something that's been troubling me for a while and i thought i would try to post about it.

It has to do with what seems to me like a particularly ironic change that's happening regarding who is benefiting from Open Sourcing their software.

Note that I'm not talking about who benefits from *using* Open Source software -- I'm talking about which developers benefit from releasing their software as Open Source.



It seems to me that not too many years ago, large companies focused on profit were loathe to release their software products as open source.  Intellectual Property was their competitive advantage, and having the unique product to offer was key.  And small independent developers focused mainly on the creation of some useful tool could release their software open source fairly certain that, while they might not be making any money from their work, it was at least very unlikely that anyone else would be making money from it either.



But it seems to me that with the shift to web-based services, we are starting to see a troubling inversion of this pattern, where the bigger and more powerful the corporation, the easier it is for them to benefit from releasing code as Open Source, while for small developers, releasing software as Open Source seems increasingly likely to result in it being used by an independent corporation to make money.

I think the reason for this shift is that with the move to web services -- it's no longer the intellectual property that is valuable -- it's a combination of computational resources needed to host a large and busy web service, and the resources and money available to market and support it.

A giant corporation like google can afford to open source most of its software because it's not the software that's valuable any more -- it's the company infrastructure that enables them to serve so many users, and the cross-marketing resources they can throw at the userbase any time it looks like they might be losing market share.  Open sourcing their software is merely a way to get more free publicity and free bug fixing for their code.

For web services, making the intellectual property of the source code available freely no longer does harm to these big corporations because it's not the important thing any more -- having the money to pay for the marketing to maintain a large user base and maintain a farm of fast servers to keep the service fast is what matters, and those are things that small upstart competitors rarely can compete with.

Meanwhile with the focus on online web services, for a indie coders without the money to compete with a large corporation, the paths forward are daunting.  If you create something new and innovative, unlike the case with desktop software, you have to know that you won't be able to scale up the service to handle a large volume of users.  This means that your likely best chance of surviving is to sell out to a large corporation who can.  And perhaps it's only by preserving the exclusive rights to the software they've developed and the intellectual ideas for it that they have a chance of going down this path.



So i'm not sure these ideas are fully fleshed out, i'm just thinking aloud here -- but i'm troubled by how much more difficult i see things getting for small independent developers in this new world where online web services are king.

One sliver of hope may be the in small developers giving up some control and accepting a 50/50 partnership with these large corporate web service back-ends and cloud application services; it may mean the end of purely-independent small developers, but it may blunt the worst of my fears, and mean that small indie developers can operate on almost equal footing with large corporate infrastructures, as long as they are willing to split revenue, which isn't a terrible thing.
15905
no recent work has been done on scrolling capture yet i'm afraid.  :(
15906
Adventures of Baby Cody / Re: Baby Cody In Belleville, NJ
« Last post by mouser on July 28, 2010, 09:18 PM »
FREE BABY CODY!! Josh is holding him hostage!  :mad:
15907
LaunchBar Commander / Re: multiple docks - depending on active program
« Last post by mouser on July 28, 2010, 09:17 PM »
i agree completely, and it is on my todo list; furthermore you have given me an additional idea, which would be to make a way that scripts can command LBC to switch submenus displayed on the bar.

one workaround you might like for now to do what you want is to use lbc to show different launchbar menus in "pop-up-under-cursor" mode when you hit certain hotkeys.

you might also note that you can have LBC menus display the contents of a folder that match a certain file extension, which might be suitable for showing your scripts more easily than manually adding them to a menu.
15908
Are you looking to get analytics from the page its being embedded on?  Are you interacting with the host page in any way?  Does an iframe version work the same as the more complex JS version?

i'm actually pretty proud of how i coded it -- i created code to render the results which is shared between both the server script and the local script.  the server code is actually driven by a drupal cms, but the rendering code has no drupal specific stuff.  part of why i did that is so that the local widget script can interact with the data in various ways as well (ie. pagination, etc.) -- it's not just grabbing and caching a simple html contents page.

if the user wants to use iframe version they just use that (and i can even have a lightweight non-drupal server script create the data from the request).

if the user wants to use a non-iframe local widget, then the rendering code is invoked by a local script on the machine serving up the page, using a kind of proxy cache that only periodically needs to get new data from the remote server.  i make use of several mechanisms to keep bandwidth minimum until content actually changes (i use Conditional Get and keep track of when data has changed, etc.).

part of why i've gone to so much trouble to avoid an iframe solution is that this is meant to be something that could theoretically be on huge numbers of pages serving of a huge amount of bandwidth constantly, and using an iframe solution would mean that my server would have to fulfill all of those requests live.  the way i have it now it's almost no bandwidth/cpu at all on the main remote server -- just the occasional query to ask whether the cached content has changed (and the answer is almost always no).

the cache proxy system also downloads and replicates image files automatically since some of the widget content refers to images on the main server, which again i don't want to have to bear the burden of serving up.

one major advantage of this over iframes is that the widget will work fine if the main server goes does completely.. it simply serves up the last good cached version of the data.

ps.
there is an existing php script that does a fair amount of what my code does and is pretty generic; it doesn't do conditional get but it's otherwise pretty good: http://www.troywolf....cles/php/class_http/  you'll also find that some rss widget scripts do a similar thing regarding caching, which let's them solve the "same origin policy" security lockdown on webpage javascript (which is a pain in the ass and clearly not stopping anyone from doing this, just making it harder).
15909
truth be told i've already implemented my system which supports both iframe and a local caching/proxy method.  the local caching proxy is important for me if for no other reason than it can relieve bandwidth on the main central server.

my dilemma is mainly that i started out thinking how much i hated iframes and how i couldn't wait to write this alternative method, but after doing it and all the work involved, i find myself having a harder time than i thought justifying the benefits to someone of being able to avoid using the iFrame method.
15910
I've been working on a web application project (in collaboration with dc member JavaJones) recently that i hope to unveil for DC in the next month or two.

One key aspect of it is that people can embed content from the web service on their own web pages (e.g. Widgets).

If you look around at how "foreign" content is embedded on web pages, there are really 2 main ways, one is using an iframe to just load a page from another site into an area on the current page.  Google Ads are a good example of this.

The other way is to have a local script which acts as a kind of "proxy" and serves up the scraped data from the remote site.  There are RSS reader widgets that work like this.

I have always disliked iFrames, for one reason because the content can't be easily resized on your page.

But i'm starting to ask myself how common it is to have resizable sidebars.. and if the container isn't going to change size, maybe it doesn't matter so much.

So i'm wondering if people have other experiences embedding content on their pages using a widget like system, and if they have positive or negative views about using iFrames vs. the alternative methods.

Thoughts?
15911
This wonderful creation has now reach final status.. I don't know how many rooms there are, but there are a lot.
15912
Developer's Corner / Re: Model driven development
« Last post by mouser on July 28, 2010, 02:51 PM »
my quick uninformed general impression is that these kinds of things become useful when you are working in a large team.  for a single developer or a very small close team of just a few people, they are more trouble than they are worth.
15913
This is a nice blog where the author writes on psychological issues relating to irrational thinking..

You Are Not So Smart is a blog devoted to self delusion and irrational thinking.  There’s a lot of research out there suggesting you have no idea why you act or think the way you do.
It feels awful to accept such things, so you create narratives to explain your own feelings and behavior...The author, David McRaney, is not a psychologist or an economist. He is a journalist writing about what those super-smart and hard-working people are discovering on these topics and doing his best to translate it for the rest of us.



from http://lifehacker.co...chases-and-estimates
15914
Site/Forum Features / Re: my posts
« Last post by mouser on July 27, 2010, 06:28 PM »
thats a good idea; though i note you could just add a bookmark to that page in your browser if you find yourself going to it frequently.
15915
General Software Discussion / Re: How to [partially] blur screenshots?
« Last post by mouser on July 27, 2010, 03:16 PM »
i could add a mode that would randomize the contents of the block before blurring, which would probably make recovering the text near impossible, while still making the blurred region look a bit like the original, which is of course one goal of using blurring.
15916
Screenshot Captor / Re: How to auto-move folder without subdirectories?
« Last post by mouser on July 27, 2010, 02:52 PM »
there is no option for that but i could add it.
15917
Screenshot Captor / Re: How to auto-move folder without subdirectories?
« Last post by mouser on July 27, 2010, 12:27 PM »
In the "Saving and Loading Files" options tab you can adjust it:

Screenshot - 7_27_2010 , 12_26_28 PM.png
15918
General Software Discussion / Re: How to [partially] blur screenshots?
« Last post by mouser on July 27, 2010, 12:23 PM »
The more you blur the harder it's going to be to recover..and the blurring is not perfectly invertible, so it's not like they are going to be able to recover the exact image.

However, if you are blurring text (like a serial number for example) then your attacker is not interested in a perfect reconstruction of the original image, they are really just interested in finding the most likely original text string that could be in the source image before the blurring, which is possible.

I don't know what kind of tools there are for this -- i don't think you are going to be able to put the image into some utility and click "go" and have the text recovered -- i think we're talking about a more specialized operation here that would require some expertise.  i'd actually be really interested in hearing from someone who tried to do it.  Obviously you can imagine that in the world of espionage and counter-espionage there has been research on this kind of stuff.
15919
kartal, how about spending the next week making a game with haxe for this: https://www.donation...ndex.php?topic=22922
15920
Developer's Corner / Re: JayIsGames.Com Casual Gameplay Design Competition #8
« Last post by mouser on July 26, 2010, 04:48 PM »
Only 1 week left for the contest.. any flash or javascript coders want to make a last minute attempt at this?  I stand ready to discuss ideas test, etc.
http://jayisgames.co.../07/cgdc8_update.php
15921
Living Room / Re: Sleep/hibernate problems in Windows 7
« Last post by mouser on July 26, 2010, 01:19 PM »
i've had this problem on an older desktop, and it's very frustrating.

but there are lots of tricks i know for making it work, including some registry settings, etc.

i don't have any advice for you except: whatever you do, do not give up and settle for this not working.  having a laptop that won't go into sleep mode is absolutely unacceptable and would be grounds for returning it.
15922
Find And Run Robot / Re: Exception Error (EAccessViolation)
« Last post by mouser on July 26, 2010, 10:06 AM »
can you try to experiment a little more and see if there is some pattern to what you type that might cause it.. i wonder if there is some item that farr is trying to display that is causing this problem.  i might send you a special debug version to try if you can get this to reliably occur.
15923
General Software Discussion / Re: How to [partially] blur screenshots?
« Last post by mouser on July 25, 2010, 11:58 AM »
there is a different option in screenshot captor for very high security needs; its under SpecialFx->"Secure Black Interlace"
15924
Finished Programs / Re: Finished Coding Snack: Organize Text
« Last post by mouser on July 24, 2010, 08:10 PM »
nice work ebs and skwire  :up:
15925
General Software Discussion / MOVED: organize text
« Last post by mouser on July 24, 2010, 08:09 PM »
Pages: prev1 ... 632 633 634 635 636 [637] 638 639 640 641 642 ... 1515next