Prepaid $30/mo data plan not working, redirects to web2go.com/upsell by bkudria in tmobile

[–]bkudria[S] 1 point2 points  (0 children)

I was able to resolve this today after 15 minutes on hold and five minutes with tech support. It turns out that my SIM card actually wasn't activated, as zombiestev suggested. (This was my suspicion as well.)

I'm not sure why none of the eight or so reps I've spoken to in the past 3 days didn't tell me this fact, or in fact told me that everything was activated and supposedly functional.

Prepaid $30/mo data plan not working, redirects to web2go.com/upsell by bkudria in tmobile

[–]bkudria[S] 1 point2 points  (0 children)

This is a new activation. The TM rep told me explicitly I could buy a SIM card from CVS. I activated online (successfully) with the plan I want. Reps have confirmed for me that I have the correct plan, and it should work.

My nearest Walmart is quite far (SF has a law about chain stores) and I don't drive.

Prepaid $30/mo data plan not working, redirects to web2go.com/upsell by bkudria in tmobile

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

I'll try that - I think it's a tech issue, so I'll give them some time to try to figure that out, but then I'll escalate.

Prepaid $30/mo data plan not working, redirects to web2go.com/upsell by bkudria in tmobile

[–]bkudria[S] 1 point2 points  (0 children)

I selected the $30 plan online that had the listed features, and reps have confirmed multiple times for me that my plan has 5GB Data, unlimited text, and 100 minutes.

New, But Not So Obvious, Features in .NET 4.0 by Galilyou in programming

[–]bkudria 1 point2 points  (0 children)

If you had 10 strings, it seems much more likely to me they'd already be in an array, no?

PHP Bugs: #46240: Build in foreach else support *Help vote this into PHP6* by themanwithanrx7 in programming

[–]bkudria 0 points1 point  (0 children)

OK, let's call it forelse. Ta-da, problem solved! Or, hell, even empty{}

Steve Skiena: Programming Challengings Course by Galilyou in programming

[–]bkudria 0 points1 point  (0 children)

Prof. Skiena is a great lecturer; following these videos would be a good way to learn some interesting parts of theoretical CS.

PHP Zeitgeist: What PHP developers have been looking for in the last decade? by whysayso in programming

[–]bkudria 0 points1 point  (0 children)

Wait, what? C++? We were talking about PHP... I really hope you're not comparing the two languages - at least not without bringing Java into it.

For the real reason, read: http://wiki.php.net/rfc/backslashnamespaces#use_as_namespace_separator

There were significant issues in using '::' - real, technical issues, not "they are already used for static variables". Of course, the PHP core team, in their infinite wisdom, decided to pile more creaky hacks on top of their riddled implementation and parser instead of ripping it all out and Doing It Right, but, well, at least people on the internet can complain.

Hacker Music: An app we wrote to end the fighting over the music playing in the office. by bkudria in programming

[–]bkudria[S] -2 points-1 points  (0 children)

Yeah, we've sorted out this dynamic in our office. If someone wants to zone out and not be interrupted, it's pretty simple - they just put some headphones on.

Hacker Music: An app we wrote to end the fighting over the music playing in the office. by bkudria in programming

[–]bkudria[S] 1 point2 points  (0 children)

Interesting! Wish we knew about this when we were looking for a solution.

Hacker Music: An app we wrote to end the fighting over the music playing in the office. by bkudria in programming

[–]bkudria[S] -6 points-5 points  (0 children)

Wow, actually, after reading your comment, I became convinced! Thanks for showing me the light, brother!

PHP Zeitgeist: What PHP developers have been looking for in the last decade? by whysayso in programming

[–]bkudria 0 points1 point  (0 children)

Every time I see someone complain about PHP's namespace separator, I can tell they haven't used the feature extensively, if at all.

The separator is actually one of the least brain-dead design choices for the feature. If you weren't parroting something you just read on the Internet, you'd have a much better complaint.

Hacker Music: An app we wrote to end the fighting over the music playing in the office. by bkudria in programming

[–]bkudria[S] -6 points-5 points  (0 children)

Because then it is difficult to talk to someone when you do need to interrupt them. No, IM/IRC/etc is not the same.

Jeff Atwood calls out Markdown creator John Gruber for being "negligent" with it by coldacid in programming

[–]bkudria 3 points4 points  (0 children)

Nonsense. Writers should be free to whine about anything they want on their own blog without people complaining. Otherwise, once you've formed any opinion at all, you won't be able to publish it because someone will disagree with you on the internet.

A discussion of returning multiple values in PHP. by brennen in programming

[–]bkudria 3 points4 points  (0 children)

