I've got too much to do in too little time. Can you recommend a freelancing / outsourcing service ? Also how do you manage the source code, are there any services like Google code but for closed-source projects ?
I gave to Google Guice the responsability of wiring my objects. But, How can I test if the bindings are working well.
For example, suppose we have a class A which has a dependence B. How can I test than B is injected correctly.
class A {
private B b;
public A() {}
@Inject
public void setB(B b) {
this.b = b
}
}
Notice A hasn't got a getB() method and I want to assert that A.b isn't null.
I have some code grabbing a JSON array from my server and initially storing it as a string. This all works fine until I try and deserialize it using google's gson fromJson method. LogCat spits out the error:
04-08 17:46:35.163: ERROR/dalvikvm(401): Can't shrink stack: curFrame is in reserved area (0x41049000 0x410491c4)
My code that causes the error is:
String[] results = gson.fromJson(returnString, String[].class);
Can anyone shed some light on what I am doing wrong?
Cheers,
Sam
I'm following this tutorial
http://scie.nti.st/2007/11/14/hosting-git-repositories-the-easy-and-secure-way
after this step
git commit -a -m "Allow jdoe write access to free_monkey"
git push
i always failed, with this error
fatal: exec hooks/post-update failed.
this is from my /home/git/repositories/gitosis-admin/hooks/post-update
-rwxr-xr-x 1 git git 83 Mar 10 11:49 post-update
so i change gitosis.conf manually from server for adding new repositories, and repos can work fine.
i've google what might cause it, i want to admin gitosis in proper way
Please Help
Regards,
REV
Hello,
is there a way (through javascript/jquery/css) to hide the scrollbar in android's web browser?
Can't seem to find any valid info online and things that work for Google Chrome (webkit engine, as well) don't seem to work for the Android's browser.
Thanks bunches
Hi All,
I want to write server/client chat protocol using python-2.5 .
I want to make protocol similar to yahoo messenger or google-talk.
Please suggest me how to start.
Thanks
Reetesh Nigam
Hey,
I'm using the Google CDN to load my JQuery file. However, I'd like to have my master page use a separate theme to my content page. Is this possible when using the CDN? I'm using ASP.NET.
Thanks for any help
So there is a Usenet web interface available, which comes from Google...
However I was wondering are there any alternatives?
So that I can login in usenet on the web?
Is there a way to make a web robot like websiteoutlook.com does? I need something that searches the internet for URLs only...I don't need links, descriptions, etc.
What is the best way to do this without getting too technical? I guess it could even be a cronjob that runs a PHP script grabbing URLs from Google, or is there a better way?
A simple example or a link to more information would be much appreciated.
I was wondering if there were a way to extract information from an objective-c app, static or dynamic library and/or framework?
Information such as an array of class names without instantiating or running the target.
I've checked google and the apple developer documentation and haven't found anything.
Frank
One of our customers has asked if we can interface with a serial magnetic card reader/encoder from a old EPOS system. The device has no make only the MW-3170 model number.
Does anybody know how I can communicate with the device? I am currently looking for a programming manual on Google, without much success.
As a pet project, I am trying to get familiar with NodeJS and CoffeeScript, and am finding it hard to get the ball rolling.
I've found plenty of examples of single-file super-simple apps like in CoffeeScript's examples folder, however, none of those really show what a full application would look like. I've also scrounged Google to no avail.
Do you have any examples of medium-sized, multi-file CoffeeScript/NodeJS apps I could learn from?
Is there any other way to call openOptionsMenu after activity is displayed without using something like this:
new Handler().postDelayed(new Runnable() {
public void run() {
openOptionsMenu();
}
}, 1000);
Reference:
http://groups.google.com/group/android-beginners/browse_frm/thread/b10a8ea840c07725/1ce48bb147a3ed1a?#1ce48bb147a3ed1a
I'm starting a new app, and I'd like to know how to require a password to open it. I've been researching on Google and the Apple Dev Forums and haven't found anything.
I was considering a UIActionSheet, but am unsure how to go about doing so. I'm going to keep trying though. Any suggestions here are greatly appreciated.
Thanks!
Thomas
The documentation on the google code project page is pretty thin, I'm wondering if there is any in depth documentation on using expect4j, code examples would be helpful as well.
I am unable to get an XMLHttpRequest object to work correctly in a Dashboard widget I am writing. I've isolated it to a trivial example not working in the global scope of the main.js file:
xhr = new XMLHttpRequest;
xhr.open( 'GET', "http://google.com", false );
xhr.send('');
When the last line is executed I get the error "ABORT_ERR: XMLHttpRequest Exception 102" (this is in the Dashcode debugger).
Does anyone have any idea what could be wrong here?
I'm trying to calculate how WIDE to make my button, based on the text that it will contain, and when I try to google for how to calcuate something as simplistic as the WIDTH OF SOME TEXT, I go cross-eyed just trying to wade through apparently nonsensical esoteric counter-intuitive voodoo. Can anyone out there help simplify for me how I would write a function like this:
public function HowWideWouldThisTextBeIfItWereInThisButton(Text:String,Container:Button):int {
...
}
Thanks in advance.
I am wondering if one could use the C# Express version to do Compact Framework development. I've done some Google searches but I can't find a defiant answer. I have installed C# Express but there isn't a project template to select for "smart device" development. I will continue my search but I was hoping that the stackoverflow community may be able to assist in finding this information.
How can create simple PHP Search Engine Submission tool, which allows that to submit the site URL to multiple search engines such as "http://www.google.com/addurl?q=www.yoursite.com&hl=&dqq=" and also "http://www.bing.com/webmaster/SubmitSitePage.aspx" or any other other search engines?
Does anyone have an algorithm for drawing an arrow in the middle of a given line. I have searched for google but haven't found any good implementation.
P.S. I really don't mind the language, but it would be great if it was Java, since it is the language I am using for this.
Thanks in advance.
Hello...
When I browse internet,basic HTML gets loaded on my computer.
For eg.- for orkut or facebook login,only the text box appears,and when inputs are provided,and redirection is done,it says "error on page".
Even on google search,basic HTML gets loaded on my computer..
I tried installing new Internet version i.e., IE8,but the same problem.
Kildly provide a good solution to this problem.
I am trying to get my jQuery functions to work on IE8. I am loading the library from google's servers (http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js). The $(function(){}) is never called. Instead, I get an error "Object expected". I opened the developer and ran "typeof $" in the console, and it came up as "undefined".
I have tried going to other sites that I know use jQuery (jquery.com), and those all work, is there something I might be missing here?
Hello,
another issue where I seem to have found an solution for ObjC but not MonoTouch.
I want a NSUrl from an URL (as string).
The string may contain whitespace and backslashes.
Why is NSUrl returning null for such string, even though these are valid urls in a browser?
For example:
NSUrl foo = NSUrl.FromString(@"http://google.com/search?\query");
foo == null
Any suggestions?
This article was Part 1 of a two part article.
I cannot find Part 2, "Mastering JList Programming". Google cannot find it.
Did it get lost in the Oracle-Sun move, or was it never published?