Active Topics

 

Showing results 1 to 25 of 88 @ 0.07 seconds. Search: Posts Made By: Captwheeto
Forum: Nokia N9 / N950 2011-12-02, 12:35
Replies: 31
Views: 21,613
Posted By Captwheeto
Re: Beware: Air UI bricked my N9

I wish people would stop over hyping the term 'bricking'. If you can reflash and get the device to work again then certainly is not 'bricked'. This term means when you're device it is so badly...
Forum: MeeGo / Harmattan 2011-11-15, 00:19
Replies: 22
Views: 25,645
Posted By Captwheeto
Re: [Announce] iPython for MeeGo Harmattan

I don't own an N9 but this is awesome! I'm not liking the looks of lambda expressions in python though ;)
Forum: Maemo 5 / Fremantle 2011-11-11, 19:42
Replies: 165
Views: 58,996
Posted By Captwheeto
Forum: Applications 2011-10-05, 00:34
Replies: 23
Views: 6,674
Posted By Captwheeto
Re: what is the x terminal command that opens an application?

this is what `disown` is for. If you run a command like "firefox & disown" it won't close firefox with the parent terminal. Or mid process you can hit ctrl Z and then type disown.

Op, if you just...
Forum: MeeGo / Harmattan 2011-09-21, 09:09
Replies: 32
Views: 17,202
Posted By Captwheeto
Re: Reasons to move from Maemo/N900 to MeeGo?

I've never heard someone call themselves a script kiddy so hard O:
Forum: Applications 2011-09-06, 15:11
Replies: 10
Views: 2,949
Posted By Captwheeto
Re: Is it possible to make a flash file into an app ?

You're creating a shortcut that opens microb on the page that you want.

Look at the .desktop file that lktwo mentioned and make one like that - however substituting the URL and icon path for ones...
Forum: Applications 2011-08-18, 08:51
Replies: 13
Views: 4,425
Posted By Captwheeto
Re: [early development] tmoread, a tmo reader application

My bad. The pyquery test code contains methods for searching The Onion. Here I was thinking you were cool ;)

Thanks for this though :D
Forum: Community 2011-08-04, 16:04
Replies: 17
Views: 5,930
Posted By Captwheeto
Re: The future of Maemo.org and what can be suggested to get back to Maemo.

Like that time all the good N7/8*0 developers and people moved on?

Times change. We can't force people to stay, if you think this community is in decadence then there is very little people can do...
Forum: Maemo 5 / Fremantle 2011-07-21, 09:30
Replies: 4,534
Views: 2,288,412
Posted By Captwheeto
Re: Show off your Maemo 5 screenshots

'Android-esque' means Android like. He's talking about the posts above with the Android launcher.

I think you want this (http://talk.maemo.org/showthread.php?t=75014) thread
Forum: Applications 2011-07-19, 12:02
Replies: 336
Views: 126,071
Posted By Captwheeto
Re: [Announce] Enhanced lockscreen

I misspelled Mohammad ;)

touch ~user/.config/MohammadAG/enhanced-lockscreen.conf
Forum: Applications 2011-07-19, 11:42
Replies: 336
Views: 126,071
Posted By Captwheeto
Re: [Announce] Enhanced lockscreen

mkdir ~user/.config/MohammadAG
touch ~user/.config/MohammadAG/enhanced-lockscreen.conf

then edit it in whatever text editor
Forum: Applications 2011-07-19, 09:37
Replies: 336
Views: 126,071
Posted By Captwheeto
Re: [Announce] Enhanced lockscreen

If you ever find yourself in nano again remember this

Ctrl + x = Exit what you're working and be prompted to save
Ctrl + o = save without exiting

then you'll be on your way to laughing at...
Forum: Applications 2011-07-13, 10:33
Replies: 15
Views: 4,745
Posted By Captwheeto
Re: [ANNOUNCE] MaemoFlash - Browser that support Adobe Flash player 10

Welcome back (http://talk.maemo.org/profile.php?do=addlist&userlist=ignore&u=52918)
Forum: Alternatives 2011-07-04, 10:49
Replies: 192
Views: 101,737
Posted By Captwheeto
Re: [Announce] Porting Symbian^3

He's trying super hard to make it into everyone's ignore list.
Forum: Nokia N9 / N950 2011-07-01, 14:22
Replies: 50
Views: 28,138
Posted By Captwheeto
Re: N950 in the Transformers 3!!!

This is all I got from your post.
Forum: Alternatives 2011-06-30, 15:59
Replies: 7
Views: 4,247
Posted By Captwheeto
Re: nitdroid taking forever to sign in

http://i34.servimg.com/u/f34/16/04/68/59/he_mad10.jpg
Forum: Applications 2011-06-30, 13:04
Replies: 9
Views: 4,635
Posted By Captwheeto
Re: [ Script ] Discover application disk usage

And you're a d-bag that steals code that wrecks users devices and plagues them for money. Please don't act any more aloof about being a blight.
Forum: MeeGo / Harmattan 2011-06-23, 14:54
Replies: 220
Views: 76,678
Posted By Captwheeto
Re: N900 MeeGo CE Summer Edition Released

Oh god. Are you serious? I mean... It's a ten minute fix. You just flash it again D: This advice is repeated over and over on the forums. Please don't tell people to die when you're unable to fix the...
Forum: Nokia N900 2011-06-20, 11:50
Replies: 14
Views: 9,131
Posted By Captwheeto
Re: replacing ram in n900

No. But good luck if you're going to attempt it anyway!
Forum: Nokia N900 2011-06-17, 10:48
Replies: 33
Views: 9,055
Posted By Captwheeto
Re: [solved](.cpp)"Hello world" in n900 (getting error) plz guide me.

Yeah I said this earlier. You're writing just plain C in a very procedural manner, I think you need to look for a better C++ resource, one that is aimed at linux or uses standard headers, operators...
Forum: Nokia N900 2011-06-16, 09:24
Replies: 33
Views: 9,055
Posted By Captwheeto
Re: (.cpp)"Hello world" in n900 (getting error) plz guide me.

It looks like you're writing just plain C anyway.

I've just written my first ever bit of C++ code so don't laugh ;)

#include <iostream>
using namespace std;

main() {
cout << "hello,...
Forum: Nokia N900 2011-06-15, 16:27
Replies: 33
Views: 9,055
Posted By Captwheeto
Re: (.cpp)"Hello world" in n900 (getting error) plz guide me.

I've never touched C++ but I have done a little C.
Is there any reason why you're using them headers?
You should only need stdio, like so


#include <stdio.h>

int main(void)
{
...
Forum: Maemo 5 / Fremantle 2011-06-15, 13:51
Replies: 49
Views: 11,802
Posted By Captwheeto
Re: Maemo 5 as a vulnerability / "hacking" victim

Turn off SSH if you're not going to use it. Also traffic is being sniffed more than a school girl in Japan. Don't log on to anything, general browsing should be fine as long as nobody does a redirect...
Forum: Nokia N900 2011-06-02, 14:59
Replies: 12
Views: 4,975
Posted By Captwheeto
Re: Wake up all developers! (a new fact about cpu)

:S Do you think software just appeared magically?

We've been using the SDK since it was released.

EDIT:
I always pictured Abill_UK to be a grumpy old guy called Bill in England somewhere. It's...
Forum: Maemo 5 / Fremantle 2011-06-01, 13:24
Replies: 57
Views: 20,036
Posted By Captwheeto
Re: Hacking with Maemo to cut users off network

You couldn't even change your own password



LOL.
Showing results 1 to 25 of 88



 
Forum Jump

All times are GMT. The time now is 01:04.