If you, like me, just want to learn how to develop applications for the iPhone (and with luck even create one) but don't want to spend 100$ of the apple program for developers, There are very clear instructions in 246nt.com (http://www.246tnt.com/iPhone/), maintained by Sylvain Munaut, about how to use XCode with a Pwned iPhone and be able to make Build&Go and also debug the program in the terminal (this work from firware 2.0.0 to 2.0.2, as far as I know).
The process is easy to follow, but you need SSH access to the iPhone and also hack the iPhone installer and the SpringBoard (also included in the instructions).
There are very clever people out there.
Update:
A new page: http://hackint0sh.org/forum/showpost.php?p=342736&postcount=53, specially the trick in the Info.plist is needed to don't have problem launching the application, avoiding the message "The application XXXX cannot be opened".
sábado 13 de septiembre de 2008
jueves 11 de septiembre de 2008
Missing functionality in Nozbe
I use this short perl program to have all the projects and tasks in Nozbe listed in one document, this perl program generates a .txt and a .rtf document... So, you can review your tasks at a glance:
You can see the Nozbe API here and your key here in the extra section under the API key label (to replace "here_your_key" in the code).
It would be fantastic to have this functionality directly available in the web interface.
Cheers.
Updated: Now done tasks are not included.
$|=1;
use strict;
use LWP::Simple;
use JSON;
use RTFUtil;
my $content = get("http://www.nozbe.com/api/projects/key-here_your_key");
print "$content\n";
my $json = new JSON;
my $projects = $json->decode($content);
print "\n ---\n";
print "".@$projects."\n";
open FILE, ">tareas.txt" or die $!;
rtf_create("tareas.rtf");
my $num=1;
foreach my $project (@$projects) {
print $$project{name}."\n";
print FILE " == ".$$project{"name"}." (".$$project{count}.") ==\n";
rtf_print_bold(" == ".$$project{"name"}." (".$$project{count}.") ==");
if($$project{count}==0){next;}
$content = get("http://www.nozbe.com/api/actions/what-project/id-".$$project{"id"}."/key-here_your_key");
my $tasks = $json->decode($content);
foreach my $task (@$tasks) {
if($$task{done}==0){
print FILE $num.". ".$$task{name}."\n";
rtf_print($num++.". ".$$task{name});
}
}
print FILE "\n";
rtf_print();
}
rtf_close();
You can see the Nozbe API here and your key here in the extra section under the API key label (to replace "here_your_key" in the code).
It would be fantastic to have this functionality directly available in the web interface.
Cheers.
Updated: Now done tasks are not included.
Suscribirse a:
Entradas (Atom)