Showing results 1 to 25 of 100 @ 0.11 seconds. Search: Posts Made By: Joorin
Forum: General 2011-10-03, 06:49
Replies: 73
Views: 22,930
Posted By Joorin
Re: Meego is dead for good

Another red herring. You like fish, apparently.

Was GTK or Qt available for all those platforms from the start? Of course not. It's a gradual process of porting, as always.

And if HTML5 doesn't...
Forum: General 2011-10-02, 11:29
Replies: 73
Views: 22,930
Posted By Joorin
Re: Meego is dead for good

You mix apples with oranges and finish it off by countering your own argument.



Here you argue for native code, C or C++, together with SDL, GTK or Qt, which I'm guessing is there as something...
Forum: General 2011-09-14, 05:03
Replies: 27
Views: 8,113
Posted By Joorin
Re: We're Being Attacked!

Eh, no? You have to wait 60 seconds between reports.



Why is this a problem?



Do elaborate since I really can't understand what you mean.
Forum: General 2011-09-12, 23:39
Replies: 27
Views: 8,113
Posted By Joorin
Re: We're Being Attacked!

Do your bit, report spam. I just did.

That's the only way to get specific posts and threads handled.
Forum: Development 2011-09-01, 20:48
Replies: 15
Views: 6,788
Posted By Joorin
Re: How to source ~/.profile through a script with effects lasting after the script has run?

#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>

extern char **environ;

