Javier

12,124
reputation
845 views

Registered User

name Javier
member for 1 year
seen 10 hours ago
website
location Lima, Peru
age 39
Love to learn, unfortunately that leaves very little time to use what's learned :-)
10h
answered Synchronous vs Asynchronous languages
13h
comment How to display synchronized time in Linux C++?
what kind of environment/framework does you app run in? command line, curses, Gtk, Qt, KDE...
14h
answered in which programming languages can we develop applications for adobe air ?
14h
comment in which programming languages can we develop applications for adobe air ?
none of these is a programming language.
1d
accepted Calling a function this way would be bad style?
2d
answered Calling a function this way would be bad style?
2d
comment Is there an open source (read free) tool that allows me to see my browser’s HTTP commands?
or even better: tcpdump
Dec
15
comment Inlines Python/Django technique for objects
... and it has nothing to to with the blog/templates/inlines/default.html part
Dec
15
accepted Implementing a GUI menu with MVC on a desktop application
Dec
15
answered Implementing a GUI menu with MVC on a desktop application
Dec
14
answered is it possible to execute objective C programs in windows?
Dec
14
answered How to tunnel TCP over reliable UDP?
Dec
14
comment How to tunnel TCP over reliable UDP?
@all: why the hate for UDP? there's nothing you can do on IP that UDP can't do, including running TCP over it.
Dec
14
answered How to avoid multiple instances of a program?
Dec
12
comment Basic Python Numbers!
just for fun I tried it in Python, Lua, Perl and Ruby. they all show the same result: 5.55111512312578e-17
Dec
11
accepted Redirecting packets to user space TCP stack without modifying application
Dec
10
answered Why QuickTime API for Windows
Dec
10
answered Table Naming: Underscore vs Camelcase? namespaces? Singular vs Plural?
Dec
10
answered What advantages are there to programming for a non-cache-coherent multi-core machine?
Dec
9
accepted how to update a Django page without a page reload ?
Dec
7
comment String Compare “Logic”
@Pavel Minaev: are you sure?
Dec
7
comment NFS or SMB on Windows Share
not by OS (not anymore, at least); but by mentality. also, there are very few good NFS implementations for windows.
Dec
6
answered Trying to derive a 2D transformation matrix using only the images…
Dec
6
comment Coding in Other (Spoken) Languages
Spanish (as most languages) has a vastly larger vocabulary than English; but English makes it easy to invent new words and still be understood. That makes it very succinct and easy to use on technical issues. Also, English is much more imperative and favors simple sentences (if anything, to avoid ambiguity), maybe that makes it more 'natural' for procedural programming. Also note that I would never say that English is "better" than any other language; but BASIC is based in English, translating it results in an unreadable mess.
Dec
4
comment How can I programatically convert SVG files containing text to PDF files (specifically on CentOS 5.3 x86_64)?
can't you compile svg2pdf on a centos machine and install in your server?
Dec
4
answered What does this scheme function do?
Dec
3
comment how to do something like google-analytics
AFAICT, google analytics doesn't 'send data form 1 server to another'. it's just some javascript that reports to their own server. the 'other' server isn't involved in any way.
Dec
3
answered how to update a Django page without a page reload ?
Dec
2
comment Using try vs if in python
.... and that's one (of many) reasons why it's so hard to do a real optimizing JIT for Python. As the recently in beta LuaJIT 2 proves, dynamic languages can be really, really fast; but it heavily depends on the initial language design and the style it encourages. (on a related note, language design is why even the very best JavaScirpt JITs can't compare to LuaJIT 1, much less 2)
Dec
2
comment Problem with variable scoping in Python
+1; but note that the last condition is already done in the '@login_required' decorator
Dec
1
comment Is there ever a good reason to use eval() ?
corollary: don't tag anything as 'language-agnostic' unless you're comfortable with at least a dozen languages
Nov
30
comment Retrieving untagged objects with django-tagging
use parenthesis instead square brackets to get a generator instead of a list. (mostly) same usage, far lower memory requirements.
Nov
27
comment Ideas for implementing a VFS
in mac WebDAV is a real, mounted FS. for windows there are some third party solutions, not sure if they're free or not
Nov
26
comment C / C++ Library for HTTPS Client with Basic Authentication
they're all linux
Nov
26
comment How to handle mass database manipulation every second - threading?
+1 on profile first, +1 on don't hit the DB each iteration, +1 on don't create/destroy threads on each object, +1 on not too many threads. .... now, where's the +4 button? bah, it wasn't so interesting problem to start, lets round it to +1
Nov
26
comment Ideas for implementing a VFS
yes, i implemented most of it in Lua a long time ago. I don't remember many specifics beyond that the only hard part of the RFCs was the locking semantics.
Nov
26
answered HTML forms working offline
Nov
26
answered Ideas for implementing a VFS
Nov
26
answered How to automatically download all my pics from my website not using FTP?
Nov
25
comment C++ short-circuiting of booleans
note that it doesn't have anything to do with lazy evaluation. While it's true that lazy evaluating languages make this behavior trivial to implement; in C/C++ case, it's just compiled into the equivalent of a series of nested ifs.
Nov
25
answered Concurrency: how does shared memory vs message passing handle large data structures?
Nov
25
comment What do you do to write better code?
@Larry Lustig: what about "write lots of little code"
Nov
25
comment Pick and RDF/SPARQL
wow... is PICK still alive?
Nov
22
accepted Recommendations for AJAH Library
Nov
19
accepted What are the differences in variable scoping between Python and Scheme?
Nov
19
answered What are the differences in variable scoping between Python and Scheme?
Nov
19
answered How to parse a rendered web page containing javascript.
Nov
19
revised django excel xlwt
added sample code; added 6 characters in body
Nov
19
comment How do you create a Dynamic Database?
why don't you ask your client what does he want?
Nov
18
answered Qt moc_ include file problem