User Romulo A. Ceccon - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T18:30:08Zhttp://stackoverflow.com/feeds/user/23193http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1804514/how-to-accept-empty-value-in-boostprogramoptions/1804754#18047542Answer by Romulo A. Ceccon for How to accept empty value in boost::program_optionsRomulo A. Ceccon2009-11-26T16:53:04Z2009-11-26T16:53:04Z<p>You could try a trick with the <code>multitoken</code> and <code>zero_tokens</code> options:</p>
<pre><code>using namespace std;
namespace po = boost::program_options;
vector<string> replay;
po::options_description desc("Allowed options");
desc.add_options()
("replay,r", po::value< vector<string> >(&replay)->multitoken()->zero_tokens(), "bla bla bla");
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);
if (vm.count("replay"))
{
size_t s = vm["replay"].as< vector<string> >().size();
if (s == 0)
cout << "replay without args" << endl;
else if (s == 1)
cout << "replay with one arg" << endl;
else
cout << "replay with multiple args" << endl;
}
else
cout << "replay not specified" << endl;
</code></pre>
<p>Then just count the number of elements in the <code>replay</code> vector. You'll want to throw an error if multiple arguments are passed to the <em>replay</em> option.</p>
http://stackoverflow.com/questions/755811/how-do-you-copy-arbitrary-data-to-the-clipboard-as-a-file/756302#7563028Answer by Romulo A. Ceccon for How do you copy arbitrary data to the clipboard as a file?Romulo A. Ceccon2009-04-16T14:12:05Z2009-11-15T19:57:17Z<p>I've never tried it but I think it is indeed possible. Please take a look at the MSDN Documentation for <a href="http://msdn.microsoft.com/en-us/library/bb776902.aspx" rel="nofollow">Shell Clipboard Formats</a>. <code>CFSTR_FILECONTENTS</code> and <code>CFSTR_FILEDESCRIPTOR</code> are the formats you are likely supposed to handle.</p>
<p>Additionally, I found an article at Code Project which provides a demo program: <a href="http://www.codeproject.com/KB/tips/ExplorerDelayDrop.aspx" rel="nofollow">How to drag a virtual file from your app into Windows Explorer</a>.</p>
<p><em>Update:</em> An example written in .NET:</p>
<ul>
<li><a href="http://blogs.msdn.com/delay/archive/2009/10/26/creating-something-from-nothing-developer-friendly-virtual-file-implementation-for-net.aspx" rel="nofollow">Creating something from nothing</a></li>
<li><a href="http://blogs.msdn.com/delay/archive/2009/11/04/creating-something-from-nothing-asynchronously-developer-friendly-virtual-file-implementation-for-net-improved.aspx" rel="nofollow">Creating something from nothing, asynchronously</a></li>
</ul>
http://stackoverflow.com/questions/362618/proper-use-of-http-status-codes-in-a-validation-server1Proper use of HTTP status codes in a "validation" serverRomulo A. Ceccon2008-12-12T12:31:57Z2009-11-03T21:03:59Z
<p>Among the data my application sends to a third-party SOA server are complex XMLs. The server owner does provide the XML schemas (<code>.xsd</code>) and, since the server rejects invalid XMLs with a meaningless message, I need to validate them locally before sending.</p>
<p>I could use a stand-alone XML schema validator but they are slow, mainly because of the time required to parse the schema files. So I wrote my own schema validator (in Java, if that matters) in the form of an <em>HTTP Server</em> which caches the already parsed schemas.</p>
<p>The problem is: many things can go wrong in the course of the validation process. Other than unexpected exceptions and successful validation:</p>
<ul>
<li>the server may not find the schema file specified</li>
<li>the file specified may not be a valid schema file</li>
<li>the XML is invalid against the schema file</li>
</ul>
<p>Since it's an HTTP Server I'd like to provide the client with meaningful <em>status codes</em>. Should the server answer with a <em>400</em> error (<em>Bad request</em>) for all the above cases? Or they have nothing to do with HTTP and it should answer <em>200</em> with a message in the body? Any other suggestion?</p>
<p><em>Update</em>: the main application is written in <em>Ruby</em>, which doesn't have a good xml schema validation library, so a separate validation server is not over-engineering.</p>
http://stackoverflow.com/questions/1574721/g-doesnt-like-template-method-chaining-on-template-var3g++ doesn't like template method chaining on template var?Romulo A. Ceccon2009-10-15T20:04:45Z2009-10-16T07:45:03Z
<p>I'm trying to compile with <em>g++</em> some code previously developed under <em>Visual C++ 2008 Express Edition</em>, and it looks like g++ won't let me call a template method on a reference returned by a method of a template variable. I was able to narrow the problem down to the following code:</p>
<pre><code>class Inner
{
public:
template<typename T>
T get() const
{
return static_cast<T>(value_);
};
private:
int value_;
};
class Outer
{
public:
Inner const& get_inner() { return inner_; };
private:
Inner inner_;
};
template<typename T>
int do_outer(T& val)
{
return val.get_inner().get<int>();
}
int main()
{
Outer outer;
do_outer(outer);
return 0;
}
</code></pre>
<p>The code compiles fine under Microsoft's compiler, but g++ throws an error:</p>
<pre><code>$ g++ -c main.cpp
main.cpp: In function ‘int do_outer(T&)’:
main.cpp:24: error: expected primary-expression before ‘int’
main.cpp:24: error: expected ‘;’ before ‘int’
main.cpp:24: error: expected unqualified-id before ‘>’ token
</code></pre>
<p>where line 24 refers to <code>return val.get_inner().get<int>();</code>.</p>
<p>If I make <code>do_outer</code> a normal method receiving an <code>Outer</code> reference the code compiles. Making <code>Inner::get()</code> a normal method also works. And making <code>Inner::get()</code> return void and receive a template parameter also works because the <em>int</em> specifier below becomes needless, i.e.:</p>
<pre><code>class Inner
{
public:
template<typename T>
void get(T& val) const
{
val = static_cast<T>(value_);
};
private:
int value_;
};
...
template<typename T>
int do_outer(T& val)
{
int i;
val.get_inner().get(i);
return i;
}
...
</code></pre>
<p>(g++ doesn't complaing about the code above.)</p>
<p>Now I'm out of ideas. What's the problem? Is there a problem with gcc/g++? Is there a compliance issue with my code?</p>
<p>The compiler I'm using is:</p>
<pre><code>$ g++ --version
g++ (Ubuntu 4.3.3-5ubuntu4) 4.3.3
</code></pre>
http://stackoverflow.com/questions/45624/how-do-i-change-the-default-author-for-accessing-a-local-svn-repository/265268#2652684Answer by Romulo A. Ceccon for How do I change the default author for accessing a local SVN repository?Romulo A. Ceccon2008-11-05T14:27:20Z2009-09-24T22:18:43Z<p>Yes, it's possible.</p>
<p><em>TortoiseSVN</em> and the <a href="http://subversion.tigris.org/" rel="nofollow"><em>svn</em></a> command line client share the same settings location in your profile folder. So you may simply checkout one version using <em>svn.exe</em>:</p>
<pre><code>$ svn co --username different_user_name file:///C:/path/to/your/repo
</code></pre>
<p>... and Subversion will happily replace the associated username for that repository. New commits from TortoiseSVN will then always use that username, no matter with what program you make the new checkouts.</p>
<p>The procedure should work with TortoiseSVN 1.5.5. If it doesn't, try emptying svn's authentication cache (<code>%APPDATA%\Subversion\auth\svn.username</code>) first.</p>
http://stackoverflow.com/questions/1096794/is-sleep-evil/1097897#10978971Answer by Romulo A. Ceccon for Is Sleep() evil?Romulo A. Ceccon2009-07-08T12:57:35Z2009-07-08T12:57:35Z<p>Aside from testing purposes like the one mentioned by <a href="http://stackoverflow.com/questions/1096794/is-sleep-evil/1096842#1096842">Chalkey</a>, I found that I never really need to call <em>sleep</em> on high level OS's like Linux, Windows and OS/X. Even in cases where the program is expected to simply wait for a set amount of time I use a <em>wait</em> function on a semaphore with a timeout, so that I can end the thread immediately by releasing the semaphore if something/somebody asks my program to terminate:</p>
<pre><code># [pseudo-code]
if wait_semaphore(exit_signal_semaphore, time_to_sleep)
# another thread has requested this one to terminate
end_this_thread
else
# event timed-out; wait_semaphore behaved like a sleep function
do_some_task
end
</code></pre>
http://stackoverflow.com/questions/1025166/choice-of-language-for-portable-library1Choice of language for portable libraryRomulo A. Ceccon2009-06-22T00:56:06Z2009-06-22T01:13:58Z
<p>I want to write a library which will be dynamically linked from other programs running on modern operating systems like Windows, Linux and OS/X (i.e. it will be deployed as a <code>.dll</code> or <code>.so</code> module).</p>
<p>What is the most appropriate language in that case? Should I stick with plain C? Or is C++ also ok?</p>
http://stackoverflow.com/questions/997614/what-kind-of-memory-reclamation-algorithm-does-mri-ruby-1-8-use/997636#9976361Answer by Romulo A. Ceccon for What kind of memory reclamation algorithm does MRI Ruby 1.8 use?Romulo A. Ceccon2009-06-15T18:38:11Z2009-06-15T18:38:11Z<p>Ruby's GC uses the <a href="http://whytheluckystiff.net/articles/theFullyUpturnedBin.html" rel="nofollow"><em>mark-and-sweep strategy</em></a>.</p>
http://stackoverflow.com/questions/920858/sorting-a-ruby-array/920979#9209793Answer by Romulo A. Ceccon for Sorting a Ruby arrayRomulo A. Ceccon2009-05-28T13:57:52Z2009-05-28T15:51:09Z<p>If you want to sort a list of integers taken from STDIN I suggest something like the following:</p>
<pre><code>lines = STDIN.readlines.map { |x| x.strip.to_i }.sort
puts lines.join(', ')
</code></pre>
<p>It's cleaner, more <em>rubyish</em> and faster (read the documentation for <a href="http://www.ruby-doc.org/core/classes/Enumerable.html#M003151" rel="nofollow"><code>Enumerable.sort_by</code></a> to see why <code>sort</code> is a better alternative to <code>sort_by</code>).</p>
<p>I also see your code expects a number that says how many lines to read. You can get the same behavior by modifying the example above as follows:</p>
<pre><code>line_count = gets.strip.to_i
lines = (1..line_count).collect { gets.strip.to_i }.sort
puts lines.join(', ')
</code></pre>
http://stackoverflow.com/questions/888224/what-is-your-longest-held-programming-assumption-that-turned-out-to-be-incorrect/901531#9015313Answer by Romulo A. Ceccon for What is your longest-held programming assumption that turned out to be incorrect?Romulo A. Ceccon2009-05-23T13:22:50Z2009-05-23T13:22:50Z<p>That, <em>being the owner of the code I write</em>, I'm the only person who should understand or touch it.</p>
http://stackoverflow.com/questions/888224/what-is-your-longest-held-programming-assumption-that-turned-out-to-be-incorrect/901503#9015032Answer by Romulo A. Ceccon for What is your longest-held programming assumption that turned out to be incorrect?Romulo A. Ceccon2009-05-23T13:05:04Z2009-05-23T13:05:04Z<p>That, by learning an <em>exact science</em>, I wouldn't need to improve my limited social skills.</p>
http://stackoverflow.com/questions/888224/what-is-your-longest-held-programming-assumption-that-turned-out-to-be-incorrect/901497#9014972Answer by Romulo A. Ceccon for What is your longest-held programming assumption that turned out to be incorrect?Romulo A. Ceccon2009-05-23T13:00:05Z2009-05-23T13:00:05Z<p><strong>That a WTF is always an evidence of a bad professional.</strong></p>
<p>In fact I've been realizing recently how many WTF's I committed myself throughout my career, but I was comforted when StackOverflow showed me <a href="http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/84609#84609">they are just another software metric</a>.</p>
http://stackoverflow.com/questions/878627/get-the-domain-name-of-a-computer-from-windows-api/878782#8787822Answer by Romulo A. Ceccon for Get the domain name of a computer from Windows APIRomulo A. Ceccon2009-05-18T17:10:46Z2009-05-18T17:25:53Z<p>If you just want to know if the machine the code is running is the primary domain controller I think your best option is <a href="http://msdn.microsoft.com/en-us/library/aa370624.aspx" rel="nofollow">NetServerGetInfo</a>. If you pass <em>101</em> as the <em>level</em> parameter it returns an <a href="http://msdn.microsoft.com/en-us/library/aa370903.aspx" rel="nofollow">SERVER_INFO_101 structure</a>. Then look for its <em>sv101_type</em> member:</p>
<blockquote>
<p><strong>sv101_type</strong></p>
<blockquote>
<p>The type of software the computer is running. This member can be one of the following values.</p>
<blockquote>
<p>(...)</p>
<p><code>SV_TYPE_DOMAIN_CTRL</code>: A primary domain controller.</p>
</blockquote>
</blockquote>
</blockquote>
http://stackoverflow.com/questions/875211/how-to-select-the-last-24-hours-of-rows-from-a-row-offset/875257#8752571Answer by Romulo A. Ceccon for How to select the last 24 hours of rows from a row offsetRomulo A. Ceccon2009-05-17T19:08:33Z2009-05-17T19:08:33Z<p>You may use the aggregate functions directly against some set:</p>
<pre><code>select
sqrt(sum(pow(my_value,2))/count(*))
from
my_table
where
my_date between '2007-06-06 00:00:00' and '2007-06-07 00:00:00'
</code></pre>
http://stackoverflow.com/questions/839997/better-way-to-fill-a-ruby-hash/840093#8400934Answer by Romulo A. Ceccon for Better way to fill a Ruby hash?Romulo A. Ceccon2009-05-08T14:35:33Z2009-05-08T14:35:33Z<p>If performance is not important this one might look better:</p>
<pre><code>form_params = {}
['tid', 'qid', 'pri', 'sec', 'to_u', 'to_d', 'from', 'wl'].each do |v|
form_params[v] = eval(v)
end
</code></pre>
<p>If those names are actually methods you can replace <code>eval</code> by the faster <code>send</code>:</p>
<pre><code>form_params[v] = send(v.to_sym)
</code></pre>
http://stackoverflow.com/questions/818062/rails-constants-hash/818096#8180965Answer by Romulo A. Ceccon for Rails - Constants Hash?Romulo A. Ceccon2009-05-03T21:52:49Z2009-05-03T21:52:49Z<p>You can code a custom writer method:</p>
<pre><code>STATUS_VALUES = { 1 => 'new', 2 => 'modified', 3 => 'deleted' }
class Foo
attr_reader :status_id
def status
STATUS_VALUES[@status_id]
end
def status=(new_value)
@status_id = STATUS_VALUES.invert[new_value]
new_value
end
end
</code></pre>
<p>For example, the following program:</p>
<pre><code>foo_1 = Foo.new
foo_1.status = 'new'
puts "status: #{foo_1.status}"
puts "status_id: #{foo_1.status_id}"
foo_1.status = 'deleted'
puts "status: #{foo_1.status}"
puts "status_id: #{foo_1.status_id}"
</code></pre>
<p>outputs:</p>
<pre><code>status: new
status_id: 1
status: deleted
status_id: 3
</code></pre>
http://stackoverflow.com/questions/802707/is-it-possible-using-only-windows-script-to-merge-a-text-file-and-an-image/802998#8029981Answer by Romulo A. Ceccon for Is it possible - using only windows script - to merge a text file and an image?Romulo A. Ceccon2009-04-29T15:48:29Z2009-04-29T15:48:29Z<p>I know this doesn't answer your question but, since I doubt you'll get a pure script based image overlay solution, I suggest the use of <a href="http://www.imagemagick.org/script/index.php" rel="nofollow">ImageMagick</a>. It has a powerful, scriptable command line interface and <a href="http://www.imagemagick.org/Usage/text/" rel="nofollow">handles text-to-image conversions</a>.</p>
http://stackoverflow.com/questions/802121/windows-command-to-get-service-status/802188#8021883Answer by Romulo A. Ceccon for Windows command to get service status?Romulo A. Ceccon2009-04-29T12:44:09Z2009-04-29T12:44:09Z<p>Have you tried <code>sc.exe</code>?</p>
<pre><code>C:\> for /f "tokens=2*" %a in ('sc query audiosrv ^| findstr STATE') do echo %b
4 RUNNING
C:\> for /f "tokens=2*" %a in ('sc query sharedaccess ^| findstr STATE') do echo %b
1 STOPPED
</code></pre>
<p>Note that inside a batch file you'd double each percent sign.</p>
http://stackoverflow.com/questions/769631/getting-batch-script-error-code/769664#7696640Answer by Romulo A. Ceccon for Getting Batch Script Error CodeRomulo A. Ceccon2009-04-20T19:04:20Z2009-04-20T19:16:57Z<p>Try passing this as the <code>lpCommandLine</code> parameter of <code>CreateProcess</code>:</p>
<pre><code>cmd /v:on /k <script_name> & exit !errorlevel!
</code></pre>
<p>It will turn on <em>delayed <a href="http://blogs.msdn.com/oldnewthing/archive/2006/08/23/714650.aspx" rel="nofollow">environment variable expansion</a></em> (otherwise <code>%ERRORLEVEL%</code> expands before executing <code><script_name></code>) and explicitly return the <code>ERRORLEVEL</code> returned by the script as the <code>cmd.exe</code>'s return code.</p>
http://stackoverflow.com/questions/768347/setting-a-variable-from-an-executable/768524#7685244Answer by Romulo A. Ceccon for Setting a variable from an executableRomulo A. Ceccon2009-04-20T14:32:09Z2009-04-20T14:32:09Z<p>If the returned string contains a single line you may use <strong><code>FOR /F</code></strong> to set the value of an environment variable. For example:</p>
<p><strong><code>s1.cmd</code></strong></p>
<pre><code>echo this is a one line string
</code></pre>
<p><strong><code>s2.cmd</code></strong></p>
<pre><code>@SETLOCAL
@ECHO OFF
for /f "tokens=*" %%a in ('cmd /c s1.cmd') do set MY_VAR=%%a
echo got: %MY_VAR%
ENDLOCAL
</code></pre>
<p><strong>Result</strong></p>
<pre><code>C:\> s2.cmd
got: this is a one line string
C:\>
</code></pre>
http://stackoverflow.com/questions/678684/how-do-you-read-a-file-line-by-line-in-your-language-of-choice/763918#7639181Answer by Romulo A. Ceccon for How do you read a file line by line in your language of choice?Romulo A. Ceccon2009-04-18T18:32:41Z2009-04-18T18:32:41Z<h2>Ruby</h2>
<pre><code>ARGF.each_with_index { |line, i| puts "#{i + 1}\t#{line}" }
</code></pre>
http://stackoverflow.com/questions/678684/how-do-you-read-a-file-line-by-line-in-your-language-of-choice/763916#7639161Answer by Romulo A. Ceccon for How do you read a file line by line in your language of choice?Romulo A. Ceccon2009-04-18T18:31:00Z2009-04-18T18:31:00Z<h2>Ruby</h2>
<pre><code>while gets; puts "#{$.}\t#{$_}"; end
</code></pre>
http://stackoverflow.com/questions/762458/why-does-activerecord-break-the-behavior-of-rubys-trap-and-how-do-i-work-around/763823#7638231Answer by Romulo A. Ceccon for Why does active_record break the behavior of Ruby's trap and how do I work around it?Romulo A. Ceccon2009-04-18T17:44:09Z2009-04-18T17:44:09Z<p>Have you considered updating Ruby on the Windows platform? I made some tests with <a href="http://stackoverflow.com/questions/754167/ruby-windows-activerecord-and-control-c">your code sample</a> and came out with the following results:</p>
<ul>
<li>Ruby 1.8.6-p36, Gem 1.3.2, ActiveRecord 2.2.2: <strong>FAILS</strong></li>
<li>Ruby 1.8.7-p72, Gem 1.3.1, ActiveRecord 2.1.0: <strong>WORKS</strong></li>
<li>Ruby 1.8.7-p72, Gem 1.3.2, ActiveRecord 2.2.2: <strong>WORKS</strong></li>
<li>Ruby 1.9.1-p0, Gem 1.3.1, ActiveRecord 2.3.2: <strong>WORKS sometimes</strong></li>
</ul>
http://stackoverflow.com/questions/758379/which-files-not-to-add-to-the-svn-trunk/758417#7584170Answer by Romulo A. Ceccon for which files not to add to the svn trunk?Romulo A. Ceccon2009-04-16T23:14:54Z2009-04-16T23:20:37Z<p>Manage the dependencies with <a href="http://piston.rubyforge.org/" rel="nofollow">Piston</a> and link your projects to them via <a href="http://svnbook.red-bean.com/en/1.5/svn.advanced.externals.html" rel="nofollow">SVN externals</a>. That combines complete control over external libraries (no dependency on the library's server performance) and repository tidiness (you don't end up with multiple copies of a single library scattered around the repository), while allowing you to easily switch the library's version on a by project basis.</p>
http://stackoverflow.com/questions/749049/passing-a-multi-line-string-as-an-argument-to-a-script-in-windows/757277#7572771Answer by Romulo A. Ceccon for Passing a multi-line string as an argument to a script in WindowsRomulo A. Ceccon2009-04-16T17:47:40Z2009-04-16T17:47:40Z<p>This is the only thing which worked for me:</p>
<pre><code>C:\> python a.py This" "is" "a" "string^
More?
More? It" "has" "multiple" "lines^
More?
More? There" "are" "three" "total
</code></pre>
<p>For me <a href="http://stackoverflow.com/questions/749049/passing-a-multi-line-string-as-an-argument-to-a-script-in-windows/749323#749323">Johannes' solution</a> invokes the python interpreter at the end of the first line, so I don't have the chance to pass additional lines.</p>
<p>But you said you are calling the python script from another process, not from the command line. Then why don't you use <a href="http://stackoverflow.com/questions/749049/passing-a-multi-line-string-as-an-argument-to-a-script-in-windows/749319#749319">dbr' solution</a>? This worked for me as a Ruby script:</p>
<pre><code>puts `python a.py "This is a string\nIt has multiple lines\nThere are three total"`
</code></pre>
<p>And in what language are you writing the program which calls the python script? The issue you have is with <em>argument passing</em>, not with the windows shell, not with Python...</p>
<p>Finally, as <a href="http://stackoverflow.com/questions/749049/passing-a-multi-line-string-as-an-argument-to-a-script-in-windows/749329#749329">mattkemp</a> said, I also suggest you use the standard input to read your multi-line argument, avoiding command line magic.</p>
http://stackoverflow.com/questions/500944/build-on-commit-with-subversion/753284#7532841Answer by Romulo A. Ceccon for Build on commit with subversionRomulo A. Ceccon2009-04-15T19:18:35Z2009-04-15T19:18:35Z<p>Well, you may also <a href="http://blogs.msdn.com/larryosterman/archive/2005/12/08/501613.aspx" rel="nofollow">educate your co-workers</a> if you are not willing to pay for special tools...</p>
http://stackoverflow.com/questions/752264/proper-way-to-svn-multiple-components-and-templates-of-a-cms/752585#7525852Answer by Romulo A. Ceccon for Proper way to svn multiple components and templates of a cms.Romulo A. Ceccon2009-04-15T16:35:53Z2009-04-15T16:50:55Z<p>You can decide yourself after reading the topic <a href="http://svnbook.red-bean.com/nightly/en/svn.reposadmin.planning.html#svn.reposadmin.projects.chooselayout" rel="nofollow">"Planning Your Repository Organization"</a> in the <a href="http://svnbook.red-bean.com/" rel="nofollow">SVN Book</a>.</p>
<p>It really depends on your needs. Since you said there'll be a lot of small components shared by many projects (i.e. they are tightly related) I think you'd better have a single repository with separate <code>branches</code>/<code>tags</code>/<code>trunk</code> folders:</p>
<pre><code>components/
component_1/
trunk/
tags/
branches/
component_2/
trunk/
tags/
branches/
...
project_1/
trunk/
tags/
branches/
project_2/
trunk/
tags/
branches/
...
</code></pre>
<p>That leaves open the possibility for each component to have different branches for different projects (if required).</p>
<p><a href="http://svnbook.red-bean.com/nightly/en/svn.advanced.externals.html" rel="nofollow">SVN externals</a> may also be useful in your case.</p>
http://stackoverflow.com/questions/743713/newly-created-modal-window-loses-focus-and-become-inacessible-in-windows-vista/744252#7442523Answer by Romulo A. Ceccon for Newly created modal window loses focus and become inacessible in Windows VistaRomulo A. Ceccon2009-04-13T15:26:26Z2009-04-14T13:55:54Z<p>The issue you have started happening when Windows XP introduced the concept of <em>window ghosting</em>. Due to the unusual architecture Delphi uses (all forms are children of a hidden window — <em>TApplication</em>) many Delphi applications experience the same problem.</p>
<p>One way to quickly solve it is to <a href="http://msdn.microsoft.com/en-us/library/ms648415.aspx" rel="nofollow">disable window ghosting</a> when initializing the application:</p>
<pre><code>var
User32: HMODULE;
DisableProcessWindowsGhosting: TProcedure;
begin
User32 := GetModuleHandle('USER32');
if User32 <> 0 then
begin
DisableProcessWindowsGhosting := GetProcAddress(User32, 'DisableProcessWindowsGhosting');
if Assigned(DisableProcessWindowsGhosting) then
DisableProcessWindowsGhosting;
end;
end;
</code></pre>
<p>Another possible (more elegant though laborious) solution is to <a href="http://groups.google.com/group/borland.public.delphi.vcl.components.writing/browse%5Fthread/thread/2a24d50287320dc0/730885513921e8be" rel="nofollow">normalize your Delphi application</a>.</p>
<p>A third option would be <a href="http://qc.embarcadero.com/wc/qcmain.aspx?d=3730" rel="nofollow">switching to Delphi 2006 (Delphi 10.0)</a>.</p>
<p>Besides the issue you're reporting Delphi's architecture introduces more oddities, among them the different task bar menu and the inability to <a href="http://msdn.microsoft.com/en-us/library/ms679346.aspx" rel="nofollow">flash</a>.</p>
http://stackoverflow.com/questions/706276/how-to-get-the-datetime-in-an-internationally-agnostic-way-from-the-windows-comma/741821#7418211Answer by Romulo A. Ceccon for How to get the datetime in an internationally agnostic way from the windows command-line?Romulo A. Ceccon2009-04-12T14:06:25Z2009-04-12T14:06:25Z<p>I use a small variation of the <a href="http://www.ss64.com/nt/syntax-getdate.html" rel="nofollow"><code>GetDate.cmd</code></a> script to get <em>only the date</em>:</p>
<pre><code>@SETLOCAL
@ECHO OFF
GOTO :begin
:fixdate
IF "%1:~0,1%" GTR "9" SHIFT
FOR /f "skip=1 tokens=2-4 delims=(-)" %%g IN ('echo.^|date') DO (SET %%g=%1& SET %%h=%2& SET %%i=%3)
GOTO :eof
:begin
FOR /f "tokens=1-4 delims=/-. " %%g IN ('date /t') DO (CALL :fixdate %%g %%h %%i %%j)
ECHO %aa%%yy%%mm%%dd%
ENDLOCAL
</code></pre>
<p>It takes advantage of the format output by <code>date</code> and deals with the case when <code>date /t</code> prints the weekday name before the year/month/day information. The original script, however, doesn't behave correctly when the format strings aren't <strong>yy</strong>, <strong>mm</strong> and <strong>dd</strong>. I've added a workaround which makes the script work for both English and Portuguese systems: in Portuguese the year format is <em>aa</em>; so the statement <code>%aa%%yy%</code> will print the year at <code>%aa%</code> and blank at <code>%yy%</code>, but the opposite happens on English systems.</p>
<p>There are, however, <a href="http://www.robvanderwoude.com/datetimentparse.php" rel="nofollow">safer techniques which involve parsing the date format from the Registry</a>.</p>
http://stackoverflow.com/questions/736856/svnignore-property-during-import/737767#7377671Answer by Romulo A. Ceccon for svn:ignore property during importRomulo A. Ceccon2009-04-10T14:22:14Z2009-04-10T14:22:14Z<p>I'm not sure what you mean by "applying <em>svn:ignore</em> recursively while importing".</p>
<p>If you want to exclude a set of files from being imported you can set the <em>global-ignores</em> property in <code>~/.subversion/config</code> before importing. There's no command line option to do that on-the-fly.</p>
<p>Alternatively you may <em>add</em> the directory and delete the unwanted files before committing:</p>
<pre><code>$ svn co --non-recursive <repository_url> repo_root
$ cp -R <project_to_import> repo_root
$ cd repo_root
$ svn add *
$ find . -regex ".*\.\(bak\|obj\)" | xargs svn --force del
$ svn ci
</code></pre>
<p>Although laborious I prefer the latter approach because I'm not a big fan of <em>svn import</em> (the <em>svn del</em> part is not common for me and I like to review the file list before committing).</p>
<p>Otherwise, if what you want is to set the <em>svn:ignore</em> property of every directory in the hierarchy before importing you must use the second method and do a <em>svn propset</em> (instead of <em>svn del</em>) before comitting:</p>
<pre><code>$ svn propset -R -F ignore.txt svn:ignore .
</code></pre>
<p>(You may actually do a <em>svn import</em> followed by a <em>svn propset</em>, but not in a single commit.)</p>
http://stackoverflow.com/questions/1833379/c-macro-to-transform-a-svn-revision-to-an-integerComment by Romulo A. Ceccon on C macro to transform a SVN revision to an integerRomulo A. Ceccon2009-12-02T15:11:10Z2009-12-02T15:11:10ZIf you want to automatically embed the revision number in the executable I think you are on the wrong path, since the revision number embeded through svn keywords changes only when commiting a <i>modified file</i>. Thus you can't be sure the file with the SVN_TO_INT macro will always reflect your project's revision.http://stackoverflow.com/questions/1797321/svnmerge-croaks-on-mysterious-conflictComment by Romulo A. Ceccon on svnmerge croaks on mysterious conflictRomulo A. Ceccon2009-11-25T17:18:40Z2009-11-25T17:18:40ZI think you'll need to manually merge those changes with "svn merge" and then use "svnmerge.py block" to make svnmerge aware of your changes.http://stackoverflow.com/questions/1574721/g-doesnt-like-template-method-chaining-on-template-var/1574744#1574744Comment by Romulo A. Ceccon on g++ doesn't like template method chaining on template var?Romulo A. Ceccon2009-10-15T20:15:50Z2009-10-15T20:15:50ZUnfortunately I can't do that in the actual code. I'll update the question.http://stackoverflow.com/questions/1098296/are-regular-expressions-worth-the-hassle/1098310#1098310Comment by Romulo A. Ceccon on Are regular expressions worth the hassle?Romulo A. Ceccon2009-07-08T14:37:54Z2009-07-08T14:37:54ZBut regular expressions can also get extremely complex. Use the right tool for the right job: <a href="http://blogs.msdn.com/oldnewthing/archive/2006/05/22/603788.aspx" rel="nofollow">blogs.msdn.com/oldnewthing/archive/…</a>http://stackoverflow.com/questions/1060178/how-do-you-send-raw-headers-in-rubyComment by Romulo A. Ceccon on How do you send raw headers in rubyRomulo A. Ceccon2009-06-30T02:40:08Z2009-06-30T02:40:08ZSorry, we can't help you. Would you post a piece of code so we can see how the content is being generated?http://stackoverflow.com/questions/1060178/how-do-you-send-raw-headers-in-rubyComment by Romulo A. Ceccon on How do you send raw headers in rubyRomulo A. Ceccon2009-06-29T20:07:07Z2009-06-29T20:07:07ZPlease explain how you are generating the web page. Are you using the cgi module? Is it part of a Rails application?http://stackoverflow.com/questions/1023593/how-to-write-hello-world-in-assembler-under-windows/1023600#1023600Comment by Romulo A. Ceccon on how to write hello world in assembler under windows?Romulo A. Ceccon2009-06-22T16:26:06Z2009-06-22T16:26:06ZAlthough the second example doesn't call any C library function it's not a Windows program either. Virtual DOS Machine will be fired to run it.http://stackoverflow.com/questions/920858/sorting-a-ruby-array/920979#920979Comment by Romulo A. Ceccon on Sorting a Ruby arrayRomulo A. Ceccon2009-05-28T15:52:25Z2009-05-28T15:52:25Z@mekasperasky: I've edited my answer to reflect your requirement.http://stackoverflow.com/questions/834316/how-to-convert-large-utf-8-strings-into-ascii/834334#834334Comment by Romulo A. Ceccon on How to convert large UTF-8 strings into ASCII?Romulo A. Ceccon2009-05-07T16:12:26Z2009-05-07T16:12:26Z@Jeremy: Then state your question less sneakly! "UTF-8 to ASCII conversion" sounds like a character encoding conversion problem, while what you really want is a way to represent <i>Unicode</i> (that's not the same as UTF-8) characters using the ASCII charset and a known character escaping syntax.http://stackoverflow.com/questions/769631/getting-batch-script-error-code/769719#769719Comment by Romulo A. Ceccon on Getting Batch Script Error CodeRomulo A. Ceccon2009-04-20T19:20:03Z2009-04-20T19:20:03ZHum... nice one. I missed that because I tried without "call" and it didn't work.http://stackoverflow.com/questions/764304/master-file-table-cleanup-utilityComment by Romulo A. Ceccon on Master File Table cleanup utility?Romulo A. Ceccon2009-04-20T15:41:10Z2009-04-20T15:41:10ZHow is that different from a just formatted volume?http://stackoverflow.com/questions/768347/setting-a-variable-from-an-executableComment by Romulo A. Ceccon on Setting a variable from an executableRomulo A. Ceccon2009-04-20T14:34:33Z2009-04-20T14:34:33ZNote that you need to use /C (and not /K) because you want the shell to terminate and return the string.http://stackoverflow.com/questions/678684/how-do-you-read-a-file-line-by-line-in-your-language-of-choice/680620#680620Comment by Romulo A. Ceccon on How do you read a file line by line in your language of choice?Romulo A. Ceccon2009-04-18T18:35:17Z2009-04-18T18:35:17ZAdditionally the "with" body should be surrounded in a try..finally block to avoid memory leaks.http://stackoverflow.com/questions/758379/which-files-not-to-add-to-the-svn-trunk/758417#758417Comment by Romulo A. Ceccon on which files not to add to the svn trunk?Romulo A. Ceccon2009-04-18T00:59:09Z2009-04-18T00:59:09Z@Evan: I don't see where in the documentation Piston requires your code to use a git repository. Anyway my code is stored in Subversion and Piston works without problems.http://stackoverflow.com/questions/735617/handling-extended-characters-in-windows-commands/738113#738113Comment by Romulo A. Ceccon on Handling extended characters in Windows commands?Romulo A. Ceccon2009-04-11T18:31:57Z2009-04-11T18:31:57ZYou may also use CharToOem to convert the strings just before writing them to your script: <a href="http://msdn.microsoft.com/en-us/library/ms647473.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>