Skip to content

Instantly share code, notes, and snippets.

@lasombra
lasombra / samba.3.6.1.osx-getgrouplist.patch
Created February 23, 2012 00:45 — forked from angerman/samba.3.6.1.osx-getgrouplist.patch
_SC_NGROUPS_MAX cannot be used with getgrouplist on OS X
--- system.c.orig 2012-02-22 22:46:14.000000000 -0200
+++ system.c 2012-02-22 22:47:51.000000000 -0200
@@ -1161,7 +1161,14 @@
int groups_max(void)
{
-#if defined(SYSCONF_SC_NGROUPS_MAX)
+#if defined(DARWINOS)
+ /* On OS X, sysconf(_SC_NGROUPS_MAX) returns 16
+ * due to OS X's group nesting and getgrouplist
--- lib/system.c 2012-02-23 11:30:11.000000000 -0200
+++ lib/system.c.patched 2012-02-22 22:47:51.000000000 -0200
@@ -1161,7 +1161,14 @@
int groups_max(void)
{
-#if defined(SYSCONF_SC_NGROUPS_MAX)
+#if defined(DARWINOS)
+ /* On OS X, sysconf(_SC_NGROUPS_MAX) returns 16
+ * due to OS X's group nesting and getgrouplist
@lasombra
lasombra / gist:2039351
Created March 14, 2012 20:40
Weechat on Lion with Xcode 4.3.1 complains about libintl.h
% brew install -v weechat
==> Downloading http://www.weechat.org/files/src/weechat-0.3.7.tar.bz2
File already downloaded in /Users/lasombra/Library/Caches/Homebrew
/usr/bin/tar xf /Users/lasombra/Library/Caches/Homebrew/weechat-0.3.7.tar.bz2
==> cmake -DPREFIX=/Users/lasombra/homebrew/Cellar/weechat/0.3.7 -DENABLE_RUBY=OFF -DENABLE_PERL=OFF -DENABLE_PYTHON=OFF -DCMAKE_INSTALL_PREFIX='/Users/lasombra/homebrew/Cellar/weechat/0.3.7' -DCMAKE_BUILD_TYPE=None -Wno-dev .
cmake -DPREFIX=/Users/lasombra/homebrew/Cellar/weechat/0.3.7 -DENABLE_RUBY=OFF -DENABLE_PERL=OFF -DENABLE_PYTHON=OFF -DCMAKE_INSTALL_PREFIX='/Users/lasombra/homebrew/Cellar/weechat/0.3.7' -DCMAKE_BUILD_TYPE=None -Wno-dev .
-- The C compiler identification is Clang
-- Check for working C compiler: /usr/bin/clang
-- Check for working C compiler: /usr/bin/clang -- works
-- Detecting C compiler ABI info
#!/usr/bin/env ruby
# We require...
require "httpclient"
require "json"
# Startup variables
url = "http://archive.org/advancedsearch.php"
query = {"q" => 'collection:"harvardclassicsbound" AND (collection:harvardclassicsbound)',
"output" => "json",
<?xml version="1.0"?>
<!DOCTYPE fontconfig
SYSTEM 'fonts.dtd'>
<fontconfig>
<!--Documented at
http://linux.die.net/man/5/fonts-conf
To check font mapping run the command at terminal
$ fc-match 'helvetica Neue'
WARNING :: Droid Sans font with autohinter becomes bad, without autohinter looks great, but becomes smallish, cant help
even the smallish is so good, that i am using it on desktop
Fonte: http://gohorseprocess.wordpress.com
1- Pensou, não é XGH.
XGH não pensa, faz a primeira coisa que vem à mente. Não existe
segunda opção, a única opção é a mais rápida.
2- Existem 3 formas de se resolver um problema, a correta, a errada e
a XGH, que é igual à errada, só que mais rápida.
{
"id":45,
"usuario":"Aluno Three",
"entregue":true,
"entregueEm":"2015-06-05T07:19:44Z",
"questoesRespondidas":[
{
"idQuestao":97,
"peso":1.0,
"questaoRespondida":"<p>&ldquo;Iniciar a frase com pronome &aacute;tono s&oacute; &eacute; l&iacute;cito na conversa&ccedil;&atilde;o familiar, despreocupada, ou na l&iacute;ngua escrita quando se deseja reproduzir a fala dos personagens (...)&rdquo;.&nbsp;Comparando a explica&ccedil;&atilde;o dada pelos autores sobre essa regra, pode-se afirmar que ambos:<\u002fp>\r\n<p>&nbsp;<\u002fp>",
@lasombra
lasombra / introrx.md
Last active August 29, 2015 14:25 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing

The introduction to Reactive Programming you've been missing

(by @andrestaltz)

So you're curious in learning this new thing called Reactive Programming, particularly its variant comprising of Rx, Bacon.js, RAC, and others.

Learning it is hard, even harder by the lack of good material. When I started, I tried looking for tutorials. I found only a handful of practical guides, but they just scratched the surface and never tackled the challenge of building the whole architecture around it. Library documentations often don't help when you're trying to understand some function. I mean, honestly, look at this:

Rx.Observable.prototype.flatMapLatest(selector, [thisArg])

Projects each element of an observable sequence into a new sequence of observable sequences by incorporating the element's index and then transforms an observable sequence of observable sequences into an observable sequence producing values only from the most recent observable sequence.

Verifying that +lasombra is my blockchain ID. https://onename.com/lasombra
@lasombra
lasombra / web-servers.md
Created January 27, 2016 17:28 — forked from willurd/web-servers.md
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000