Artelius
|
Registered User
|
|
9h |
accepted | Is an entire process’s virtual address space split into pages |
|
10h |
comment |
Match literal string Maybe you should change s:1 to s:01 etc. |
|
13h |
accepted | Given two directory names, how can I get relative name of one as if another is working dir in Ruby? |
|
14h |
comment |
How to change the default text of <input type=”file” />? Are you talking about the filename or the button text? |
|
18h |
comment |
Error with ‘extern’ usage — unresolved external symbol You can compile this C file into an object file (.o file), but not an executable, unless you link it with the other necessary files. |
|
19h |
revised |
How to plan huge software projects? Grammar |
|
1d |
awarded | ● Nice Answer |
|
1d |
awarded | ● Necromancer |
|
1d |
revised |
Simple C++ File stream code markup |
|
2d |
comment |
what are the disadvantages of using Visual Basic 6 ? What do you mean by "very generic programs"? |
|
2d |
comment |
Is the world ready for name based HTTPS vhost service? Good question but it belongs on serverfault. |
|
2d |
accepted | Finding a point on a line |
|
2d |
answered | Finding a point on a line |
|
2d |
comment |
Using code from a book without plagiarizing Maybe you should write to the publisher and ask? |
|
2d |
comment |
What’s a portable way of converting Byte-Order of strings in C Should be noted that UTF-8 isn't affected by byte order. UTF-16 and UTF-32 are. |
|
Dec 19 |
comment |
Beginners Assembly Language Which assembly language do you want to learn? |
|
Dec 18 |
revised |
Why does code require “maintenance “? depreciated -> deprecated |
|
Dec 18 |
answered | What to do while waiting for a build? |
|
Dec 18 |
accepted | how to make a user restrict to download? |
|
Dec 18 |
comment |
website development for free What sort of site do you need? All static content? Some dynamically generated content (e.g. simple CMS)? An e-commerce site? |
|
Dec 18 |
comment |
website development for free What sort of site do you need? There are many services that provide free CMSs and so forth. Some are even hosted for you. |
|
Dec 18 |
revised |
how to make a user restrict to download? changed unclear wording |
|
Dec 18 |
answered | how to make a user restrict to download? |
|
Dec 18 |
answered | Should I use a parser/lexer for this? |
|
Dec 17 |
comment |
Teaching my 13 year old girl to program Dunno, when I was 12 I was writing prime number generators and multiplication test programs. I'm sure some kids wouldn't mind that kind of stuff :) |
|
Dec 16 |
accepted | simple symmetric encryption of long to String (and back) in java |
|
Dec 12 |
comment |
If else while for function class private protected pointers .. what can i do with these stuff ?! John, nobody can teach you how to put these elements together to solve any problem that comes your way. It's something that you must develop for yourself. All we can do is show you how to solve a particular problem and hopefully you will start to see the Way. |
|
Dec 12 |
comment |
Basic Python Numbers! In case you don't understand the notation, the number you see means 0.000000000000000055511151231257827. Very small. |
|
Dec 12 |
comment |
c++ operator overloading Do you have a hidden reason for wanting to do this? |
|
Dec 12 |
accepted | Can a thread be pre-empted in the midst of a system call to kernel ? |
|
Dec 12 |
comment |
Can a thread be pre-empted in the midst of a system call to kernel ? This is simply a property of your operating system and threading library. Desktop/server OSes support kernel-managed threads, whilst some embedded OSes do not, because user-managed threads have less overhead. |
|
Dec 12 |
comment |
Can a thread be pre-empted in the midst of a system call to kernel ? Non-kernel-managed threads are seen by the kernel as a single process. The process internally (without kernel support) schedules its various threads. Usually if one of these threads blocks, the whole process is seen as blocked by the kernel and hence no threads run. If the threads are kernel-managed, most kernels will run other threads if one thread blocks. You can run a simple test where one thread calls a syscall repeatedly and another yields repeatedly. If the yielding thread gets any runtime it means the syscall is a pre-emption point. |
|
Dec 12 |
comment |
calculate md5 in C++ Most of those libraries make source code available. Also, have you read RFC1321? |
|
Dec 12 |
revised |
Redundant Compiler Warnings tag |
|
Dec 12 |
comment |
Redundant Compiler Warnings Objective-C is my guess |
|
Dec 12 |
comment |
calculate md5 in C++ But seriously, someone has asked this before: stackoverflow.com/questions/1220046/… |
|
Dec 12 |
comment |
calculate md5 in C++ Pretty much anywhere. |
|
Dec 12 |
revised |
What’s the difference between Pointers and Global Variables in C? Expanded; deleted 24 characters in body |
|
Dec 12 |
answered | What’s the difference between Pointers and Global Variables in C? |
|
Dec 12 |
comment |
Can a thread be pre-empted in the midst of a system call to kernel ? Actually this assumes that your threads are kernel-managed. And some kernels may vary. |
|
Dec 12 |
revised |
Can a thread be pre-empted in the midst of a system call to kernel ? added 398 characters in body |
|
Dec 12 |
answered | Can a thread be pre-empted in the midst of a system call to kernel ? |
|
Dec 12 |
comment |
self-sufficient header files in C/C++ @Arrieta: See jeremyosborne's answer. System header files generally guard against being included twice in this way, and so should yours. |
|
Dec 12 |
answered | Is Computer Science For Me? |
|
Dec 12 |
comment |
PHP, MySQL - would results-array shuffle be quicker than “select… order by rand()”? The quickest way is to retrieve 500 rows and then shuffle them. I believe it's possible to do this within SQL (which would most likely be faster than a PHP solution) but it would need a different query to the one you suggest. |
|
Dec 12 |
comment |
PHP, MySQL - would results-array shuffle be quicker than “select… order by rand()”? Do you want to randomise the order of the first 500 rows, or return 500 random rows? This is an important distinction, and your two solutions will produce different results! |
|
Dec 12 |
answered | Given two directory names, how can I get relative name of one as if another is working dir in Ruby? |
|
Dec 12 |
comment |
Which sort algorithm works best on mostly sorted data? @J.F. Sebastian: timsort is much faster than lg(n!) comparisons on an almost-sorted array, all the way down to O(n)! | @behrooz: No comparison sort can have an average case of better than O(n log n), and lg(n!) is O(n log n). So timsort's worst case is asymptotically no worse than that of any other comparison sort. Furthermore its best case is better than or equal to any other comparison sort. |
|
Dec 11 |
answered | How do you create an english like word? |
|
Dec 11 |
comment |
Is there a third-party service for receiving email and accessing via an API? developer.yahoo.com/mail perhaps? |
