Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Eeems

Pages: 1 ... 98 99 [100] 101 102 ... 370
1486
I'm not planning on dropping any of my active projects. I'll get around to them. I just don't have the time I use to have.

1487
I've poked the code with a stick a little, but since I got my phone I haven't touched it all that much. I've been too busy setting it up :P
I'm also going to be busy soon with my new computer, so who knows how long till I'll have progress on anything :3

1488
KnightOS / Re: KnightOS - A 3rd Party Operating System
« on: November 13, 2011, 11:51:03 pm »
Also any idea why Sir's second account was never deleted? Is that because there are possible future plans to unban him? ???
No, we just never got around deleting him because rules rewrite and stuff. (As in, silly excuse not to delete him.) But we won't unban him and we never had plans to.
Aah ok, any idea if that's being done soon? Also does the rules rewrite includes French and other languages?
The rules re-write will include translations to other languages as soon as possible. We just have to finish the re-write :P

1489
Miscellaneous / Re: Who do you know personally?
« on: November 13, 2011, 06:07:10 am »
I haven't met anybody IRL, but I have gotten to know a bunch of the community pretty well. I use to regularly game with a few of them, and skype.

1490
Miscellaneous / Re: Computer Specs
« on: November 13, 2011, 01:25:21 am »
Possibly, but only when the hardware gets a little more out of date.
I've already bought that computer ( and with it's specs $779.95 CDN is a steal of a deal ), so very soon I'll have a more modern computer then my current Compaq V2000.
The computer I'm getting has only 6GB of ram, but it has two ram slots, so that means it's a 2GB card and a 4GB card so it would be easy to up the amount of ram to 8GB by replacing the 2GB with a 4GB card.
10 hours of battery and unlimited bandwidth on my phone means as long as I'm in the city ( or any other WIND Zone ) I can get on the net :) I just tether to my phone :)
This computer is going to be epic, I can't wait for them to ship it :P ( still waiting for the weekend to be over so they actually ship it ).

1491
News / Re: Omnimaga on Google+
« on: November 12, 2011, 05:17:43 pm »
Well, you can link Twitter and Facebook, and so you only have to post it on Twitter and then on G+!

And being on G+ is great, since a lot of people are using it now.
we have it set up so we don't even have to post. When someone posts a news article a RSS feed reader app (I think) posts to Facebook, which is linked to twitter. Twitter is also linked to Facebook. We just need a way to link all three accounts together so its all automatic.

1492
Miscellaneous / Re: What Would You do if You Lost Your Calc?
« on: November 10, 2011, 10:13:49 pm »
I would be upset, look for it some more and if I couldn't find it, wait for my next paycheck ( just spent almost allot this one)  and buy a new calc ( no more extra ram D: )

1494
SAXParser in a very round-about way eventually uses a URLConnection, so you might as well create your own and set its timeout.
Code: [Select]
public RSS(String uri) {
try {
SAXParser parser = SAXParserFactory.newInstance().newSAXParser();
URL url = new URL(uri);
URLConnection conn = url.openConnection();
conn.setConnectTimeout(0);
conn.setReadTimeout(0);
parser.parse(conn.getInputStream(), new RSSHandler());
} catch (SAXException ex) {
ex.printStackTrace();
} catch (MalformedURLException ex) {
ex.printStackTrace();
} catch (IOException ex) {
ex.printStackTrace();
} catch (ParserConfigurationException ex) {
ex.printStackTrace();
}
}
Alright thanks, I'll try that when I get home tomorrow morning from work ( leaving now )

1495
Alright, I got it to work now, I do have an issue though, but it has nothing to do with the code really.
The first time you try to access Omnimaga from anywhere it take a really long time to access, apparently longer then SAXParser's timeout is so it's impossible to connect to the Omnimaga RSS. I can't seem to figure out a way to extend the timeout of SAXParser so if anybody knows how that would be helpful. I've also contacted Netham45 about figuring out why this is happening.

( Yes I know this is a doublepost :P )

1496
News / Re: Omnimaga on Google+
« on: November 10, 2011, 06:59:04 pm »
Actually, Eeems and me created the same page at the same time (huge coincidence?), then I repurposed mine to be something else, while we figure out how to make me admin of Eeems'. We didn't found any way. It's kinda limited, but we created the page shortly after Google released them. Guess we have to wait for more features.
Same time exactly? :P

Anyway, this sounds interesting. I'm too young apparently for Google + and I actually don't need it. I could live without FB so far. And twitter still seems fine for me. Hope the people who are on it do follow it though. :)
I beat him by a matter of seconds :P


I really need to figure out how to link G+ to twitter/fb so I don't have to manually post the new news articles on it ( Which I will never do lol )

1497
It appears, according to the error, that you need to declare that class as an activity in your AndroidManifest.xml file. Also, does the ShowDescription class extend Activity?
Oh lol, I just copied over the source files, didn't think about AndroidManifest.xml
ShowDescrition should extend it I think, check out the zip.

1498
Graviter / Re: Graviter
« on: November 10, 2011, 09:33:02 am »
Looking epic as always :)

1499
Computer Projects and Ideas / Re: SMF bot detection mod
« on: November 09, 2011, 11:11:44 pm »
I've also been wondering if we should turn on captcha. Some people have issues with captcha that makes it an issue to use though.

1500
Computer Projects and Ideas / Re: SMF bot detection mod
« on: November 09, 2011, 10:24:18 am »
Sounds like a good idea to me

Pages: 1 ... 98 99 [100] 101 102 ... 370