![]() |
Re: New Developers/coders? Help!!?!
Quote:
To be honest, you've gotten a heck of a lot further than most people I know would have in this time. Pat yourself on the back for that. ;) |
Re: New Developers/coders? Help!!?!
Maybe it would be a good idea to start an own thread for Qt on Maemo, but I'll ask here. How can I controll the backlight with Qt? Also what audio formats should I prefer for playing simple notification sounds?
|
Re: New Developers/coders? Help!!?!
Quote:
Not a bad idea, would be a good idea once i'm done to do another sticky thread for getting started. Using venomrush's post as one example, another starting from an Ubuntu install from scratch :) Then once people have it up - pointing at either a python/QT/C thread to get people going :) |
Re: New Developers/coders? Help!!?!
Quote:
|
Re: New Developers/coders? Help!!?!
as my "hello world" is still not working, I created a new thread for this problem: http://talk.maemo.org/showthread.php?p=430601
(@noobmonkey: keep me posted if this example works for you...) |
Re: New Developers/coders? Help!!?!
Quote:
|
Re: New Developers/coders? Help!!?!
Right.... i've gone off in a whole different direction! Wasn't enjoying the nokia C++ walk-through.... So i've banished myself to the world of python....
Right..... I have the sexy maemo displaying like an n900. yay! I have used some example code to load a widget - as thats essentially what i want to try first (Probably a hard choice i know).... Got my .py and .desktop files :) - yayness! I've finished my first set of coding (Using Eric4 - again bad choice? not sure) - but was simple enough to type up some code! How do i compile my code and put it in my shiny scratchboxy maemo N900 :) Again, is that a stupidly hard question to ask to be explained?!!) |
Re: New Developers/coders? Help!!?!
Quote:
...and I just woke up, so that's about all I can tell you right now :P |
Re: New Developers/coders? Help!!?!
Quote:
On the other hand, just execute it. You need to see some results to keep the motivation alive... |
Re: New Developers/coders? Help!!?!
Quote:
One note about that, because it probably isn't obvious: if you just type "foo" into the shell, the shell will interpret that as an executable program, and try to run it. It will look for that program in one or more places, in a specific order. By default on most Linux systems, those places (in some order) are usually /bin, /sbin, /usr/bin, /usr/sbin. That's all great, but if you're just wanting to run an app from your home directory, it's not going to look there, and it will give you some error about not being able to find it. There are two ways to deal with this: 1) If you want to be lazy: cd into the directory containing the binary, and run it with "./foo" or "/path/to/foo". This qualifies the path to the binary (relative or absolute, respectively), so it doesn't need to search for it. 2) If you are using a non-standard path long-term, or if you aren't running it manually: export PATH=foo will set the PATH environment variable in your shell to "foo". (You don't want to do this - it's just an example.) What PATH normally contains is the paths listed previously, separated by colons. If you want to add your custom binary path to the list, use "export PATH=$PATH:/path/to/custom/bindir". $PATH evaluates to the current value of the variable. You should probably append your custom path to the end unless you have a reason not to (see comments about order). This change will last only for the current shell session, in the current shell. You can make it permanent (or rather, autorun on login) by putting that line in your shell's rc file (e.g. /home/$user/.bashrc, .ashrc (on the N900), etc.) |
| All times are GMT. The time now is 19:31. |
vBulletin® Version 3.8.8