Forgot your password?

typodupeerror

Comment: Re:That's nice and all... (Score 1) 396

by Jezral (#39888281) Attached to: Microsoft Using Linux To Optimize Skype Traffic

The current version has no compact buddy list

Sure it does: View -> Compact View

requires a subscription for multiparty video

True, that sucks.

has giant ads on a useless "home" screen

It does? I've can't see any ads in Skype anywhere, but then I don't use the Home screen...you can turn that thing off.
I did enable it just now to see if there are ads, and there are not. It looks like a rather plain contact's status updates listing.

and wants me to issue facebook updates of some shit.

It does? Again, you can turn that off, or just ignore it.

But really, Compact View fixes most ills. It makes Skype look like it always has.

Comment: Re:Isn't that called Googling? (Score 1) 60

by Jezral (#38561698) Attached to: New Online Dictionaries Automate Away the Linguistic Middleman

Then maybe what you want is DeepDict. E.g., magic is used like http://gramtrans.com/deepdict/lookup.php?word=magic&class=N&lang=eng&top=200 - it is not free, though all words starting with 's' are currently open to viewing for anyone.

It yields info such as: black magic, Orlando magic, ceremonial magic ... magic kingdom, magic roundabout, magic flute ... practice magic, radiate magic ... magic of animation ... etc

(disclaimer: I work on the DeepDict project)

Comment: We're doing this now... (Score 1) 186

by Jezral (#36526084) Attached to: Kurzweil: Human-Level Machine Translation By 2029

At my job (plug: http://gramtrans.com/ ), we're doing human level machine translation now, if by human you're talking about high school level of quality.

But in difference to Google or Microsoft or all the previous attempts, we're NOT doing Statistical Machine Translation; we make Rule-Based MT.

Google's way is to scan huge amounts of parallel texts for good translation candidates, which works to some degree, but it has an upper limit that no amount of parallel text will help them surpass.

Our way involves writing a huge amount of rules so that our software actually understands the input text, and then rules for how things should be translated. This takes a lot longer to develop as you might imagine, but the results are great and there is no limit to how good it gets...if something isn't quite right, add a rule for it.

However, because it takes so long to develop and that we're only 2 people working on it, we only have a few really good translation chains.

Comment: Re:IE8 is NOT the most pleasant/compatible/fast (Score 3, Informative) 111

by Jezral (#34876792) Attached to: How To Get Around the Holes In IE9 Beta's Implementation of Canvas

- since IE is the only browser to enforce XHR caching, every request needs a timestamp query parameter (something that no other browser does, and which is really stupid, altough easy to provide)

Or, you could use POST requests like you're supposed to. Any number of intermediary caches and load balancing tricks can play foul with GET requests, but POST is not allowed to be cached.

With jQuery this is as simple as using $.post() instead of $.get().

Comment: Re:This isn't dangerous in the way they claim (Score 1) 134

by Jezral (#32808180) Attached to: ATM Vendors Threaten, Stop Research Presentation

Seriously? You're paranoid about letting go of your card for the 3 seconds it takes to enter the PIN? The card remains right in front of you, no more than 4cm away from your hands...

Where do you live where stealing cards at the payment terminal in full public view is so frequent that you feel a need to be paranoid about it? I've never even heard of such a case of theft/assault.

No, the real problem with the chip system is that when you put the card in the holder, the security code is facing away from you, visible to the store clerk...

Comment: Re:Visual Studio (Score 1) 1055

by Jezral (#28115847) Attached to: What Free IDE Do You Use?

I have looked around. I've tried them all, pretty much, on both Windows and Linux. Only one I haven't tried is XCode on OS X, but I've heard good things about that. I've dearly wanted to find a single powerful IDE that I could use cross-platform, but none exists.

Of all the IDEs I've tried on various platforms, none come even close to VC++ Express. A huge amount of that rests in the debugger alone...gdb and IDEs that use gdb are hilariously underpowered compared to VC++'s integrated debugger.

So for all development and debugging, I use VC++. For profiling and sanity checking, I use gprof/gcov/valgrind. Best tools for their job.

Comment: Re:Visual Studio (Score 1) 1055

by Jezral (#28106333) Attached to: What Free IDE Do You Use?

I'd even say Visual Studio is the best, by a very long mile. There just isn't anything as powerful in a single cohesive package. It is one of the main reasons I develop primarily on Windows (the other being gaming). And don't let anyone fool you into thinking that VC++ is evil...it doesn't lock you into making Windows only programs; you have to lock yourself in, if that's your desire.

You could get similar results with cobbling together various tools, but why bother when VC++ Express already Just Works...

That said, the final pin to make VC++ Express perfect would be some Valgrind functionality.

Life is a game. Money is how we keep score. -- Ted Turner

Working...