Juliano

3,338
Reputation
272 views

Registered User

Name Juliano
Member for 10 months
Seen 5 hours ago
Website
Location São Paulo, Brazil
Age 27
Computer Science Bachelor, Software Engineer, Open Source enthusiast and Network Systems Administrator.
5h
comment How to find all files which are basically soft or hard links of other directories or files on linux?
not serverfault... there is nothing server or network related here... it is superuser.com
7h
revised Is the following C++ casting correct?
code format
Nov
22
revised Replace a line in a text file
there are tags for that
Nov
22
revised How to get MAC address of your machine using a C program?
+linux tag
Nov
22
comment How to get MAC address of your machine using a C program?
jldupont: Ubuntu, it was stated at the beginning of the question.
Nov
22
answered How to get MAC address of your machine using a C program?
Nov
10
comment Struct initialization of the C/C++ programming language?
@jcyang: try with -Wall -pedantic --std=c89
Nov
10
awarded  Nice Answer
Nov
10
answered Putting a complete filesystem into revision control
Nov
10
accepted Struct initialization of the C/C++ programming language?
Nov
10
answered Struct initialization of the C/C++ programming language?
Nov
9
comment Why Kiln is based on Mercurial, and not other (D)VCS
You sound like if it is a huge problem for it to be based on Mercurial... What is the problem?
Nov
4
comment Indenting Bash Script Output
@Ryan Bright: No, read the Bash manual, the REPLY variable is implied. Or just type this in a shell and test it for yourself.
Nov
3
answered Indenting Bash Script Output
Nov
1
comment “Trap” control-d and control-c
Does your console program have a more elaborate UI than the usual stdin/stdout processor? What kind is it?
Oct
24
comment c++ send data to multiple UDP sockets
Multicast works over the Internet, given some restrictions and some proper router configuration that is usually forgotten by most network admins. Just one example, you can listen to high-quality radio or watch high-quality TV from BBC over multicast: bbc.co.uk/multicast
Oct
20
awarded  Nice Answer
Oct
17
answered Allocate room for null terminating character when copying strings in C?
Oct
13
revised Is it possible to use function pointers across processes ?
avoid 25-char tag limit
Oct
2
answered How to manage Long Paths in Bash?
Oct
2
comment Get the correct local IP adress from java applet
What exactly are you trying to do? Why do you need this information? What if the user doesn't have a local address? What if the user has many interfaces, and many local addresses? What if the user has IPv6 (which each interface may potentially have many addresses)? There is some design problem on your program, it should never rely on this characteristic to work correctly.
Sep
24
accepted Avoid casting from volatile static uint8_t to uint8_t in function calls?
Sep
24
answered Avoid casting from volatile static uint8_t to uint8_t in function calls?
Sep
7
comment What is the best comment in source code you have ever encountered?
@Mauris: It was originally a C and C++ extension for 64-bit integers, which many vendors supported. Then C99 and C++0x standardized support for it: en.wikipedia.org/wiki/Long_long
Sep
4
comment Any reason to replace while(condition) with for(;condition;) in C++?
Remember that the continue statement has a different semantic in the latter case.
Sep
4
awarded  Fanatic
Aug
29
revised Simple C++ code (what’s wrong here?)
reformat
Aug
27
accepted Bash scripting call to AWK
Aug
27
answered Bash scripting call to AWK
Aug
25
comment Is there an easy way to calculate quantiles with bash?
Looks like you are trying to use a hammer to screw.
Aug
25
comment File I/O function for C
You forgot to formulate your question as a question. It helps if you make it clear what you expect as an answer, perhaps having an interrogation mark somewhere.
Aug
23
comment Problems with SO_BINDTODEVICE Linux socket option
are you sure you need all that? Can't you just bind() the socket to the 192.168.7.1 address? It works for me.
Aug
22
revised Why the confirmation dialog button under Ubuntu is in reverse order comparing to Windows?
GNOME is not Linux, and Linux is not Ubuntu...
Aug
22
answered Why the confirmation dialog button under Ubuntu is in reverse order comparing to Windows?
Aug
21
comment Detect if stdin is a terminal or pipe in C/C++/Qt?
What you want is not to detect if stdin is a pipe, but if stdin/stdout is a terminal.
Aug
19
answered cutdown uuid further to make short string
Aug
19
awarded  Enlightened
Aug
19
awarded  Nice Answer
Aug
19
accepted What does <() do in Bash?
Aug
19
revised What does <() do in Bash?
formatting, rewording the reference
Aug
19
answered What does <() do in Bash?
Aug
18
comment Cleanest way to combine two shorts to an int.
Note that the standard does not guarantee that all will have any sensible data after assigning to high and low, and vice-versa. This solution is not portable.
Aug
18
comment How to execute the output of a command within the current shell?
In fact, I would like to know why the accepted answer was the hack of piping output to source instead of this one, that suggests the proper command that exists for this very purpose.
Aug
18
comment How to execute the output of a command within the current shell?
Tanktalus: No, you don't. Eval really interprets the string as a script, with newlines separating commands. There is no need to use semicolons.
Aug
16
accepted pointer from integer w/o cast warning when calling lfind
Aug
16
answered pointer from integer w/o cast warning when calling lfind
Aug
15
revised How to execute the output of a command within the current shell?
expand
Aug
15
answered How to execute the output of a command within the current shell?
Aug
12
revised Perl script that has command line arguments with spaces
updated
Aug
12
answered Perl script that has command line arguments with spaces