int main() {
printf("environ[0]: %s\n", environ[0]);

printf("PATH: %s\n", getenv("PATH"));
Forum: Community 2011-09-01, 19:37
Replies: 321
Views: 80,458
Posted By Joorin
Re: Should MeeGo developers continue to publish info on this forum for maemo users (wrt Nokia device support)?

The only one in this thread that actively avoids the issue is you. javispedro (together with other MeeGo developers) and woody at least make efforts to try to explain.

Come on, share your thoughts...
Forum: Community 2011-09-01, 05:08
Replies: 321
Views: 80,458
Posted By Joorin
Re: Should MeeGo developers continue to publish info on this forum for maemo users (wrt Nokia device support)?

After reading this thread, I think I've gotten enough information to get a very high level overview of how the MeeGo development has changed over time.

But, how I view it has nothing to do with...
Forum: Community 2011-08-31, 19:53
Replies: 321
Views: 80,458
Posted By Joorin
Re: Should MeeGo developers continue to publish info on this forum for maemo users (wrt Nokia device support)?

Then flex your project leader muscles and try to be a little creative: What milestones should have been reached in the time that has been spent developing? Don't forget to make your list of...
Forum: Community 2011-08-30, 23:01
Replies: 321
Views: 80,458
Posted By Joorin
Re: Should MeeGo developers continue to publish info on this forum for maemo users (wrt Nokia device support)?

@javispedro

So, to sum this up, when you say "open", you mean reverse engineered or source released by, in this case, Nokia?

And when you talk about openness of a system/OS/whatnot not being "a...
Forum: Community 2011-08-30, 21:42
Replies: 321
Views: 80,458
Posted By Joorin
Re: Should MeeGo developers continue to publish info on this forum for maemo users (wrt Nokia device support)?

This is a schoolbook example of "The Internet Effect".

It all starts out pretty innocently with a poll about something that is totally unrelated to an old conflict/disagreement (since the poll was...
Forum: Applications 2011-08-14, 01:41
Replies: 7
Views: 3,192
Posted By Joorin
Re: From Quake 3 to simple ip displaying programs, help please.

And it's important to remember that all WiFi connections use "Power save" mode by default. This means that if no data goes from your device to the network for a while, the WiFi module will power down...
Forum: Development 2011-07-08, 17:09
Replies: 81
Views: 69,285
Posted By Joorin
Re: On-device development in C/C++?

Weird spelling of the file name. Especially as you're trying to compile hello.c later on.



It's spelled "include". The function you're looking for is "printf".

ESC leaves insertion mode. The...
Forum: General 2011-07-07, 23:25
Replies: 7
Views: 2,397
Posted By Joorin
Re: GPS bug

The earth's circumference is, roughly, 40000 km at the equator.

It makes a full turn in, roughly, 24 hours.

So, the earth moves at, roughly, 1700km/h at the equator.
Forum: Development 2011-06-17, 21:27
Replies: 2
Views: 1,368
Posted By Joorin
Re: program runtime fault

First of all: stop being lazy. Remove the #define lines and write the code. Copy paste is cheap. Especially if you need to debug your code.

If you want to see what all your macros are expanded to,...
Forum: Development 2011-04-27, 18:06
Replies: 7
Views: 5,322
Posted By Joorin
Re: ARGH! Java ME <-> Maemo Bluetooth problem, code not working, need help

Happy hacking.

But, using ports < 1024 is not needed. You can pick some other port, 1024 <= p < 65535, and then your process won't have to run as root.

This is recommended unless you give up...
Forum: Development 2011-04-26, 22:04
Replies: 7
Views: 5,322
Posted By Joorin
Re: ARGH! Java ME <-> Maemo Bluetooth problem, code not working, need help

Are you running the N900 script as root?

If not, how are you able to bind to a socket < 1024 which should be reserved for root processes?

My general hunch is that you need to make sure that...
Forum: Development 2011-04-05, 10:59
Replies: 31
Views: 7,860
Posted By Joorin
Re: Programming digital compass

I did a quick ask-around to people who know much more about radio and electronics than me and the suggestion was that this idea might generate some data but not in any stable way.

An interesting...
Forum: Development 2011-04-04, 13:37
Replies: 13
Views: 9,212
Posted By Joorin
Re: How to use enums

int i;
TYPE INT
Can contain a signed integer (size depending on platform)

int *i;
POINTER TO TYPE INT
Can contain a (memory) pointer to TYPE INT. Pointers are typically implementation...
Forum: Development 2011-04-04, 10:43
Replies: 13
Views: 9,212
Posted By Joorin
Re: How to use enums

So, I stripped away the Qt stuff and got this that compiles just fine:

enum Status
{
NORMAL = 0,
NEW = 1,
DELETED = 2
};

class Note
Forum: Development 2011-04-04, 10:29
Replies: 13
Views: 9,212
Posted By Joorin
Re: How to use enums

In this case it's part of the API but you wrote



which is what commented on.

So, I think that we agree on how it should be done, you just got it a little bit too general in your answer.
Forum: Development 2011-04-04, 10:11
Replies: 13
Views: 9,212
Posted By Joorin
Re: How to use enums

The compiler is telling you what's wrong. The compiler is your friend.

"without previous declaration" indicates that you need to move the declaration of your enum to a place where it has been seen...
Forum: Competitors 2011-03-01, 06:39
Replies: 209
Views: 86,619
Posted By Joorin
Re: Meego vs Android apps (C or Java?)

Typically, a (hard) page fault is triggered when a memory access is done to memory that's not mapped into the running process' memory space (virtual memory) or when a page of memory, that was...
Forum: Development 2011-02-22, 18:51
Replies: 1
Views: 1,145
Posted By Joorin
Re: Porting a Source Package from Debian to Maemo

If you want to follow the recommended road: install scratchbox on your Linux machine and compile your package there.

For instructions on doing this: search this forum and the wiki.
Forum: Development 2011-02-19, 10:47
Replies: 2
Views: 1,830
Posted By Joorin
Re: openGL ES problem!

As always when you have a problem compiling something:

Supply how you compiled your code. This includes flags and which compiler you used.

You should also include a minimal example where you...
Forum: Competitors 2011-02-12, 23:57
Replies: 209
Views: 86,619
Posted By Joorin
Re: Meego vs Android apps (C or Java?)

Huh? If there is something it isn't, it's syntactical sugar.

By declaring an unsafe context/scope you bypass the strict typing checks (not totally, but almost) and if you use fixed pointers you...
Showing results 1 to 25 of 100



 
Forum Jump

All times are GMT. The time now is 18:44.