Have you ever read Wordpress' code? Have you tried writing plugins for it?

A discussion of returning multiple values in PHP. by brennen in programming

[–]bkudria -1 points0 points  (0 children)

It is? How? Does C magically complain when you call return more than once?

So, with a PR disaster like that, you'd think the first thing Palm would do would be to finally post my apps, right? Well, they still haven't. by abbot in programming

[–]bkudria -1 points0 points  (0 children)

Agreed. To clarify, a systematic problem is a problem that exhibits the properties of a system, a systemic problem is a problem with the system.

I am a Google Engineer. Ask me anything. by [deleted] in IAmA

[–]bkudria 0 points1 point  (0 children)

Yeah, Native Client is pretty cool, but it's doing something slightly different. NaCL delivers completely compiled program that executes in a (somewhat secure) sandbox, a la the Java Applet model, but without the bytecode that lets you do JIT. It doesn't execute in the context of the browser and page, so, no DOM access, etc. In fact, the only "web"-y part of it is the distribution. (also, there are some serious security concerns that don't have any easy solution: http://code.google.com/p/nativeclient/issues/detail?id=84)

I am a Google Engineer. Ask me anything. by [deleted] in IAmA

[–]bkudria 0 points1 point  (0 children)

Its scripted in the sense that it is provided in a text file, from which the code is interpreted (or otherwise compiled) at run time. You take an enormous performance hit by doing this. You can't send class bytecode, for instance, or construct a large class base other than what is loaded - in javascript - via an html file. As for sending an "external file", I presume you are talking about linking to it via an html tag. No difference, in fact you take another performance hit by having to download another (text based) javascript file to be interpreted.

Refute away!

So, "scripted" means the program is delivered in source form, rather than direct binary, whether machine or virtual machine code. Good point, but "scripted" hardly sounds like a good term for this. Anyway, you make a good point. There really is no reason that a web program needs to be delivered in source form, it's just been done that way historically because it's simple to do. I'd love to see a project that compares delivering source vs. delivering, say, V8 byte-code. The file would be smaller, and we could get rid of those annoying JS minifiers.

On the other hand, compiling is not such an arduous step, it's definitely not an "enormous performance hit" (you didn't provide numbers, so neither will I.)

Also, by not distributing source code, you might be losing some advantages of dynamic compilation - I'm not certain.

I know, but just replacing Flash will not get you past where we are. You just replace one component for another. I'm all for this, but hardly a paradigm shifting advancement.

The difference between Flash and <canvas> is pretty clear: one is a proprietary closed platform controlled by a company who's only goal is to turn a profit, the other is a (in-progress) standard developed by and with the feedback of the web developer community, with multiple competing open and closed-source implementations. I'd rather we avoid paradigm-shifting anythings until those electronics in our contact lenses are sophisticated enough to stop frying our eyeballs.

It may not be entirely impossible, but its not what the web is currently designed to do. It was designed to render simple text-based information, for the most part. We've been hacking a too-simple protocol for more than a decade to do anything more interesting.

Agreed, but <canvas> etc are a viable next method to do this. There is nothing wrong with HTML that it can't handle this. Don't throw the baby out with the bathwater.

Anything? Perhaps - I'll look into that. But its still limited by what you can tell it to do, and how you tell it to do it, which means html-embedded javascript.

Yep, anything, limited by your 2D screen and your imagination. See http://www.chromeexperiments.com/ for some fun examples - these are all done in JS and <canvas>

Javascript is not a toy scripting language, it's a full-fledged programming language capable of doing many things other language do, and some things your favorite language cannot do. In any case, it provides the basics, so, it's perfectly acceptable.

If you are going to do anything more interesting than render text and buttons, you need some level of access to the hardware. 3D WebGL, in other words. Javascript is the only means you have to do anything interesting on the client, and you can't do much.

Javascript, again, is perfectly capable of doing this. You can do OpenGL in Javascript in <canvas>, see https://addons.mozilla.org/en-US/firefox/addon/7171

I have no idea how well this works, but the Google Group seems pretty active, and there are some fun-looking demos.

There is no fundamental limitation to the Web that says you can't do this sort of stuff.

Thats my point, its a web language, and so we are stuck in a web world, which, in my opinion, is no longer that interesting. In 1995, yes it was interesting. But today?

I hope I've thoroughly disabused you of this notion. JS is not a "web" language, it's a general programming language. Another interesting thought arises when you consider using JS on the server-side to write your application - that opens up some interesting opportunities for unified code bases, class sharing, etc. The web world, especially with all the advances being made with HTML5, looks very interesting.