User felipec - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T17:45:02Z http://stackoverflow.com/feeds/user/10474 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1082162/how-to-unescape-html-in-c 4 How to unescape html in C felipec 2009-07-04T12:54:20Z 2009-11-16T23:15:55Z <p>I'm interested in unescaping text for example: '&amp;#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#1745492 0 Answer by felipec for How to unescape html in C felipec 2009-11-16T23:15:55Z 2009-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#872178 2 Answer by felipec for pull/push from multiple remote locations felipec 2009-05-16T10:48:39Z 2009-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#1076339 0 Answer by felipec for Extending Python with C/C++ felipec 2009-07-02T19:49:24Z 2009-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#1071696 0 Answer by felipec for Drawing directly to the screen via GTK or GDK felipec 2009-07-01T22:38:04Z 2009-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#1070851 7 Answer by felipec for Having a hard time understanding git-fetch felipec 2009-07-01T19:18:02Z 2009-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#1057801 0 Answer by felipec for C Constants felipec 2009-06-29T11:23:23Z 2009-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#1057333 0 Answer by felipec for How to build twice the same Linux Kernel sources and get the the same checksum felipec 2009-06-29T09:10:20Z 2009-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 -1 Answer by felipec for How to avoid deadlocks? felipec 2009-06-29T07:59:14Z 2009-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#1057150 0 Answer by felipec for What is the Difference Between Mercurial and Git? felipec 2009-06-29T08:18:51Z 2009-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#1057120 3 Answer by felipec for Source control vs. Revision Control? felipec 2009-06-29T08:08:58Z 2009-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#1056146 4 Answer by felipec for git Will a commit be garbage collected if it's refered to by tag but not by branch? felipec 2009-06-29T00:44:08Z 2009-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#928578 0 Answer by felipec for Create a new independent process from another C process felipec 2009-05-29T23:49:11Z 2009-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 &gt; 0) { /* parent */ } else { /* error */ } </code></pre> http://stackoverflow.com/questions/926110/call-different-child-function-from-same-parent-function/928565#928565 0 Answer by felipec for call different child function from same parent function felipec 2009-05-29T23:43:38Z 2009-05-29T23:43:38Z <p>Something like this?</p> <pre><code>#include &lt;stdio.h&gt; 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#928539 0 Answer by felipec for Changing remote repository for a git submodule felipec 2009-05-29T23:27:19Z 2009-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#928518 0 Answer by felipec for What type of git server do you use? or how do you use git? felipec 2009-05-29T23:15:46Z 2009-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#928505 0 Answer by felipec for How to back up private branches in git felipec 2009-05-29T23:11:49Z 2009-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#872158 0 Answer by felipec for Difference in 'git log origin/master' vs 'git log origin/master..' felipec 2009-05-16T10:39:50Z 2009-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#872146 1 Answer by felipec for Is it safe to use a copied git repo? felipec 2009-05-16T10:30:07Z 2009-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#147111 6 Answer by felipec for Python Vs. Ruby for Metaprogramming felipec 2008-09-29T00:42:39Z 2008-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#1679963 Comment by felipec on Can Ruby print out time difference (duration) readily? felipec 2009-11-30T22:12:50Z 2009-11-30T22:12:50Z I spoke too soon; it doesn't work correctly. Should be something like: &quot;#{days} days and #{hours % 24} hours&quot; not &quot;#{days} days and #{hours % days} hours&quot; http://stackoverflow.com/questions/1679266/can-ruby-print-out-time-difference-duration-readily/1679963#1679963 Comment by felipec on Can Ruby print out time difference (duration) readily? felipec 2009-11-30T22:00:35Z 2009-11-30T22:00:35Z Very neat. I love it :D http://stackoverflow.com/questions/1082162/how-to-unescape-html-in-c/1082191#1082191 Comment by felipec on How to unescape html in C felipec 2009-11-16T23:21:26Z 2009-11-16T23:21:26Z Hmm, 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#1057150 Comment by felipec on What is the Difference Between Mercurial and Git? felipec 2009-07-24T18:56:03Z 2009-07-24T18:56:03Z It 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#872178 Comment by felipec on pull/push from multiple remote locations felipec 2009-07-16T00:27:41Z 2009-07-16T00:27:41Z Oops, there was a mistake... fixed. http://stackoverflow.com/questions/1082162/how-to-unescape-html-in-c/1082244#1082244 Comment by felipec on How to unescape html in C felipec 2009-07-04T13:53:56Z 2009-07-04T13:53:56Z That's not enough, also &amp;#nnnn; and &amp;#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#1082191 Comment by felipec on How to unescape html in C felipec 2009-07-04T13:52:53Z 2009-07-04T13:52:53Z No, 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#1070851 Comment by felipec on Having a hard time understanding git-fetch felipec 2009-07-02T09:16:05Z 2009-07-02T09:16:05Z Yes, 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#84701 Comment by felipec on What's your favorite "programmer" cartoon? felipec 2009-07-01T22:45:10Z 2009-07-01T22:45:10Z Pretty good :D Where can I find this one? http://stackoverflow.com/questions/35837/what-is-the-difference-between-mercurial-and-git/258311#258311 Comment by felipec on What is the Difference Between Mercurial and Git? felipec 2009-06-29T08:11:35Z 2009-06-29T08:11:35Z git is supported natively in windows, don't spread FUD.