jojo1·قبل 15 سنة·discussSo, you disagree with me. That's perfectly fine. But why are you down voting me for not sharing your position?I've been working a long time in the "security industry". Believe me, it has reasons why I call products like WAFs snake oil...
jojo1·قبل 15 سنة·discusshttp://marc.info/?l=openbsd-cvs&m=129543726419518&w=... http://marc.info/?l=openbsd-cvs&m=129537785019792&w=...
jojo1·قبل 15 سنة·discuss"IPsec stack audit was performed, resulting in:Several potential security problems have been identified and fixed."...nice euphemism.
jojo1·قبل 15 سنة·discussYeah, down-vote me. I like it...http://ccan.ozlabs.org/info/talloc.html talloc is LGPL v2
jojo1·قبل 15 سنة·discussCurrently the only secure way is to start a second X screen with another uid.
jojo1·قبل 15 سنة·discussxinput is still able to read all keys when xterm's secure keyboard is enabled.
jojo1·قبل 15 سنة·discussI'm using grep/awk/sed all day long, I need never more than 10 seconds to build a command group...
jojo1·قبل 15 سنة·discussGo home pru...rw@raccoon:~> du -h messages19M messagesrw@raccoon:~> time grep -e "foobar" < messagesreal 0m0.030suser 0m0.022ssys 0m0.008srw@raccoon:~> time pru /foobar/ < messagesreal 0m0.796suser 0m0.722ssys 0m0.071s
jojo1·قبل 15 سنة·discussHmmm, nobody seems to care: http://article.gmane.org/gmane.comp.version-control.git/1057...
jojo1·قبل 15 سنة·discussMaybe it's time to look at prolog. :-) P.s: Sorry for the broken new-lines.:- use module(library(clpfd)). sudoku(Rs) :- flatten(Rs,Vs), Vs ins 1 .. 9, rows(Rs), columns(Rs), blocks(Rs), label(Vs), maplist(writeln,Rs).rows(Rs) :- maplist(all distinct,Rs).columns(Rs) :- columns(9,Rs). columns(0,Rs). columns(N,Rs) :- N > 0, N1 is N-1, maplist(nth0(N1),Rs,X), all distinct(X), columns(N1,Rs).blocks([A,B,C,D,E,F,G,H,I]) :- blocks(A,B,C), blocks(D,E,F), blocks(G,H,I). blocks([],[],[]). blocks([A,B,C|Bs1],[D,E,F|Bs2],[G,H,I|Bs3]) :- all distinct([A,B,C,D,E,F,G,H,I]), blocks(Bs1,Bs2,Bs3).