User felipec - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T17:45:02Zhttp://stackoverflow.com/feeds/user/10474http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1082162/how-to-unescape-html-in-c4How to unescape html in Cfelipec2009-07-04T12:54:20Z2009-11-16T23:15:55Z
<p>I'm interested in unescaping text for example: '&#x5c;' -> '\' in C. Anyone knows of a good library?</p>
<p>By html escape I mean, all the <a href="http://en.wikipedia.org/wiki/List%5Fof%5FXML%5Fand%5FHTML%5Fcharacter%5Fentity%5Freferences" rel="nofollow">entity references</a>.</p>
http://stackoverflow.com/questions/1082162/how-to-unescape-html-in-c/1745492#17454920Answer by felipec for How to unescape html in Cfelipec2009-11-16T23:15:55Z2009-11-16T23:15:55Z<p>I wrote my own unescape code; very simplified, but does the job: <a href="http://github.com/felipec/msn-pecan/blob/master/pn%5Futil.c#L855" rel="nofollow">pn_util.c</a></p>
http://stackoverflow.com/questions/849308/pull-push-from-multiple-remote-locations/872178#8721782Answer by felipec for pull/push from multiple remote locationsfelipec2009-05-16T10:48:39Z2009-07-16T00:27:26Z<p>You can add remotes with:</p>
<pre><code>git remote add a urla
git remote add b urlb
</code></pre>
<p>Then to update all the repos do:</p>
<pre><code>git remote update
</code></pre>
http://stackoverflow.com/questions/1076300/extending-python-with-c-c/1076339#10763390Answer by felipec for Extending Python with C/C++felipec2009-07-02T19:49:24Z2009-07-02T19:49:24Z<p>Maybe <a href="http://github.com/felipec/libmtag-python/tree/master" rel="nofollow">this example</a> helps. I think it's simple enough :)</p>
http://stackoverflow.com/questions/977252/drawing-directly-to-the-screen-via-gtk-or-gdk/1071696#10716960Answer by felipec for Drawing directly to the screen via GTK or GDKfelipec2009-07-01T22:38:04Z2009-07-01T22:38:04Z<p>GTK doesn't have such option AFAIK, you probably want to use the backend: Xlib (or Xcb) for that.</p>
http://stackoverflow.com/questions/1070496/having-a-hard-time-understanding-git-fetch/1070851#10708517Answer by felipec for Having a hard time understanding git-fetchfelipec2009-07-01T19:18:02Z2009-07-01T19:18:02Z<p>First, there's no such concept of <em>local tracking</em> branches, only <em>remote tracking</em> branches. So <strong>origin/master</strong> is a remote tracking branch for <strong>master</strong> in the <strong>origin</strong> repo.</p>
<p>Typically you do <strong>git fetch $remote</strong> which updates all your remote tracking branches, and creates new ones if needed.</p>
<p>However, you can also specify a refspec, but that will not touch your remote tracking branches, instead, it will fetch the branch you specified and save it on FETCH_HEAD, unless you specify a destination. In general you don't want to mess with this.</p>
<p>Finally,</p>
<pre><code>fetch = +refs/heads/*:refs/remotes/origin/*
</code></pre>
<p>That means if you do</p>
<pre><code>git fetch origin
</code></pre>
<p>It will actually do:</p>
<pre><code>git fetch origin +refs/heads/*:refs/remotes/origin/*
</code></pre>
<p>Which means a remote <strong>heads/foobar</strong> will be local <strong>remotes/origin/foobar</strong>, and the plus sign means they'll be updated even if they are not fast-forward.</p>
<p>Perhaps what you think as a tracking branch is something related to <strong>git pull</strong> and the merge config.</p>
http://stackoverflow.com/questions/1057743/c-constants/1057801#10578010Answer by felipec for C Constantsfelipec2009-06-29T11:23:23Z2009-06-29T11:23:23Z<p>No,</p>
<pre><code>weeks = 12 * 4;
</code></pre>
<p>Is exactly the same as:</p>
<pre><code>weeks = MONTHS * 4;
</code></pre>
<p>Does <em>12</em> take memory? No, Therefore neither does <em>MONTHS</em>.</p>
http://stackoverflow.com/questions/1057087/how-to-build-twice-the-same-linux-kernel-sources-and-get-the-the-same-checksum/1057333#10573330Answer by felipec for How to build twice the same Linux Kernel sources and get the the same checksumfelipec2009-06-29T09:10:20Z2009-06-29T09:10:20Z<p>Even a simple hello world compiled twice results in different binaries. Somehow the linker is adding some information that changes in each build.</p>
http://stackoverflow.com/questions/1057054/how-to-avoid-deadlocks/1057082#1057082-1Answer by felipec for How to avoid deadlocks?felipec2009-06-29T07:59:14Z2009-06-29T08:45:23Z<p>You must code multi-thread programs very carefully. There's no short-cut, you <strong>must</strong> understand the flow of your program, otherwise you'll be doomed.</p>
http://stackoverflow.com/questions/35837/what-is-the-difference-between-mercurial-and-git/1057150#10571500Answer by felipec for What is the Difference Between Mercurial and Git?felipec2009-06-29T08:18:51Z2009-06-29T08:18:51Z<p>There's one <strong>huge</strong> difference between <em>git</em> and <em>mercurial</em>; the way the represent each commit. <em>git</em> represents commits as snapshots, while <em>mercurial</em> represents them as diffs.</p>
<p>What does this means in practice? Well, many operations are faster in git, such as switching to another commit, comparing commits, etc. Specially if these commits are far away.</p>
<p>AFAIK there's no advantage of mercurial's approach.</p>
http://stackoverflow.com/questions/1056912/source-control-vs-revision-control/1057120#10571203Answer by felipec for Source control vs. Revision Control?felipec2009-06-29T08:08:58Z2009-06-29T08:08:58Z<ul>
<li><strong>Version Control System</strong> (VCS) is the most commonly used term</li>
<li><strong>Source Code Management</strong> (SCM) is used in git, but it's sort of invented and can be confused with <strong>Software Configuration Management</strong> which is already used in the software industry and it's not the same thing.</li>
</ul>
http://stackoverflow.com/questions/1055877/git-will-a-commit-be-garbage-collected-if-its-refered-to-by-tag-but-not-by-branc/1056146#10561464Answer by felipec for git Will a commit be garbage collected if it's refered to by tag but not by branch?felipec2009-06-29T00:44:08Z2009-06-29T00:44:08Z<p>tags and branches are both <strong>refs</strong>, if a ref is pointing to a commit, it's not garbage collected. You can also have custom refs, but those are uncommon.</p>
http://stackoverflow.com/questions/927478/create-a-new-independent-process-from-another-c-process/928578#9285780Answer by felipec for Create a new independent process from another C process felipec2009-05-29T23:49:11Z2009-05-29T23:49:11Z<p>Are you sure you are checking correctly the return value of <strong>fork()</strong>?</p>
<p>Like:</p>
<pre><code>pid_t pid;
if (pid == 0) {
/* child */
}
else if (pid > 0) {
/* parent */
}
else {
/* error */
}
</code></pre>
http://stackoverflow.com/questions/926110/call-different-child-function-from-same-parent-function/928565#9285650Answer by felipec for call different child function from same parent functionfelipec2009-05-29T23:43:38Z2009-05-29T23:43:38Z<p>Something like this?</p>
<pre><code>#include <stdio.h>
void foo(void) { printf("foo\n"); }
void bar(void) { printf("bar\n"); }
static inline void parent(void func(), const char *msg)
{
/* do stuff */
func();
printf("%s called\n", msg);
/* more stuff */
}
int main(void)
{
parent(foo, "test1");
parent(bar, "test2");
return 0;
}
</code></pre>
http://stackoverflow.com/questions/913701/changing-remote-repository-for-a-git-submodule/928539#9285390Answer by felipec for Changing remote repository for a git submodulefelipec2009-05-29T23:27:19Z2009-05-29T23:27:19Z<p>Just edit your <strong>.git/config</strong> file. For example; if you have a <em>"common"</em> submodule you can do this in the super-module:</p>
<pre><code>git config submodule.common.url /data/my_local_common
</code></pre>
http://stackoverflow.com/questions/923130/what-type-of-git-server-do-you-use-or-how-do-you-use-git/928518#9285180Answer by felipec for What type of git server do you use? or how do you use git?felipec2009-05-29T23:15:46Z2009-05-29T23:15:46Z<p>I would recommend to use ssh+cgit. <strong>cgit</strong> makes it really easy to see the changes as they happen and you can even suscribe to the RSS feeds, you can do that with gitweb too, but cgit is so much faster. <strong>ssh</strong> is very easy to setup, secure and it's the preferred way to push in git.</p>
http://stackoverflow.com/questions/923956/how-to-back-up-private-branches-in-git/928505#9285050Answer by felipec for How to back up private branches in git felipec2009-05-29T23:11:49Z2009-05-29T23:11:49Z<p>There's nothing wrong with pushing personal branches. It is generally discouraged because people might start work based on your branch, and when you rebase, their changes are left floating.</p>
<p>What I do is use a prefix to denote "this is my branch, use it on your own risk", like: <strong>fc-general-cleanup</strong>.</p>
http://stackoverflow.com/questions/850607/difference-in-git-log-origin-master-vs-git-log-origin-master/872158#8721580Answer by felipec for Difference in 'git log origin/master' vs 'git log origin/master..'felipec2009-05-16T10:39:50Z2009-05-16T10:39:50Z<pre><code>git log origin/master
</code></pre>
<p>Would be like (fake command):</p>
<pre><code>git log INITIAL..origin/master
</code></pre>
<p>While:</p>
<pre><code>git log origin/master..
</code></pre>
<p>Is:</p>
<pre><code>git log origin/master..HEAD
</code></pre>
http://stackoverflow.com/questions/852561/is-it-safe-to-use-a-copied-git-repo/872146#8721461Answer by felipec for Is it safe to use a copied git repo?felipec2009-05-16T10:30:07Z2009-05-16T10:30:07Z<p>It's exactly the same, well, almost, if you want the same in 'project3' just do:</p>
<pre><code>git remote add origin /home/itsadok/project
git branch -f master origin/master
</code></pre>
http://stackoverflow.com/questions/144661/python-vs-ruby-for-metaprogramming/147111#1471116Answer by felipec for Python Vs. Ruby for Metaprogrammingfelipec2008-09-29T00:42:39Z2008-09-29T00:42:39Z<p>You are describing Ruby.</p>
<blockquote>
<ul>
<li>Good metaprogramming. Ability to create classes, methods, functions,
etc. at runtime. Preferably, minimal
distinction between code and data,
Lisp style.</li>
</ul>
</blockquote>
<p>It's very easy to extend <em>and</em> modify existing primitives at runtime. In ruby everything is an object, strings, integers, even functions.</p>
<p>You can also construct shortcuts for syntactic sugar, for example with <a href="http://www.neeraj.name/blog/articles/235" rel="nofollow">class_eval</a>.</p>
<blockquote>
<ul>
<li>Nice, clean, sane syntax and consistent, intuitive semantics.
Basically a well thought-out, fun to
use, modern language.</li>
</ul>
</blockquote>
<p>Ruby follows the <a href="http://en.wikipedia.org/wiki/Principle_of_least_surprise" rel="nofollow">principle of less surprise</a>, and when comparing Ruby code vs the equivalent in other language many people consider it more "beautiful".</p>
<blockquote>
<ul>
<li>Multiple paradigms. No one paradigm is right for every project,
or even every small subproblem within
a project.</li>
</ul>
</blockquote>
<p>You can follow imperative, object oriented, functional and reflective.</p>
<blockquote>
<ul>
<li>An interesting language that actually affects the way one thinks
about programming.</li>
</ul>
</blockquote>
<p>That's very subjective, but from my point of view the ability to use many paradigms at the same time allows for very interesting ideas.</p>
<p>I've tried Python and it doesn't fit your important points.</p>
http://stackoverflow.com/questions/1679266/can-ruby-print-out-time-difference-duration-readily/1679963#1679963Comment by felipec on Can Ruby print out time difference (duration) readily?felipec2009-11-30T22:12:50Z2009-11-30T22:12:50ZI spoke too soon; it doesn't work correctly. Should be something like:
"#{days} days and #{hours % 24} hours"
not
"#{days} days and #{hours % days} hours"http://stackoverflow.com/questions/1679266/can-ruby-print-out-time-difference-duration-readily/1679963#1679963Comment by felipec on Can Ruby print out time difference (duration) readily?felipec2009-11-30T22:00:35Z2009-11-30T22:00:35ZVery neat. I love it :Dhttp://stackoverflow.com/questions/1082162/how-to-unescape-html-in-c/1082191#1082191Comment by felipec on How to unescape html in Cfelipec2009-11-16T23:21:26Z2009-11-16T23:21:26ZHmm, I was looking for a library. Your code looks good, but the string handling makes it a bit complicated.http://stackoverflow.com/questions/35837/what-is-the-difference-between-mercurial-and-git/1057150#1057150Comment by felipec on What is the Difference Between Mercurial and Git?felipec2009-07-24T18:56:03Z2009-07-24T18:56:03ZIt is now called 'git gc', but there are different levels of garbage collection, and some levels are executed automatically in recent versions of git.http://stackoverflow.com/questions/849308/pull-push-from-multiple-remote-locations/872178#872178Comment by felipec on pull/push from multiple remote locationsfelipec2009-07-16T00:27:41Z2009-07-16T00:27:41ZOops, there was a mistake... fixed.http://stackoverflow.com/questions/1082162/how-to-unescape-html-in-c/1082244#1082244Comment by felipec on How to unescape html in Cfelipec2009-07-04T13:53:56Z2009-07-04T13:53:56ZThat's not enough, also &#nnnn; and &#xhhhh; must be converted. But ideally I would like an external library to do the job.http://stackoverflow.com/questions/1082162/how-to-unescape-html-in-c/1082191#1082191Comment by felipec on How to unescape html in Cfelipec2009-07-04T13:52:53Z2009-07-04T13:52:53ZNo, I mean all the entity references; I've updated the question with a link to them.http://stackoverflow.com/questions/1070496/having-a-hard-time-understanding-git-fetch/1070851#1070851Comment by felipec on Having a hard time understanding git-fetchfelipec2009-07-02T09:16:05Z2009-07-02T09:16:05ZYes, exactly, it's meant to be like a cached view of the remote repo that you can update at will.http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/84701#84701Comment by felipec on What's your favorite "programmer" cartoon?felipec2009-07-01T22:45:10Z2009-07-01T22:45:10ZPretty good :D Where can I find this one?http://stackoverflow.com/questions/35837/what-is-the-difference-between-mercurial-and-git/258311#258311Comment by felipec on What is the Difference Between Mercurial and Git?felipec2009-06-29T08:11:35Z2009-06-29T08:11:35Zgit is supported natively in windows, don't spread FUD.