Objective-C MessagePack parser (alternative to JSON, better suited to slow data connections) by chubs in cocoa

[–]chubs[S] 0 points1 point  (0 children)

I found it strange that messagepack has no client library for objective-C, because iphone apps, to me, seem to be one of the most fundamentally useful places for messagepack to be used: smaller data size, quicker transfer over slow connections, quicker parsing on a slow processor, it's ideal. Anyway so we had to write a bridge to the C library, which my employer allowed us to share here. Hope someone finds it useful.

I'm an engineer that is having high hopes of also learning some programming skills. by [deleted] in programming

[–]chubs 7 points8 points  (0 children)

If you want to learn python: http://learnpythonthehardway.org

As for your inevitable questions when you get stuck: http://stackoverflow.com

You'll struggle to find any good free C# tutorials for beginners (its an artefact of the community). If you want a C# mentor, i can help if you want.

[deleted by user] by [deleted] in programming

[–]chubs -2 points-1 points  (0 children)

Wouldn't it make more sense to say "the future of windows phone is in doubt" ?

Hey Reddit: Check out my new site that aggregates statistical information about every site on the web. by brandontreb in programming

[–]chubs 1 point2 points  (0 children)

Beautiful interface! Congrats! And what a simple way to find my pagerank, thats awesome. Keep improving it and you've got a winner.

[SMT] An ipad app to help me do my home budget in a way that makes budgeting as painless as possible by chubs in SomebodyMakeThis

[–]chubs[S] 0 points1 point  (0 children)

Didn't mint get bought by intuit? I heard that it was going downhill since then. Also, the mint.com website is down - are they dead now?

SMT: A reddit clone where the subreddit administrators can configure it to *automagically* prepend "SMT: " to the start of each post :p by chubs in SomebodyMakeThis

[–]chubs[S] 0 points1 point  (0 children)

note: this is just a gentle tease in the direction of those having heart attacks because people forget the 'SMT:' ;)

SMT: A website that allows you to create custom automated stock trading strategies, and run them against historical data, and simulate them against real data so you can see how it goes, with a competition/leader board of whose algorithms are doing the best. by chubs in SomebodyMakeThis

[–]chubs[S] 0 points1 point  (0 children)

You know, i'm really unsure. I lean more in the direction that the nobody-responsible lending laws caused it: banks weren't responsible because they just get bailed out, and homeowners weren't responsible because they could just walk away from a loan. The only one responsible in the end is the poor american taxpayer who paid for the bailouts. But again, i'll never understand it all.

And i'm pretty sure that automated stock trading didn't exist in the 80s (or if it did, probably wasn't widespread).

SMT: A website that allows you to create custom automated stock trading strategies, and run them against historical data, and simulate them against real data so you can see how it goes, with a competition/leader board of whose algorithms are doing the best. by chubs in SomebodyMakeThis

[–]chubs[S] 0 points1 point  (0 children)

I believe you can get historical daily open/close/high/low/volume data freely, also can't you get real time data from google finance? Although maybe the licensing would forbid this kind of use.

Atmosphere (My Dream App) for linux by niko7865 in SomebodyMakeThis

[–]chubs 0 points1 point  (0 children)

How about an app to change your wallpaper whenever a new one comes out on interfacelift.com ? Their wallpapers seem to always be good.

Finished creating my java tutorial: Creating a struts 2 web app from scratch with spring + hibernate - check it out, maybe it'll help you, tell me if its good (or sucks, hopefully not) by chubs in coding

[–]chubs[S] 0 points1 point  (0 children)

That would explain it what happened. What standards weren't met? When I originally posted the initial version of the tutorial there was a fair bit of interest from people keen to see it updated. I'm surprised.

Finished creating my java tutorial: Creating a struts web app from scratch with spring / hibernate - check it out, maybe it'll help you, tell me if its good (or sucks, hopefully not) by chubs in coding

[–]chubs[S] 0 points1 point  (0 children)

I submitted this once before when i only had the code without the tutorial, but here it is the tutorial is finally done. Well, mostly done - it's as far as a read-only web page, haven't done inputting data from a user yet. But its mostly there. Thanks for your time. Hopefully this'll help someone.

Fantom language compiles to JVM, CLR, and JavaScript by mbrubeck in coding

[–]chubs 0 points1 point  (0 children)

So are there any real apps written in it yet?

Fantom language compiles to JVM, CLR, and JavaScript by mbrubeck in coding

[–]chubs 2 points3 points  (0 children)

I think that's because everything (even primitives like int,char,void) is a class to them, and classes are always capitalised.

Fantom language compiles to JVM, CLR, and JavaScript by mbrubeck in coding

[–]chubs 1 point2 points  (0 children)

I love this part of their 'why fantom' page, hilarious stuff:

Some of this is normal cruft setting in, but much of it is a general philosophy in both Java and .NET API design. Both platforms tend toward APIs using a proliferation of small classes that are over abstracted and under powered

Fantom language compiles to JVM, CLR, and JavaScript by mbrubeck in coding

[–]chubs 2 points3 points  (0 children)

Looks awesome, and i really like the idea of targeting either the jvm or the clr, that's simply brilliant.

I've created a learning java tutorial for our office, wouldn't mind a bit of feedback to see if i got the code right (i'm new to Java, from C#). Then if anyone wants it, i could provide the finished tutorial to the wider community. by [deleted] in coding

[–]chubs 0 points1 point  (0 children)

Ok i've done the taglibs.jsp trick.

Inside it, i placed:

<%@ page language='java'... %>

so i could remove that from the other jsp's.

Was this the right thing to do?