friol

3,531
Reputation
238 views

Registered User

Name friol
Member for 1 year
Seen 1 hour ago
Website
Location Rome, Italy
Age 33
follow the white rabbit
Nov
18
accepted Generating a PDF report from Google App Engine
Oct
15
awarded  Guru
Oct
11
comment What’s the advantage of using C over C++ or is there one?
Writing a full application in C "because it will be easier to read the resulting assembly code" is a weak reason, IMO. Tipically, you'll need to optimize (and mess with the resulting assembly code) at maximum 10% of the program, if the type of application is bound on performances. You don't need to mess with assembly language on the rest of the applications.
Sep
28
awarded  Yearling
Sep
18
accepted How django serves media files?
Sep
12
answered Restart daily or 100% uptime for enterprise applications?
Aug
15
awarded  Good Question
Aug
15
awarded  Favorite Question
Jul
7
awarded  Favorite Question
Jul
5
comment jagged array in c
you're right, thanks.
Jul
5
comment How can I add padding to html dropdownlist?
what are you trying to do? why do you want to pad the select options?
Jul
5
answered jagged array in c
Jul
4
comment More difficult to build: Emulator or compiler?
You are not considering CPU JIT recompilers (used in emulators).
Jul
4
comment More difficult to build: Emulator or compiler?
Emulating an unknown platform requires knowing maths, encryption algos, network/disk protocols etc. I wouldn't say it requires less theory than a compiler.
Jul
4
answered More difficult to build: Emulator or compiler?
Jul
3
comment Log management&analysis Open Source product
At the end, we'll try to test Splunk for a while and see if it's worth buying its license.
Jul
2
comment Log management&analysis Open Source product
a fast and flexible log parser, a GUI and a backup mechanism with a perl script? I don't want to be the one to do that :)
Jul
1
comment Log management&analysis Open Source product
as I said before, great product, but it's not opensource.
Jun
30
comment Log management&analysis Open Source product
We already have a tool to handle alarms (HP Openview). Am I wrong or syslog-ng would handle only syslog events?
Jun
30
revised Log management&analysis Open Source product
added 122 characters in body
Jun
30
revised Log management&analysis Open Source product
added 118 characters in body
Jun
30
comment Log management&analysis Open Source product
Splunk comes 99% closer to what we're searching. Only downside: it's not opensource.
Jun
30
comment Log management&analysis Open Source product
I've given a quick glance, but: does it support only some specific formats of logfiles? We're searching for a tool that could handle our applications' log files (that are custom).
Jun
27
revised Log management&analysis Open Source product
added 1 characters in body; added 81 characters in body
Jun
26
awarded  
Jun
25
comment Log management&analysis Open Source product
Seems a good product, but, if I read well, all our applications would have to be modified, in order to feed logs to logFaces. That's not what we are searching, it would be too much of an overhaul.
Jun
24
asked Log management&analysis Open Source product
Jun
24
accepted Automatic assignment of tickets with Trac
Jun
20
revised Equation (expression) parser with precedence?
added 6 characters in body; added 7 characters in body; added 19 characters in body; deleted 25 characters in body
Jun
19
revised Automatic assignment of tickets with Trac
added 191 characters in body
Jun
19
answered Automatic assignment of tickets with Trac
Jun
19
asked Automatic assignment of tickets with Trac
Jun
19
awarded  Nice Answer
Jun
19
awarded  Nice Answer
Jun
13
answered How to code a simple versioning system ?
Jun
10
comment What is the worst programming language you ever worked with?
I don't remember exactly which problem I had in concatenating those strings (for my mental sake I don't work with this language often), but the juice of my answer was pointing out how weak string manipulation is in .bat files.
Jun
9
comment What is the worst programming language you ever worked with?
Concatenating two (or three, I don't remember) strings leaves a whitespace hole between them (try it), and calling that a "for loop" is an offense :)
Jun
8
awarded  Nice Answer
Jun
7
comment How to pull a random record using Django’s ORM?
How you display things and which things you display is part of the "View" level or business logic that should go in the "Controller" level of MVC, in my opinion.
Jun
7
answered What is the worst programming language you ever worked with?
Jun
7
comment How to find out a^b of very large numbers in python?
Plese provide the inputs you are giving to the program. Also, are you sure the source code you provided and the error match?
Jun
6
comment Why is ruby so much slower on windows?
Can you prove with examples that Ruby is 3x times slower on the Windows platform? Is it slower in every aspect or only on some tasks? Remember that you should use an equivalent machine in both cases (Linux/Windows) for the comparison.