0
votes
1answer
150 views

What's a good example of a JS client to a REST interface or a good tutorial on the topic? [closed]

I've done some redesign of my application's HTTP interface and want to move my client from Flash/Actionscript to Javascript and HTML 5. I've done some minor JS programming before and I think I get the ...
1
vote
0answers
249 views

Python Flask - Problems with Minitwit on Internet Explorer 9

I have tested Minitwit. I have just changed DATABASE = '/tmp/minitwit.db' to DATABASE = 'minitwit.db' in order to make it work (no tmp folder existed). It works fine on Firefox. Now it does not ...
1
vote
2answers
4k views

Android Foreground Service Help

I'm working on an application that requires I run a long process in the foreground (mostly downloading a few large files), however, after much searching, and googling I have been unable to turn up a ...
2
votes
1answer
6k views

ZXing objective c example

where i can found some good examples / tutorials about the usage ZXing (reader Qrcode) (http://code.google.com/p/zxing/) library on iphone?
3
votes
2answers
2k views

Ninject Interception Extension (AOP) - Good working example/tutorial?

I've been having a very difficult time finding an easy to follow tutorial or example of using the interception extension with Ninject, or ideally, a working example. I've tried the below tutorial, ...
1
vote
2answers
2k views

Does anyone know of a simple “You are here” Android Maps tutorial?

I have been going through loads and loads of tutorials found through Google, loads of sample code, loads of ideas and I can't get them to work. There's something I'm not doing right every single time, ...
0
votes
3answers
466 views

Example program with some simple functions in C++

I am new to C++ and I would like to know how can I do a simple program where some functions are available. For example: mypg.exe function1 string1 mypg.exe function1 textfile1 Takes the text from ...
2
votes
1answer
2k views

Win32 scrolling examples

Could anyone point me to (or provide?) some nice, clear examples of how to implement scrolling in Win32? Google brings up a lot of stuff, obviously, but most examples seem either too simple or too ...
2
votes
1answer
1k views

How big can I make an Android application's canvas in terms of pixels?

I've determined an estimate of the size of my Android emulator's screen in pixels, although I think its resolution can be changed to other numbers. Quite frankly though that doesn't eliminate the ...
7
votes
2answers
3k views

Writing/Using C++ Libraries

I am looking for basic examples/tutorials on: How to write/compile libraries in C++ (.so files for Linux, .dll files for Windows). How to import and use those libraries in other code.