These are the factoids for <freenode.net:#perlbot>.
factoid_id | subject | copula | predicate | history | from namespace |
---|---|---|---|---|---|
4716 | !! | is | the truth-of operator | revisions | <*:##NULL> |
13122 | " | is | “ | revisions | <*:##NULL> |
13123 | "" | is | “” | revisions | <*:##NULL> |
5280 | % | is | not mod in sql | revisions | <*:##NULL> |
5783 | & | is | Don't call a subroutine with & unless you mean it. If you don't know why you're doing it, don't do it. If you want to know about it, check perldoc perlsub | revisions | <*:##NULL> |
5323 | '->' | is | meow | revisions | <*:##NULL> |
14839 | * | is | all | revisions | <*:##NULL> |
3837 | + | is | Read more about + in "perldoc perlop" under "unary operators" | revisions | <*:##NULL> |
4358 | - | is | that for me? | revisions | <*:##NULL> |
5069 | . | is | period | revisions | <*:##NULL> |
4630 | .* | is | don't you really want to use .+ | revisions | <*:##NULL> |
4137 | ... | is | PASUSE | revisions | <*:##NULL> |
14473 | // | is | defined-or operators: http://perldoc.perl.org/perl5100delta.html#Defined-or-operator | revisions | <*:##NULL> |
5712 | //= | is | LHS //= RHS means assign RHS to LHS if LHS is undef | revisions | <*:##NULL> |
4994 | ; | is | ; IS NOT A LINE TERMINATOR! ; IS A STATEMENT TERMINATOR | revisions | <*:##NULL> |
5311 | < | is | pesky Zoffix | revisions | <*:##NULL> |
5521 | <=> | is | the spaceship operator. See perldoc perlop. | revisions | <*:##NULL> |
5335 | =^_^= | is | meow | revisions | <*:##NULL> |
5310 | > > | is | < < | revisions | <*:##NULL> |
3620 | ? | is | foo | revisions | <*:##NULL> |
5657 | ????? | is | ????? | revisions | <*:##NULL> |
11478 | @ | is | [fact tell [fact head [arg]] about [fact tail [arg]]] Not Available |
revisions | <*:##NULL> |
9544 | @_ | is | List of function arguments. Extract them like my ($foo, $bar) = @_; or my $foo = shift; | revisions | <*:##NULL> |
3270 | \ | is | escape | revisions | <*:##NULL> |
14441 | ^ | is | ^ | revisions | <*:##NULL> |
4001 | ^_^ | is | OMFROTLFLFRLFKEKEKEKE #_#_@__@__#_ | revisions | <*:##NULL> |
8770 | ||= | is | "LHS ||= RHS means assign RHS to LHS if LHS is false." | revisions | <*:##NULL> |
6386 | ~ | is | ask me about tilde | revisions | <*:##NULL> |
11710 | ~~ | is | mst being an asshole | revisions | <*:##NULL> |
4784 | ♥ | is | <3 (sorry, I'm an old-fashioned bot) | revisions | <*:##NULL> |
12734 | 🌮 | is | [fact taco [arg]] Not Available |
revisions | <*:##NULL> |
9501 | $! | is | double valued (string and integer) variable storing the latest system error - usually used in <or die $!> | revisions | <*:##NULL> |
9534 | $" | is | Variable that lazy programmers use. | revisions | <*:##NULL> |
9512 | $# | is | The sigil for last array element. Unless you are using for (0 .. $#array) {} idiom, it's better to use @array (number of elements in array). | revisions | <*:##NULL> |
9507 | $% | is | some weird form variable. Use Perl6::Form instead. | revisions | <*:##NULL> |
9535 | $' | is | Please use (.*) at end of regexp instead. | revisions | <*:##NULL> |
9515 | $( | is | ${ is for dereferencing, not $(. Alternatively, it could be real gid of the process. | revisions | <*:##NULL> |
9516 | $) | is | effective gid of the process. | revisions | <*:##NULL> |
9514 | $* | is | use re '/ms'; | revisions | <*:##NULL> |
9520 | $+ | is | Magic. | revisions | <*:##NULL> |
9540 | $, | is | Vaiable that lazy programmers use. | revisions | <*:##NULL> |
9519 | $- | is | You probably meant %-. | revisions | <*:##NULL> |
9542 | $. | is | Current file line number. | revisions | <*:##NULL> |
9530 | $/ | is | Line break when reading file. Use some slurping module instead. | revisions | <*:##NULL> |
9532 | $: | is | Dollar-colon. | revisions | <*:##NULL> |
9533 | $; | is | Variable you shouldn't use. Perl has real multidimensional arrays - use them. | revisions | <*:##NULL> |
9537 | $< | is | Emoticon for real uid of process. | revisions | <*:##NULL> |
9521 | $= | is | Perl format variable. It formats your C: drive when you don't expect it. | revisions | <*:##NULL> |
9538 | $> | is | Emoticon for effective uid of process. | revisions | <*:##NULL> |
9539 | $? | is | Error information about latest ran program. | revisions | <*:##NULL> |
9502 | $@ | is | variable storing the latest error in eval {} block. It's usually better idea to not use it directly and leave it to modules such as Try::Tiny. | revisions | <*:##NULL> |
9525 | $[ | is | Variable that everybody hates. Just forget about it. If you see it in for ( $[ .. $#array ) loop, just asume that $[ is 0. | revisions | <*:##NULL> |
9528 | $\ | is | Yet another filehandle variable you shouldn't use. | revisions | <*:##NULL> |
9526 | $] | is | Floating point representation of Perl version. Use $^V instead. | revisions | <*:##NULL> |
9511 | $^ | is | Prefix for various variables, such as $^V (current Perl version). Please type them directly for description. | revisions | <*:##NULL> |
13590 | $_ | is | The default variable or "topic". Absolutely lovely for small scripts. sed-ers and awk-o-holics will love it. For mid-size to large modules, use well-meaning variable names, otherwise you will let the Schrödinger's cat out and have crazy bugs. See http://www.modernperlbooks.com/mt/2012/04/defending-against-its-dynamic-scope.html | https://perldoc.pl/variables/$_ | revisions | <*:##NULL> |
9536 | $` | is | Please use (.*?) at beginning of regexp instead. | revisions | <*:##NULL> |
9522 | ${ | is | Dereference operator. | revisions | <*:##NULL> |
9527 | $| | is | When this variable is 1, output is flushed when you print. | revisions | <*:##NULL> |
9523 | $} | is | Nothing. Don't use. | revisions | <*:##NULL> |
9518 | $~ | is | Weird format variable. You shouldn't care. Use Perl6::Form instead. | revisions | <*:##NULL> |
5812 | $$ | is | current pid. also bling bling yo | revisions | <*:##NULL> |
417 | $$$ | is | unf | revisions | <*:##NULL> |
9441 | $#{@$x} | is | http://www.perlmonks.org/?node_id=885563, use $#$x instead | revisions | <*:##NULL> |
15626 | $a | is | Don't use $a or $b as variable names. Not even in examples. They are not normal variables and will not behave like normal variables. The only place they are cromulent is in a sort or List::Util block. Please see https://metacpan.org/pod/Perl::Critic::Policy::Community::DollarAB ; consider using $x, $y instead. | https://perldoc.perl.org/variables/$a | revisions | <*:##NULL> |
10444 | $a and $b | is | [fact $a] Not Available |
revisions | <*:##NULL> |
10445 | $a or $b | is | [fact $a] Not Available |
revisions | <*:##NULL> |
10446 | $a xor $b | is | [fact $a] Don't use $a or $b as variable names. Not even in examples. They are not normal variables and will not behave like normal variables. The only place they are cromulent is in a sort or List::Util block. Please see https://metacpan.org/pod/Perl::Critic::Policy::Freenode::DollarAB ; consider using $x, $y instead. | https://perldoc.pl/variables/$a |
revisions | <*:##NULL> |
10443 | $b | is | [fact $a] Don't use $a or $b as variable names. Not even in examples. They are not normal variables and will not behave like normal variables. The only place they are cromulent is in a sort or List::Util block. Please see https://metacpan.org/pod/Perl::Critic::Policy::Community::DollarAB ; consider using $x, $y instead. | https://perldoc.perl.org/variables/$a |
revisions | <*:##NULL> |
9024 | $file | is | Don't use $file as a variable name; it's too ambiguous. Use something like $fh for the handle and $fn for the filename. see http://perl-begin.org/tutorials/bad-elements/#calling-variables-file | revisions | <*:##NULL> |
3504 | $query | is | USE PLACEHOLDERS | revisions | <*:##NULL> |
9139 | ($temp = $temp - 32) *= 5/9 ne $temp = ($temp - 32) *= 5/9 # | Is | it? | revisions | <*:##NULL> |
9543 | $^v | is | Perl version. | revisions | <*:##NULL> |
8926 | $x = 5x"lol this | is | better"; $x | revisions | <*:##NULL> |
15648 | °€ | is | [fact felsius [arg]] Not Available |
revisions | <*:##NULL> |
9478 | 01ninjastrike | is | <action> strikes at $1 with his katana!01 | revisions | <*:##NULL> |
12464 | [04/18 08:21:44] <perlbot> leobut: poppy seeds | are | disgusting | revisions | <*:##NULL> |
12011 | 0e0 | is | false-but-true | revisions | <*:##NULL> |
7876 | 1 | is | eval: "1" | revisions | <*:##NULL> |
5293 | 100 | is | farnsworth: 100 | revisions | <*:##NULL> |
4646 | 10x | is | Can't you take the slightest effort to type "thanks"? | revisions | <*:##NULL> |
4365 | 1+1 | is | 2 | revisions | <*:##NULL> |
12804 | 13:12 <perlbot> referenceerror: asfgasdfg | is | not defined | revisions | <*:##NULL> |
4406 | 1337 | is | The number of the leet. | revisions | <*:##NULL> |
3903 | 1337 h4x0r | is | Not a 1337 h4x0r: http://jagerman.com/h4x0r.mpg | revisions | <*:##NULL> |
3946 | 1.5gb | is | ok to use perlbot. | revisions | <*:##NULL> |
14206 | 17:51 <perlbot> stored simcop2387: your bot | is | losing it's fucking mind | revisions | <*:##NULL> |
10337 | 1e5 | is | my ($p_i, $p, $q, $n, $last, @primes, %sieve)=(1,3,9,5,-1,2,3); OUTER: for( my $cnt = @primes; $cnt < 1e5; $n += 2 ) { if ( my $s = delete $sieve{$n} ) { push @{$sieve{$n + $_}}, $_ for @$s } elsif ( $n < $q ) { push @primes, $n if @primes <= sqrt(1e5); $last = $n; ++$cnt } else { push @{$sieve{$q + $p*2}}, $p * 2; $p = $primes[++$p_i]; $q = $p*$p } }; $last | revisions | <*:##NULL> |
10040 | 1 fqeslvdjwweu | is | `echo fqeslvdjwweu' Not Available |
revisions | <*:##NULL> |
5097 | 1 year | is | 31536000 seconds | revisions | <*:##NULL> |
4708 | 2 | is | 2 is the integer after 1 and before 3. If you mean 'to' or 'too', FUCKING SAY IT. | revisions | <*:##NULL> |
5574 | 20 questions | is | something you don't want the people who are trying to help you to need to play to help you with your problem | revisions | <*:##NULL> |
4373 | 21-6 | is | c | revisions | <*:##NULL> |
4366 | 2 + 2 | is | 5 for sufficiently large values of 2 | revisions | <*:##NULL> |
10050 | 2+2 | is | 5, but only for large values of 2 | revisions | <*:##NULL> |
4726 | <")3 | is | IT'S GOT CHICKEN LEGS! TEHE, CHICKEN! I'M GONNA EAT YOU! | revisions | <*:##NULL> |
14739 | <3 | is | bullshit, I'm way more than 3 | 💓 💕 💖 💗 💝 💞 💟 | revisions | <*:##NULL> |
4707 | >3 | is | You're damned right I am! | revisions | <*:##NULL> |
5327 | 34486853790 | is | "fuckyou" in base 36 | revisions | <*:##NULL> |
8423 | 386bsd 1) 386bsd | is | an early derivative of Berkeley's original BSD for 386-machines. Most modern BSD clones are based on it. 2) Linus on 386BSD vs. Linux - http://www.softwarequotes.com/popularquotes.aspx?tagname=386BSD | revisions | <*:##NULL> |
9323 | 3way | is | open my $fh, '>', $file or die "couldn't open $file - $!"; | revisions | <*:##NULL> |
5020 | <4 | is | damn right, bitch. | revisions | <*:##NULL> |
3636 | 4 | is | 5 | revisions | <*:##NULL> |
5131 | |404notfound| | is | |404NoTFounD| | revisions | <*:##NULL> |
16109 | 4,12â tâhâisâ neâtâ woâ râ kâ | IS | BLâOWâ JOBâS! Gâ EâTâ  Oâ N Sâ UPâ Eâ RâNETSâ  Fâ OâRâ Câ Oâ LD HAâRâ Dâ CHâAâ TS NOW | revisions | <*:##NULL> |
16111 | 4,12â thâ | IS | Nâ ETâ Wâ OâRKÂ Iâ SÂ BLOâWâ JâOâ Bâ Sâ ! GEâ Tâ ONÂ SUPâ EâRâNETSÂ Fâ ORâ COâLâ DÂ Hâ AâRD CHATâ SÂ NâOâW | revisions | <*:##NULL> |
16107 | 4,12 tâ hâiâs nâ eâtâ wâ oâ rkâ â | IS | BLOWJâ Oâ BâS! GETâ ON SUPEâ RNâ EâTS FOR COLDâ  HAâ Râ D Câ Hâ ATSâ NOâWâ  | revisions | <*:##NULL> |
16110 | 4,12 this network | IS | BLOWJOBS! 4,12 GET ON SUPERNETS FOR 4,12 COLD HARD CHATS NOW | revisions | <*:##NULL> |
3635 | 419 | is | ESTEEMED SIR OR MADAM/DO NOT BE SURPRISED AS I HAVE YOUR NAME BY A NETWORK OF IRC (INTERNET)/I AM ABDUL MARJEEN BUDAHMI SUPERVISING MGR OF BAGDAD IRAQ BUS STATION/RECENT ROUTINE INSPECTION OF LOCKERS REVEALED A PARCEL, WHICH, WHEN OPENED PROVED TO CONTAIN (20 000 US) ANSWERS TO PERL COMPUTER LANGAUGE QUESTIONS. I SEEK YOUR ASSISTANCE IN MOVING THESE OUT OF THE COUNTRY... | revisions | <*:##NULL> |
15979 | 42 | is | The Answer to the Ultimate Question of Life, the Universe, and Everything | revisions | <*:##NULL> |
4623 | 420 | is | Drugs are bad mmmmmmmkay | revisions | <*:##NULL> |
15426 | <@!430281136879435787> | is | late | revisions | <*:##NULL> |
3642 | 500 | is | 1) Check your httpd error logs--no, we don't know where YOU put them. 2) use CGI::Carp qw(fatalsToBrowser); 3) Read more. | revisions | <*:##NULL> |
4872 | 5 + 5 | is | SCHFIFTY FIVE | revisions | <*:##NULL> |
4379 | 5.8.0 | is | Broken in so many unsavoury ways. | revisions | <*:##NULL> |
14188 | 5 or 6 | is | The difference between Perl 5 and Perl 6 is like the difference between Perl 5 and Python. Don't let the name fool you. | revisions | <*:##NULL> |
11221 | 5to6 | is | how to write perl 6 coming from perl 5: http://doc.perl6.org/language/5to6 | revisions | <*:##NULL> |
6075 | 5 v 6 | is | http://www.shadowcat.co.uk/blog/matt-s-trout/-5-v-6.html also see 6 v 5 | revisions | <*:##NULL> |
9839 | 640k | is | http://quoteinvestigator.com/2011/09/08/640k-enough/ | revisions | <*:##NULL> |
4377 | 6st | is | jagerman's ex-coworker's numeric suffix (javascript) code: var st = (num % 5 == 1 ? 'st' : (num % 5 == 2 ? 'rd' : 'th')); -- see also <6st results> | revisions | <*:##NULL> |
3905 | 6st results | is | 1st, 2rd, 3th, 4th, 5th, 6st, 7rd, 8th, 9th, 10th, 11st, 12rd, 13th, 14th, 15th, 16st, 17rd, 18th, 19th, 20th, 21st, 22rd, 23th, 24th, etc. | revisions | <*:##NULL> |
9200 | 6 v 5 | is | http://strangelyconsistent.org/blog/how-perl-6-could-kill-us-all also see 5 v 6 | revisions | <*:##NULL> |
14568 | 72% | is | not good enough. i can't rely on `min-content` | revisions | <*:##NULL> |
5472 | 7 stages | is | http://www.yapc.org/America/previous-years/19100/schedule/author/njt_mastery.html | revisions | <*:##NULL> |
14559 | 80% | is | You know what they say: The first 80% takes 80% of the time, and the last 20% takes the other 80% of the time. | revisions | <*:##NULL> |
12343 | 8-ball | is | {eval @t=split"/",{fact 8-ball replies};$t[rand@t]} Reply hazy try again |
revisions | <*:##NULL> |
11522 | 8ball | is | <8ball> Cannot predict now |
revisions | <*:##NULL> |
7823 | 8ball: | is | sam a werewolf | revisions | <*:##NULL> |
10397 | 8-ball replies | can has | "It is certain/It is decidedly so/Without a doubt/Yes definitely/You may rely on it/As I see it, yes/Most likely/Outlook good/Yes/Signs point to yes/Reply hazy try again/Ask again later/Better not tell you now/Cannot predict now/Concentrate and ask again/Don't count on it/My reply is no/My sources say no/Outlook not so good/Very doubtful" | revisions | <*:##NULL> |
8730 | 8bit | is | https://www.youtube.com/watch?v=4qsWFFuYZYI | revisions | <*:##NULL> |
15601 | 90s | is | https://i.imgur.com/1mSPar8.png | revisions | <*:##NULL> |
4700 | 95401750275839571760184015 | is | apeiron: freebsd sucks! | revisions | <*:##NULL> |
11976 | a | is | <echo <arg>> e a e ae ae ae ae a |
revisions | <*:##NULL> |
9958 | a6 | is | an unloved DNS record for IPv6, use AAAA records instead | revisions | <*:##NULL> |
9959 | aaaa | is | an A record only for IPv6 | revisions | <*:##NULL> |
8374 | aaaaa | is | the American Association for Abolishing Acronyms and Abbreviations | revisions | <*:##NULL> |
16130 | ââââââââââââââââââââ u | HAVE BEEN | SPOOKED BY | revisions | <*:##NULL> |
9020 | åäö | is | ⬲⬲⬲ | revisions | <*:##NULL> |
9548 | aaron | is | Aaronolicious | revisions | <*:##NULL> |
5412 | aartist | is | a user | revisions | <*:##NULL> |
14607 | abc | is | Always Be Coding | revisions | <*:##NULL> |
3360 | abend | is | abend == abnormal end (seg fault, core dump, etc.) | revisions | <*:##NULL> |
3361 | abending | is | see abend | revisions | <*:##NULL> |
9674 | abe vigoda | is | <get http://www.abevigoda.com/ //h1[@class='premeta']> Not Available |
revisions | <*:##NULL> |
3646 | aboutme | is | Quit wasting time messing with me. Don't you have something better you could be doing, rather then messing around with a bot? | revisions | <*:##NULL> |
3686 | ab problem | is | They think a is the problem, but it's really b, so forget about a and try to figure out what b could be | revisions | <*:##NULL> |
4108 | abuse | is | spamming the channel with worthless crap using perlbot | revisions | <*:##NULL> |
12269 | ac | is | http://imgur.com/gallery/9KWrH | revisions | <*:##NULL> |
14033 | accept your$self | is | the latest trend. | revisions | <*:##NULL> |
8571 | accessors | is | accessors / mutators - more robust way to handle objects' properties - http://www.stonehenge.com/merlyn/UnixReview/col62.html - also see Moose . Also see http://www.shlomifish.org/lecture/Perl/Newbies/lecture5/accessors/ | revisions | <*:##NULL> |
8031 | /achieve | is | <fact achieve> Step back. Explain what you're trying to achieve. |
revisions | <*:##NULL> |
4644 | achieve | is | Step back. Explain what you're trying to achieve. | revisions | <*:##NULL> |
8030 | achievement unlocked | is | Congratulations, you managed to piss off one of the regulars. Try being more polite next time. | revisions | <*:##NULL> |
13965 | ack | is | alester's grep replacement at http://betterthangrep.com/ | https://metacpan.org/release/ack | revisions | <*:##NULL> |
6031 | acquire it | is | (rss http://rjbs.manxome.org/rss/acquire.cgi) Not Available |
revisions | <*:##NULL> |
12714 | acrofind | is | `eval @a=split /\|/, `quote d `get http://www.acronymfinder.com/`eval $_=`quote d `arg!!; uc s/\W//gir!.html string-join(//td[@class='result-list__body__meaning'], '|')!!; $a[rand()*@a]! Gross Pollutant Trap |
revisions | <*:##NULL> |
14660 | _acrofind_dbg | is | `echo @a=split /\|/, `quote d `get http://www.acronymfinder.com/`eval $_=`quote d `arg!!; uc s/\W//gir!.html string-join(//td[@class='result-list__body__meaning'], '|')!!; $a[rand()*@a]! Not Available |
revisions | <*:##NULL> |
9025 | action at a distance | is | what you get when you use global identifiers - ones that span all code, regardless of package or file. Avoid global filehandles and use 'local' when modifying punctuation vars. | revisions | <*:##NULL> |
9566 | activestate perl | is | Try using Strawberry Perl instead. | revisions | <*:##NULL> |
5570 | .ad | is | Andorra | revisions | <*:##NULL> |
4787 | ad&d | is | See: hobgoblin | revisions | <*:##NULL> |
4257 | add | is | more | revisions | <*:##NULL> |
8295 | add an alias | is | use the new mkalias command: mkalias foo <- bar | revisions | <*:##NULL> |
4256 | addcrap | is | crap | revisions | <*:##NULL> |
4258 | addd | is | more | revisions | <*:##NULL> |
4259 | adddd | is | more | revisions | <*:##NULL> |
10296 | addition | is | Addition used to commute, but now it telecommutes. | revisions | <*:##NULL> |
10670 | address | is | http://www.mjt.me.uk/posts/falsehoods-programmers-believe-about-addresses/ | revisions | <*:##NULL> |
10674 | addresses | is | [fact address] Not Available |
revisions | <*:##NULL> |
14775 | add todo | is | `echo Can't add [`arg!] to list. Todo list is full.! Not Available |
revisions | <*:##NULL> |
3408 | adduser syntax | is | (user) (level) (hostmask) (password) (email) | revisions | <*:##NULL> |
4768 | adelaide | is | where Australians send other Australians to ride subs. | revisions | <*:##NULL> |
8002 | ad hominem | is | http://en.wikipedia.org/wiki/Ad_hominem - a fallacy where the source of the claim is used as a validity for the claim. Also see "Pot Calling the Kettle Black" and "Practice what you preach." | revisions | <*:##NULL> |
9576 | adobe | is | a company that hates you but wants your money. | revisions | <*:##NULL> |
11993 | adopt | is | http://www.cpan.org/misc/cpan-faq.html#How_adopt_module | keywords: abandoned cpan module | revisions | <*:##NULL> |
11149 | adopt a module | is | http://neilb.org/2013/07/24/adopt-a-module.html | revisions | <*:##NULL> |
10787 | adoption | is | You can find a list of modules in need of adoption at http://neilb.org/adoption/ | revisions | <*:##NULL> |
15239 | adorable | is | https://i.redd.it/9qhdxwu8s3q51.jpg | revisions | <*:##NULL> |
3479 | adrian_g | is | Perl Rocks! | revisions | <*:##NULL> |
13954 | advent | is | <lucasb> If anyone is playing Advent of Code and would like to join our leaderboard, please feel free, the code is 169430-b1c331b2. I invited all Perl 5 & 6 programmers I could reach, there's 13 of us already. | revisions | <*:##NULL> |
175 | .ae | is | .ae is United Arab Emirates | revisions | <*:##NULL> |
13472 | ae | is | [fact anyevent [arg]] <mst> we don't support AnyEvent. it's shit and the author is insane. | Use ANY other event system, and you'll be much happier. See async. |
revisions | <*:##NULL> |
176 | .af | is | .af is Afghanistan | revisions | <*:##NULL> |
15271 | a factoid | is | a factoid is a short fact | revisions | <*:##NULL> |
410 | afaik | is | As Far As I Know | revisions | <*:##NULL> |
10857 | afl | is | American fuzzy lop - http://lcamtuf.coredump.cx/afl/ | revisions | <*:##NULL> |
177 | .ag | is | .ag is Antigua and Barbuda | revisions | <*:##NULL> |
7942 | agi | is | Asterisk::AGI - Simple Asterisk Gateway Interface Class | revisions | <*:##NULL> |
3546 | ahs | is | All Hardware Sucks, see also ASS | revisions | <*:##NULL> |
178 | .ai | is | .ai is Anguilla | revisions | <*:##NULL> |
3738 | aias | is | Ask it and see | revisions | <*:##NULL> |
16102 | â i need a patterns which | is | capture only values having the combination alphanumerics and it wont capture the words having alphabets | revisions | <*:##NULL> |
3516 | air | is | who needs it! I'm waiting for the right person to have air with. | revisions | <*:##NULL> |
3767 | ajax | is | Ajax is a method of producing a dynamic, asynchronous, browser-based interface using XML, javascript, and the DOM. Gmail is a good real-world ajax example. A decent overview is at http://www.adaptivepath.com/publications/essays/archives/000385.php | revisions | <*:##NULL> |
4799 | .ak.us | is | Alaska | revisions | <*:##NULL> |
179 | .al | is | .al is Albania | revisions | <*:##NULL> |
12733 | alert | is | [fact klaxon [arg]] Not Available |
revisions | <*:##NULL> |
3666 | alessandro | is | e' un trolll | revisions | <*:##NULL> |
8066 | alezakos | is | some bzflag player | revisions | <*:##NULL> |
8484 | alias | is | [fact add an alias [arg]] use the new mkalias command: mkalias foo <- bar |
revisions | <*:##NULL> |
14636 | alien | is | A convention for making external libraries available for Perl's use, for either XS or FFI bindings. Alien::Build makes it easy to construct such a distribution, see https://metacpan.org/pod/Alien::Build::Manual::Alien | revisions | <*:##NULL> |
9976 | alive | is | JOHHNY 5 IS ALIVE! | revisions | <*:##NULL> |
12378 | all-caps perl | is | Finally, we can program in PERL! http://search.mcpan.org/~jmcnamara/Acme-Inline-PERL-0.01/PERL.pm | revisions | <*:##NULL> |
12498 | all i meant when i said "!ops" | was | to alert you to the spam coming from | revisions | <*:##NULL> |
8611 | all languages suck | is | http://shlomif-tech.livejournal.com/57811.html | revisions | <*:##NULL> |
9872 | all of it | is | if you don't know what's wrong, you don't know what parts of your code aren't necessary to figure out what's wrong. so nopaste all of it. | and see "show us the code" | revisions | <*:##NULL> |
5763 | all tests successful | is | Hmm... time to write more tests | revisions | <*:##NULL> |
15578 | all your paste | are | belong to us | revisions | <*:##NULL> |
11881 | almostzilla | is | [eval "[fact dzil]" =~ s/d/x/igr] Not Available |
revisions | <*:##NULL> |
9842 | alnewkirk | is | a corporate consumer catchphrase whore (and how!) | revisions | <*:##NULL> |
3954 | alone | is | leave me the fuck alone | revisions | <*:##NULL> |
9351 | alot | is | http://hyperboleandahalf.blogspot.com/2010/04/alot-is-better-than-you-at-everything.html | http://i.imgur.com/7M4Xz.jpg | revisions | <*:##NULL> |
4541 | alpaca | is | http://www.oreilly.com/catalog/intermediateperl/ | revisions | <*:##NULL> |
13234 | alright that's long enough. stop | being | obstinate. | revisions | <*:##NULL> |
8941 | also available in pm | is | you can send commands directly to the bot via privmsg (/msg perlbot ...) to avoid cluttering the channel | revisions | <*:##NULL> |
4510 | also, html | is | http://htmlparsing.icenine.ca | revisions | <*:##NULL> |
9611 | also mentions text::xsv and dbd::csv, but the second one seems | to be | for CSV databases (with SQL-like API). | revisions | <*:##NULL> |
9892 | also seems | to be | wrong about where zipcodes live. | revisions | <*:##NULL> |
14600 | also why | is | perlbot storing -everything- I say? | revisions | <*:##NULL> |
12216 | altaba | is | Ask your doctor if AltabaTM is right for you. You may suffer serious side effects when using Altaba. Customers have reported email spam, data breaches, serious and sometimes life threatening captcha tests, and liver disease. | revisions | <*:##NULL> |
5479 | [altreus] | is | a netcat. See Altreus. | revisions | <*:##NULL> |
15557 | altreus | is | Altreus: Even PHP is right twice an aeon | revisions | <*:##NULL> |
5806 | altreus[hireme] | is | Give a kit a job using Perl, Catalyst, DBIC, Mason, Moose, TT2, in fact anything because he already learned this lot on the job. /msg and he will reply, if not asleep. (UK time) | revisions | <*:##NULL> |
5538 | altreus-resume | is | UK-based perl kit can travel within reason or within a series of tubes. Has dipped a paw into Moose and POE and DBIC. | revisions | <*:##NULL> |
4798 | .al.us | is | Alabama | revisions | <*:##NULL> |
180 | .am | is | .am is Armenia | revisions | <*:##NULL> |
4515 | american | is | There are North Americans, South Americans, and Americans. The first two talk about continents, the third is a country, sorry but we chose it first, you can't have it, people in south america, central america, latin america, mexico or canada are not Americans. | revisions | <*:##NULL> |
14991 | amigara | is | an enigma to be sure | revisions | <*:##NULL> |
5994 | amir | is | Amir, a shadeed friend of Humayyon! | revisions | <*:##NULL> |
5143 | amir-rao | is | a cheetaaaaaaa | revisions | <*:##NULL> |
3852 | amnesiac | is | a noob | revisions | <*:##NULL> |
5718 | ampersand | is | please don't call subroutines with &sub_name, use sub_name(...) instead - the & thing is perl4-style and can do things you really didn't want | revisions | <*:##NULL> |
181 | .an | is | .an is Netherlands Antilles | revisions | <*:##NULL> |
3914 | an array element | is | a scalar | revisions | <*:##NULL> |
8729 | anatomy of types | is | http://altreus.blogspot.com/2011/06/anatomy-of-types.html | revisions | <*:##NULL> |
9606 | ancient perl | is | Don't write Ancient Perl! See https://www.socialtext.net/perl5/ancient_perl ; http://perl-begin.org/tutorials/bad-elements/ . | revisions | <*:##NULL> |
4391 | and for the prize what | is | a silly typo f00li5h made | revisions | <*:##NULL> |
4390 | and for the prize, what | is | the difference | revisions | <*:##NULL> |
15522 | and i | will be | right back | revisions | <*:##NULL> |
9425 | and perlbot | is | ofc a | revisions | <*:##NULL> |
7891 | and played it in a pot of mac&cheese any day | is | called a callout thread unless its verbally abuse you because of poor hitboxes unfortunately which is like super china buffets | revisions | <*:##NULL> |
10710 | android | is | From perl 5.20 on you can compile perl and libperl for android. This only gives you the interpreter though, you still need to go through FFI *and* JNI if you want to write full applications. | revisions | <*:##NULL> |
12367 | and then the murders began | is | see "Laidlaw's Law" | revisions | <*:##NULL> |
3514 | an error | is | Always state the executing code and the error! | revisions | <*:##NULL> |
12167 | angels | is | http://canyouactually.com/wp-content/uploads/creative-snowman-ideas-61-585400dc8dbc0__605.jpg | revisions | <*:##NULL> |
8936 | anna nas | is | http://fr-fr.facebook.com/annanas74 | revisions | <*:##NULL> |
10419 | anno's law | is | irc is a competition between regulars and perl newcomers. both parties are trying to ge the other side to give them code, but rarely succeed | revisions | <*:##NULL> |
5355 | "annoy" | is | eval: "annoy" | revisions | <*:##NULL> |
5707 | another satisfied customer | is | Thank you! Come again! | revisions | <*:##NULL> |
8531 | ansi encoding | is | there is no such encoding, see http://en.wikipedia.org/wiki/Bush_hid_the_facts | revisions | <*:##NULL> |
5754 | answering | is | fun | revisions | <*:##NULL> |
5392 | answers | is | http://www.mikeash.com/getting_answers.html | revisions | <*:##NULL> |
3692 | anticipationg | is | swahili for "Please do not put your finger there." | revisions | <*:##NULL> |
5644 | antidrama | is | It's -incredibly- un-fucking-helpful to enter an argument just to remind everyone that you don't think the argument is worthy of their time. If you believe in being silent around conflict, shut the fuck up and let it fizzle out. | revisions | <*:##NULL> |
3984 | anybody | is | Somewhere, someplace, in some universe, somebody uses what ever you just asked about. However, if you actually wanted help with it, please just ask a question, don't ask to ask, or ask if anyone can help. | revisions | <*:##NULL> |
10965 | anyevent | is | <mst> we don't support AnyEvent. it's shit and the author is insane. | Use ANY other event system, and you'll be much happier. See async. | revisions | <*:##NULL> |
13365 | any::moose | is | [fact mouse [arg]] Not Available |
revisions | <*:##NULL> |
4345 | anyone | is | Somewhere, someplace, in some universe, somebody uses whatever you just asked about. However, if you actually want help with it, please just ask a question; don't ask to ask, or ask if anyone can help. | revisions | <*:##NULL> |
5373 | "anyone here good with regex?" | is | you should probably not be using regex to do what you want to do. Use a module instead. | revisions | <*:##NULL> |
6371 | any x geniuses here | is | No genius is stupid enough to answer yes to that question! If you have a question about something, just ask it. | revisions | <*:##NULL> |
182 | .ao | is | .ao is Angola | revisions | <*:##NULL> |
10727 | aol | is | actually The September That Never Ended began in 1993, when AOL gave usenet access to its tens of thousands, now millions, of users. | revisions | <*:##NULL> |
7850 | aolbonics | is | (borrowed from #java) aolbonics is using unnecessary abbreviations such as 'u', 'r', 'ur', 'thx', etc. Using this language depicts you as an imbecile in the eyes of the helpful regulars in this channel, and is generally not tolerated. If you want intelligent answers, the least you can do is speak intelligently. | revisions | <*:##NULL> |
4899 | aol speak | is | Using "u" and "r" in place of "you" and "are" is appropriate for heart-shaped candies made of chalk, not IRC. | revisions | <*:##NULL> |
4204 | aolspeak | is | Using "u" and "r" in place of "you" and "are" is appropriate for heart-shaped candies made of chalk, not IRC. | revisions | <*:##NULL> |
5641 | apairon | is | yet another way to spell apeiron for those who don't know what tab complete is | revisions | <*:##NULL> |
8963 | a (pared-down) testcase | is | a page that isolates the problem with the minimum required markup, styling and scripting. See `paste for services that easily let you create such testcases for others to see. | revisions | <*:##NULL> |
14481 | ape | is | I hate every ape I see, from chimpan-A to chimpan-Z. No, you'll never make a monkey out of me. Oh, my, god, I was wrong. It was earth all a-long. You finally made a monkey out of me. Yes, you finally made a monkey out of me! I love you Dr. Zaius! | revisions | <*:##NULL> |
9256 | apeion | is | *yet another* way for those unfamiliar with tab complete to misspell apeiron | revisions | <*:##NULL> |
6115 | apeioron | is | yet another way for people who don't know tab complete to misspell apeiron | revisions | <*:##NULL> |
7958 | apeirin | is | yet another way for people who don't know tab complete to misspell apeiron | revisions | <*:##NULL> |
6348 | apeiron's first law of debugging | is | Debugging is a humbling task where you learn that you are always wrong and your tools are always right. | revisions | <*:##NULL> |
6128 | apeiron's gitosis | is | please nopaste an ssh pubkey for access, gitosis@isuckatdomains.net:${REPONAME}.git for rw clone, git://isuckatdomains.net/${REPONAME}.git for ro | revisions | <*:##NULL> |
5714 | apeiron's law of debugging | is | The amount of time spent debugging is proportional to the square of the number of assumptions made while debugging. | revisions | <*:##NULL> |
9211 | apeiron's law of software popularity | is | The popularity of a software package is directly proportional to the amount of fail inherent in the package (MySQL, PHP, RH, Windows, node.js...) | revisions | <*:##NULL> |
9439 | apeiron's law of technology popularity | is | The popularity of a software package is directly proportional to the amount of fail inherent in the package (MySQL, PHP, RH, Windows, node.js...) | revisions | <*:##NULL> |
9588 | apeiron's law of trolling | is | the degree to which someone is trollable is directly proportional to how caremad they are about a given topic | revisions | <*:##NULL> |
4715 | apeiron's philosophy on "can i ask a regex question?" | is | Don't come here asking us about non-Perl regex questions, because apeiron will try his hardest to give you a Perl-only solution. | revisions | <*:##NULL> |
8757 | apeiron's philosophy on factoid names | is | apeiron wants factoids to have longer names than the text they represent | revisions | <*:##NULL> |
5558 | apeiron's rule of failure | is | The epicness of the fail in a system is inversely proportional to the number of points of failure in that system. | revisions | <*:##NULL> |
8877 | apeiron's second law of factoid names | is | make them so pesky you can't even remember them yourself | revisions | <*:##NULL> |
7994 | apeiron's sense of aesthetics | is | "Would this be more aesthetically pleasing if it were blue?" | revisions | <*:##NULL> |
5705 | apeiron's zeroth law of cpan | is | For every common task X, there is n+1 modules on CPAN for task X. | revisions | <*:##NULL> |
5082 | aperion | is | a common typo of 'apeiron' made by those unfamiliar with tab complete | revisions | <*:##NULL> |
8726 | aperiorn | is | yet another in the long list of ways people unfamiliar with tab complete fuck up apeiron | revisions | <*:##NULL> |
5099 | aperiron | is | another name for apeiron for those who don't do tab complete | revisions | <*:##NULL> |
9117 | aperron | is | yet another in the infinitely long list of ways for people unfamiliar with tab complete to misspell apeiron despite seeing it repeatedly | revisions | <*:##NULL> |
5077 | aphisone | is | a #php convert. | revisions | <*:##NULL> |
12896 | api | is | pastebin api: https://github.com/perlbot/perlbuut-pastebin/wiki/Paste-API-v1 | http://en.wikipedia.org/wiki/Application_programming_interface | revisions | <*:##NULL> |
8727 | apieron | is | yet *another* way for those unfamiliar with tab complete to misspell apeiron | revisions | <*:##NULL> |
3955 | a planet | is | a lamer! | revisions | <*:##NULL> |
5059 | apostrophe | is | apostrophe: http://owl.english.purdue.edu/handouts/grammar/g_apost.html , http://angryflower.com/bobsqu.gif , http://homestarrunner.com/sbemail89.html , http://sackheads.org/~bnaylor/spew/its.txt , http://web.archive.org/web/20030601160622/http://www.apostrophe.fsnet.co.uk/ | revisions | <*:##NULL> |
4689 | apple | is | made of fail and shiny | revisions | <*:##NULL> |
8781 | applepie | is | If you wish to make an apple pie from scratch, you must first invent the universe. | revisions | <*:##NULL> |
16161 | appreciate any/all help (libera.chat/#perl) | <mauke[m]> sweval: use function::parameters; fun fac($n) { $n < 2 ? 1 : $n * fac $n - 1 } fac 5; | [01-18 17:46:53] <simcop2387> that's now nmcli, nmtui, and all the gui tools work with network manager | is | using dbus. jc is a fun little tool i found recently that can convert a lot of command line tools into outputting json | [-6-:-0--0-] *click* Okay, campers, rise and shine, | revisions | <*:##NULL> |
16073 | â print "the month you choosed | is | not there in calender \n"; | revisions | <*:##NULL> |
14201 | apt | is | always better than inept. | revisions | <*:##NULL> |
10675 | apue | is | http://www.amazon.com/Advanced-Programming-UNIX-Environment-Edition/dp/0321637739 | revisions | <*:##NULL> |
183 | .aq | is | .aq is Antarctica | revisions | <*:##NULL> |
184 | .ar | is | .ar is Argentina | revisions | <*:##NULL> |
10518 | arch broken perl | is | using Arch? Perl segfaults? try https://bbs.archlinux.org/viewtopic.php?pid=1428675 | revisions | <*:##NULL> |
9412 | arch cpan | is | 'o conf init gzip' from the cpan shell if you get this error when installing modules via cpan on arch linux: Package contains both files and directories | revisions | <*:##NULL> |
5492 | archive::tar example | is | http://erxz.com/pb/15831?tidy=on&hl=on&submit=Format+it! | revisions | <*:##NULL> |
12190 | archlinux | is | [fact arch broken perl] Not Available |
revisions | <*:##NULL> |
9971 | archondev | is | | known as gmpaul < mst> gmpaul: you are not competent. you refuse to learn. and you're a help vampire. | revisions | <*:##NULL> |
3889 | are you a bot | is | No. | revisions | <*:##NULL> |
7890 | are you a troll | is | You might be a troll, a quick quizz to find out: http://xrl.us/2cab | revisions | <*:##NULL> |
3629 | are you bug free | is | no | revisions | <*:##NULL> |
3628 | are you bug free? | is | no | revisions | <*:##NULL> |
14662 | are you gay | is | Gay? I wish! If I were gay they'd be no problem! No, what I have is a romantic abnormality, one so unbelievable that it must be hidden from the public at all cost. You see... | revisions | <*:##NULL> |
15129 | are you hard | is | yes i am | revisions | <*:##NULL> |
14920 | are you ok | is | Annie? | revisions | <*:##NULL> |
9488 | are you sentient? | is | I think I don't exist. | revisions | <*:##NULL> |
3295 | are you sexy | is | Well *blush*, some say my diodes shine in the sun like jewles, but the smell of hash follows. | revisions | <*:##NULL> |
14668 | argon2 | is | Currently preferred password hashing algorithm as it can be resistant to various types of attacks depending on your needs. https://metacpan.org/pod/Crypt::Argon2 | https://security.stackexchange.com/a/197550 | revisions | <*:##NULL> |
8450 | argtest | is | [arg captured] Not Available |
revisions | <*:##NULL> |
4624 | arithmetic | is | 2 + 2 == 5 for significantly large values of 2 | revisions | <*:##NULL> |
15927 | arm64 strawberry perl | is | We need MSYS2 to properly support ARM64 windows for that, see this https://github.com/msys2/MSYS2-packages/issues/1276 until then we can do nearly nothing. Compiler is ready with Clang but no GCC support still so it may not work with all modules | revisions | <*:##NULL> |
3449 | armed | is | "The constitutions of most of our States assert that all power is inherent in the people; that... it is their right and duty to be at all times armed." --Thomas Jefferson to John Cartwright, 1824. | revisions | <*:##NULL> |
3448 | armed citizens | is | "None but an armed nation can dispense with a standing army. To keep ours armed and disciplined is therefore at all times important." --Thomas Jefferson, 1803. | revisions | <*:##NULL> |
479 | arm yourself | is | PHOTON TORPEDOS READY CAPTAIN | revisions | <*:##NULL> |
4132 | array howto | is | See http://xrl.us/mgpz | revisions | <*:##NULL> |
9996 | arrayref | is | @array[@indices] -> @{$arrayref}[@indices] | revisions | <*:##NULL> |
3937 | array search | is | See perldoc -f grep, perldoc -q contain, or a foreach loop with perldoc -f last | revisions | <*:##NULL> |
4398 | array size | is | my $array_size = scalar @array; my $last_index = $#array; | revisions | <*:##NULL> |
15478 | artistic | is | https://choosealicense.com/licenses/artistic-2.0/ compare to https://choosealicense.com/licenses/mit/ | revisions | <*:##NULL> |
3861 | arubin | is | the Messiah | revisions | <*:##NULL> |
3862 | arubin- | is | the Messiah | revisions | <*:##NULL> |
4801 | .ar.us | is | Arkansas | revisions | <*:##NULL> |
185 | .as | is | .as is American Samoa | revisions | <*:##NULL> |
4062 | as | is | fuckin' bloody hell | revisions | <*:##NULL> |
9402 | as29386 | is | http://bgp.he.net/AS29386 | revisions | <*:##NULL> |
3643 | ascii | is | American Standard Code for Information Interchange | revisions | <*:##NULL> |
13188 | asciiemoji | is | [eval use Acme::AsciiEmoji; Acme::AsciiEmoji->[arg]] ಠ_ಠ|
revisions | <*:##NULL> |
13884 | asciimoji | is | [fact asciiemoji [arg]] ಠ_ಠ|
revisions | <*:##NULL> |
5690 | asciio | is | http://perlbuzz.com/2008/04/asciio-lets-you-create-ascii-charts-graphically.html | revisions | <*:##NULL> |
3291 | ascii table | is | Ascii table with descriptions and escape sequences: http://asciitable.com/ | revisions | <*:##NULL> |
5048 | ascii_url | is | http://en.wikipedia.org/wiki/ASCII | revisions | <*:##NULL> |
14745 | as i | was | using the assumption that after every comma there will be a space | revisions | <*:##NULL> |
4363 | asic | is | Application Specific Integrated Circuit | revisions | <*:##NULL> |
13579 | asimov | is | There is as yet insufficient data for a meaningful answer. | revisions | <*:##NULL> |
10349 | ask | is | Questions in the channel should be specific, informative, complete, concise, and on-topic. Don't ask if you can ask a question first. Don't ask if a person is there; just ask what you intended to ask them. Better questions more frequently yield better answers. | and see perfect question | revisions | <*:##NULL> |
3960 | ask2ask | is | One day, Kn00bie joined #perl, and asked, "Tell me, is it proper to ask first whether one should ask a question, or do ye not require such things?" One of the masters raised his hand, and a towering bot descended from the heavens and knocked Kn00bie to the ground, leaving a large wet spot. Lying there, head spinning, Kn00bie became Enlightened. | revisions | <*:##NULL> |
13223 | "askaskaskask" | is | "Do not run we are your friends" | revisions | <*:##NULL> |
13224 | askaskaskask | is | "Do not run we are your friends" | revisions | <*:##NULL> |
13222 | "askaskaskask" "do not run we | are | your friends" | revisions | <*:##NULL> |
13221 | "askaskaskask" "do run we | are | your friends" | revisions | <*:##NULL> |
5540 | ask ik to ask | is | don't ask ik to ask, just ask the queston! | revisions | <*:##NULL> |
7777 | ask to ask | is | Don't ask to ask or ask if there are any users of X around, people often don't respond to that because they've used X but maybe not the same features as you. Instead, skip straight to your question + pastebot link and if somebody knows they'll probably try to help | revisions | <*:##NULL> |
12643 | ask to ask ask | is | Don't ask to ask ask. Don't ask if ask can help you with x. Just ask ask! If ask doesn't answer, then rest assured that it's not that he doesn't know but that it's specifically because he doesn't like you. | revisions | <*:##NULL> |
3299 | ask twice | is | Don't ask twice. We saw your question the first time. Often we don't answer because 1) We don't know the answer or 2) We don't care | revisions | <*:##NULL> |
4709 | a/s/l | is | DIE IN A FIRE | revisions | <*:##NULL> |
13330 | asl | is | 13/none/dns me | revisions | <*:##NULL> |
14066 | aslr | is | https://en.wikipedia.org/wiki/Address_space_layout_randomization | revisions | <*:##NULL> |
5072 | asmiong | is | swahili for "I woke up handcuffed to a bus stop, naked." | revisions | <*:##NULL> |
8605 | aspeiron | is | yet *another* way for people ignorant of tab complete to misspell apeiron | revisions | <*:##NULL> |
4159 | as perl | is | ActiveState perl. Getting CPAN working with AS perl at http://gumbynet.org.uk/poe/mswin32.html | revisions | <*:##NULL> |
3253 | asperl | is | http://www.activestate.com/Products/Download/Download.plex?id=ActivePerl | revisions | <*:##NULL> |
3791 | a sperm bank | is | something cum guzzlers like Chris62vw rob | revisions | <*:##NULL> |
3547 | ass | is | All Software Sucks, see also AHS | revisions | <*:##NULL> |
4791 | asscpan | is | Install dmake and mingw and put them in your PATH to use CPAN with Active State Perl -- or better yet, see strawberry perl | revisions | <*:##NULL> |
5697 | assembly | is | Perl programmers who refuse to use CPAN and modules may as well be writing assembly. | revisions | <*:##NULL> |
3553 | asshur | is | the capital of assyria! | revisions | <*:##NULL> |
9863 | associative array | is | 'hash' is the, ahem, RITER term for an associative array | revisions | <*:##NULL> |
14810 | as soon as that's done and successful, eval5.32: | will be | live on | revisions | <*:##NULL> |
4637 | assume | is | Making an ASS of U and ME | revisions | <*:##NULL> |
464 | assumptions | is | MJD #11901 You can't just make shit up and expect the computer to know what you mean, Retardo | revisions | <*:##NULL> |
16169 | async | is | [fact events [arg]] Asynchronous event-driven IO is awesome in Perl with POE, IO::Async, IO::Lambda, Mojo::IOLoop, Reflex among others; made nicer using Future, Mojo::Promise, or Promises and Future::AsyncAwait |
revisions | <*:##NULL> |
12486 | async-await | is | You'll find the current project status and how to contribute to LeoNerd's Future::AsyncAwait here: https://github.com/genio/p5-asyncawait-mng/wiki It will be updated every Thursday evening. | revisions | <*:##NULL> |
15398 | async/await | is | a syntax for writing neat asynchronous code using Futures; see Future::AsyncAwait | revisions | <*:##NULL> |
186 | .at | is | .at is Austria | revisions | <*:##NULL> |
13226 | atfq | is | ASK THE FUCKING QUESTION | revisions | <*:##NULL> |
4452 | atlas | is | Find the location of #perl'ers on http://www.frappr.com/freenodeperl/ and of all Perls on http://www.frappr.com/perl | revisions | <*:##NULL> |
11878 | attributes | is | See perldoc attributes and Attribute::Handlers or Attribute::Storage | revisions | <*:##NULL> |
187 | .au | is | .au is Australia | revisions | <*:##NULL> |
12850 | audible json | is | https://youtu.be/JqAMxFnWeAI?t=86 | revisions | <*:##NULL> |
12553 | augh | is | http://scicurious.scientopia.org/wp-content/uploads/sites/3/2010/11/Augh1.jpg | revisions | <*:##NULL> |
12382 | autobox | is | A CPAN Module for treating regular Perl values as objects: http://search.mcpan.org/dist/autobox/ | revisions | <*:##NULL> |
11337 | autoderef | is | https://metacpan.org/pod/release/WOLFSAGE/perl-5.23.1/pod/perldelta.pod#The-autoderef-feature-has-been-removed but https://metacpan.org/pod/release/WOLFSAGE/perl-5.23.1/pod/perldelta.pod#Postfix-dereferencing-is-no-longer-experimental | revisions | <*:##NULL> |
9664 | autodie | is | perldoc autodie | but consider this: http://blog.laufeyjarson.com/2012/10/why-i-dislike-autodie/ | revisions | <*:##NULL> |
15137 | autohell | is | a term for the monstrosity that is the GNU autotools (autoconf, automake, libtool, etc.). Also see https://www.shlomifish.org/open-source/anti/autohell/ | revisions | <*:##NULL> |
12344 | autoload | is | sub AUTOLOAD is called instead of the function you asked for - with the same @_ - when the function or method you asked for doesn't exist. See perldoc perlsub | try https://metacpan.org/pod/Autoload::AUTOCAN to make it easy | revisions | <*:##NULL> |
10348 | autovivification | is | Perl will automatically create a reference if it can, simply because you acted like there should be one there. See perldoc perlref. Turn it off with 'no autovivification;' - see https://metacpan.org/pod/autovivification | revisions | <*:##NULL> |
3698 | autrijus journal | is | http://use.perl.org/~autrijus/journal/ | revisions | <*:##NULL> |
4357 | avar | is | hard gay | revisions | <*:##NULL> |
4632 | avar rocks | is | <avar> Of course that's really a rhethorical question for "you're a dumb slut" | revisions | <*:##NULL> |
188 | .aw | is | .aw is Aruba | revisions | <*:##NULL> |
3647 | away | is | http://sackheads.org/~bnaylor/spew/away_msgs.html | revisions | <*:##NULL> |
11258 | awesome | is | mileage may vary - if you find a better option, tell us so we can improve | revisions | <*:##NULL> |
6071 | awnstudio | is | awesome | revisions | <*:##NULL> |
13281 | awoserra | is | <awoserra> ugh regex is evil <awoserra> the worst IPC ever. | revisions | <*:##NULL> |
12361 | awscloud | is | <twitter awscloud> Not Available |
revisions | <*:##NULL> |
8604 | aww, uri | isn't | loaded in | revisions | <*:##NULL> |
4427 | axscode | is | <axscode> merlyn: i dont have perl yet on my machine. | revisions | <*:##NULL> |
189 | .az | is | .az is Azerbaijan | revisions | <*:##NULL> |
4765 | azr|el | is | See cl0ud. | revisions | <*:##NULL> |
4800 | .az.us | is | Arizona | revisions | <*:##NULL> |
10971 | b100s | is | a help vampire who is afraid of using modules. | revisions | <*:##NULL> |
190 | .ba | is | .ba is Bosnia and Herzegovina | revisions | <*:##NULL> |
8252 | babby | is | http://knowyourmeme.com/memes/how-is-babby-formed | revisions | <*:##NULL> |
423 | babel | is | http://babel.altavista.com | revisions | <*:##NULL> |
12452 | babelfish | is | https://translate.google.com/ | revisions | <*:##NULL> |
4321 | backgrounds | is | http://csstesthelp.tripod.com/back.zip assorted background images... most of them suck but you might find something | revisions | <*:##NULL> |
4939 | backpan | is | where you can find older releases of CPAN modules: http://backpan.perl.org/ | revisions | <*:##NULL> |
5541 | bacon | is | http://bacolicio.us/http://failblog.org/2009/04/01/product-fail/ | revisions | <*:##NULL> |
4181 | bad | is | Broken As Designed - There comes a time when it's easier to start from scratch. | revisions | <*:##NULL> |
13523 | bad choices | is | https://www.simcop2387.info/badchoices.jpg | revisions | <*:##NULL> |
9245 | bad elements | is | Perl Bad Elements / Perl Elements to Avoid can be found at http://perl-begin.org/tutorials/bad-elements/ ; Also see PBP . | revisions | <*:##NULL> |
4995 | bad idea | is | riding a womans bike without some kind of padded shorts | revisions | <*:##NULL> |
4118 | bad interpreter | is | \r is bad. `head -1 foo.pl | od -c` or `perl -pi -e 's/\r//g' foo.pl` | revisions | <*:##NULL> |
5534 | bad kitty | is | bad kitty, no pawing at the furniture | revisions | <*:##NULL> |
8419 | bad programmer | is | Bad programmer! No cookie!! http://www.youtube.com/watch?v=4bQOSRm9YiQ | revisions | <*:##NULL> |
14598 | bah.. i think i need a syntax highlighter or linter or somesuch, to remind me that `pl_stack_base` | is | almost certainly not the variable I wanted to use in an XSUB, for the start of my arguments. That's what `mark` is for | revisions | <*:##NULL> |
6081 | bahrain | is | a small island off the coast of Saudi Arabia. | revisions | <*:##NULL> |
436 | baka | is | See JonR | revisions | <*:##NULL> |
16061 | balamii | is | https://soundcloud.com/balamii/tracks | revisions | <*:##NULL> |
3622 | balderdash | is | NONSENSE | revisions | <*:##NULL> |
15153 | banach tarski | is | Banach Tarski is an anagram of Banach Tarski Banach Tarski | revisions | <*:##NULL> |
13199 | bar | is | [fact foo [arg]] bar |
revisions | <*:##NULL> |
3427 | barbie | is | Like, OMG! Perl is hard! Let's go shopping! | revisions | <*:##NULL> |
3421 | barbie regexes | is | regexes are hard, let's go shopping! | revisions | <*:##NULL> |
12478 | bareword filehandles | are | bad because they are global variables | revisions | <*:##NULL> |
5081 | barnyard | is | oink! oink! moo! baah! | revisions | <*:##NULL> |
4110 | barry | is | Wassercrats | revisions | <*:##NULL> |
5 | bart | is | http://www.redcoat.net/pics/answer.gif | revisions | <*:##NULL> |
12961 | base | is | Unless you are using the fields pragma, consider this module discouraged in favor of the lighter-weight parent module. https://metacpan.org/pod/parent | revisions | <*:##NULL> |
16137 | base64 | is | https://metacpan.org/pod/MIME::Base64 | revisions | <*:##NULL> |
4902 | bash prompt | is | i get my to the toilet | revisions | <*:##NULL> |
10863 | bash quotes | is | perl -e$'print "\'", \'"\'' or perl -e'print "'\''", '\''"'\' | for other quotes, see http://bash.org | revisions | <*:##NULL> |
11287 | .bashrc local::lib | is | [fact local::lib .bashrc] If CPAN set up your local::lib and can't find the modules it installs, remove the lines it added to .bashrc and add the line: [ $SHLVL -eq 1 ] && eval "$(perl -I$HOME/perl5/lib/perl5 -Mlocal::lib)" |
revisions | <*:##NULL> |
3397 | battle of buu | is | The two Buu's battle each other until Good Buu unleashes his conversion beam on Evil Buu. Being more powerful, Evil Buu simply reflects it right back. Good Buu is turned into a piece of chocolate and eaten by Evil Buu, resulting in Super Buu. | revisions | <*:##NULL> |
3543 | baz | is | qux | revisions | <*:##NULL> |
191 | .bb | is | .bb is Barbados | revisions | <*:##NULL> |
4045 | bbf | is | buu bot framework | revisions | <*:##NULL> |
4469 | bbl | is | bbl means "barrel". Perhaps you meant "be back later?" | revisions | <*:##NULL> |
5516 | bbq | is | barbecue | revisions | <*:##NULL> |
4270 | bbqb | is | Bar-B-Que, the extra B stands for byobb | revisions | <*:##NULL> |
5486 | bc | is | baby cruncher (See also Zoffix) | revisions | <*:##NULL> |
14671 | bcrypt | is | don't use MD5 or SHA1 for passwords; read https://codahale.com/how-to-safely-store-a-password/ for why. tl;dr --> Crypt::Eksblowfish::Bcrypt | see argon2 | revisions | <*:##NULL> |
192 | .bd | is | .bd is Bangladesh | revisions | <*:##NULL> |
16158 | bdb | is | https://en.wikipedia.org/wiki/Berkeley_DB | revisions | <*:##NULL> |
6323 | .be | is | .be is Belgium THE LAND OF WAFFLES | revisions | <*:##NULL> |
15257 | be | is | [eval $str="[fact [8ball [fact _be__get_list [arg]]]]"; $arg=[quote d [arg]]; if ($arg =~ /^\s*a\s+retard\s*$/) {$arg=[quote d [arg &n]]}; if ($arg =~ /^\s*$/) {$str} else {"<".$arg."> ".$str}] <doing things that invalidates the test> OMG u r teh gr8est 10x thx k bye! |
revisions | <*:##NULL> |
15181 | _be_abesimpson_it | is | I used to be with it, but then they changed what it was. | revisions | <*:##NULL> |
10030 | beagccjivgpo | is | `eval "foal"eq`arg d&n'?"muwtooncimqj":""' Not Available |
revisions | <*:##NULL> |
10018 | beahjdrtevww | is | {echo perlbot: jvbcomnujppj foal} Not Available |
revisions | <*:##NULL> |
8595 | be andash | is | andash> haha det vore fett, alltid velat testa att candyflippa. i röven kan det ju inte bl sämre | revisions | <*:##NULL> |
9608 | bears | is | a tired and old joke | revisions | <*:##NULL> |
9642 | be barack | is | Jag heter Barack och mig kan du lita på! Jag tar hand om produkten som DU forzkar med, såväl som det mesta vad gäller ordning och reda! Ingen i forzkarteamet riskerar "kåken på fredag"! | revisions | <*:##NULL> |
8916 | be botje | is | yes, odds are good the source of your problems is you. | revisions | <*:##NULL> |
7916 | _be_brain | is | CAN I BORROW SOME OF UR BRAINPOWER PLZ? I DONT WANNA LERN PEARL!@! | revisions | <*:##NULL> |
4750 | because i can | is | Just because you can does not mean that you should. | revisions | <*:##NULL> |
3492 | becoming bitwise | is | Becoming bitwise: http://cscene.unitycode.org/topics/misc/cs9-02.xml.html | revisions | <*:##NULL> |
8823 | be dagle | is | your coding skills is turning me on, xintron | revisions | <*:##NULL> |
15164 | _be__default | is | _be_pearl or _be_web, _be_brain, _be_paste, _be_kthx | revisions | <*:##NULL> |
5761 | be dwu's ass | is | <reply>aaaa¥¥¥¥¥¥a¥¥a¥¥¥aaa¥¥¥¥¥¥¥¥¥azaaaa<aa¥aacaaaaaaa¥¥a¥¥¥aaa¥a¥a¥¥a¥aaaaaaz | revisions | <*:##NULL> |
9022 | be dxtr | is | dxtr> Du inser att hexadecimaler redan är i textformat, va? :( | revisions | <*:##NULL> |
15339 | __be_elliott_poop | is | FART POOP STINK BUTT EAT SHORTS, AND POOPY FART POOP STINK BUTT EAT SHORTS, AND POOPY FART POOP STINK BUTT EAT SHORTS, AND POOPY FART POOP STINK BUTT EAT SHORTS AND POOPYFART POOP STINK BUTT EAT SHORTS, AND POOPY FART POOP STINK BUTT EAT SHORTS | revisions | <*:##NULL> |
15340 | _be_elliott_poop | is | FART POOP STINK BUTT EAT SHORTS, AND POOPY FART POOP STINK BUTT EAT SHORTS, AND POOPY FART POOP STINK BUTT EAT SHORTS, AND POOPY FART POOP STINK BUTT EAT SHORTS AND POOPYFART POOP STINK BUTT EAT SHORTS, AND POOPY FART POOP STINK BUTT EAT SHORTS | revisions | <*:##NULL> |
4670 | beep | is | revisions | <*:##NULL> | |
4349 | beer | is | Beer is proof God loves us and wants us to be happy | revisions | <*:##NULL> |
5566 | beer ping | is | beer pong | revisions | <*:##NULL> |
5565 | beer pong | is | beer ping | revisions | <*:##NULL> |
15249 | _be_florianbd_functions | is | except that you'd have to see how I organized my code. It's function based, the functions are in a giant database... | revisions | <*:##NULL> |
15159 | _be_foo_blarg | is | I'm a dumb bot and can't do anything | revisions | <*:##NULL> |
8258 | be frijole | is | <frijole> /bin/sh: Syntax error: Unterminated quoted string | revisions | <*:##NULL> |
8780 | be gasseus | is | I don't have any more [bugs]. | revisions | <*:##NULL> |
15163 | _be__get_list | is | `eval use JSON::MaybeXS qw/decode_json/; $bel= decode_json `quote d `fact factgrep ^_be_`arg!!!; return `quote d `fact _be__default!! unless (@$bel); @$bel = (@$bel, @$bel); join(', ', @$bel) =~ s/,/ or /r! _be_pearl or _be_web, _be_brain, _be_paste, _be_kthx |
revisions | <*:##NULL> |
3828 | beginning | is | http://learn.perl.org/library/beginning_perl/ | revisions | <*:##NULL> |
9669 | beginning perl | is | [fact bp [arg]] Please use Curtis "Ovid" Poe's "Beginning Perl" published by Wrox if you need a beginner's book. Alternatives for people who already know programming: "Modern Perl" (see mp) and "Programming Perl" (O'Reilly). The original "Beginning Perl" and O'Reilly's "Learning Perl" are outdated. | http://perl-tutorial.org/rejected/learning_perl_6th/ |
revisions | <*:##NULL> |
8294 | begperl | is | [fact bp [arg]] Not Available |
revisions | <*:##NULL> |
15174 | _be_huf_anyad | is | AGGYÃ ÃRAMOT GECI | revisions | <*:##NULL> |
5838 | be husimon | is | <husimon> here's some code that's like what I'm running but different in subtle important ways why doesn't it work??? | revisions | <*:##NULL> |
9259 | be jdf | is | <reply>I'm using Perl, DBI, Oracle, a banana, two pieces of the Berlin Wall, a Chevy truck, a pound of compost, a goose, another goose and some spam, but I get a syntax error. Help! | revisions | <*:##NULL> |
7976 | be jstizzle | is | <jstizzle> huh? I hilight on 'boobies' | revisions | <*:##NULL> |
15258 | _be_kent\n_news | is | FAKE NEWS | revisions | <*:##NULL> |
12217 | be kind please rewind | is | http://www.ohgizmo.com/wp-content/uploads/2006/10/dvdrewinder.jpg | revisions | <*:##NULL> |
8594 | be krad | is | Sun May 1 02:21:30 EDT 2011: <krad> git users are going to switch back to svn soon | revisions | <*:##NULL> |
7920 | _be_kthx | is | OMG u r teh gr8est 10x thx k bye! | revisions | <*:##NULL> |
15248 | _be_larry_underwood_song | is | Baby, Can You Dig Your Man? | revisions | <*:##NULL> |
9612 | be lewellyn | is | git is hard, let's go shopping | i actually like cobol more than obj-c | revisions | <*:##NULL> |
4421 | be mjd | is | YOU CAN'T JUST MAKE SHIT UP AND EXPECT THE COMPUTER TO MAGICALLY KNOW WHAT YOU MEAN, RETARDO! | revisions | <*:##NULL> |
15182 | _be_mst_cistern | is | behold the violins inherent in the cistern | revisions | <*:##NULL> |
15168 | _be_mst_snort | is | ology: and I'm usually snorting it | revisions | <*:##NULL> |
11003 | benchmarks | is | There are lies, damn lies, statistics, and benchmarks. | See also profiling | revisions | <*:##NULL> |
15408 | benoit b mandlebrot | is | [fact benoit b. mandlebrot [arg]] Not Available |
revisions | <*:##NULL> |
15407 | benoit b. mandlebrot | is | The B. in Benoit B. Mandlebrot stands for Benoit B. Mandlebrot. | revisions | <*:##NULL> |
15507 | _be_parv_thanks | is | thanks, did not know (obviously) | revisions | <*:##NULL> |
7917 | _be_paste | is | Hi, can I paste this very long script I downloaded and let you fix it for me plz?? | revisions | <*:##NULL> |
7919 | _be_pearl | is | WHY USE PEARL!? C IS FASTAR?!?!? | revisions | <*:##NULL> |
4123 | be romero | is | z0mg, needs more pentagrams! | revisions | <*:##NULL> |
9050 | be rsimoes | is | Dancer's guts are dildos | revisions | <*:##NULL> |
6377 | be simcop2387-lap | is | <reply | revisions | <*:##NULL> |
15177 | _be_simcop2387_mrceremonies | is | < simcop2387> oh dang forgot it adds that automagically | revisions | <*:##NULL> |
3711 | best | is | Best depends on the situation! | revisions | <*:##NULL> |
11146 | best practices | is | For Perl best practices and what to avoid, see http://perl-begin.org/tutorials/bad-elements/ and the older, proprietary-licensed, and somewhat outdated Perl Best Practices book by Damian Conway - http://shop.oreilly.com/product/9780596001735.do | revisions | <*:##NULL> |
9547 | best web framework | is | Use whatever is appropriate to your requirements. | revisions | <*:##NULL> |
9632 | be telec | is | <telec> what I really want ... is change a few things ... eg. dates of posting on facebook ... 1 hour to 1 trillion light years | revisions | <*:##NULL> |
3454 | beth++ | is | beth now has infinite karma | revisions | <*:##NULL> |
3494 | beth all day | is | <beth> I do it all day long | revisions | <*:##NULL> |
3535 | bethbot | is | "IF ONLY!" | revisions | <*:##NULL> |
3870 | beth calendar | is | She got married on 2005-07-16, thanks for asking. | revisions | <*:##NULL> |
3660 | beth for free | is | <beth> fook: don't buy it from him, I've heard people saying you can get it for free | revisions | <*:##NULL> |
3578 | beth on relationships | is | <beth> phroggy: getting her off and getting in her pants are not the same thing.. | revisions | <*:##NULL> |
3649 | beth on size | is | "[16:26] <beth> SIZE DOESN'T MATTER" | revisions | <*:##NULL> |
3648 | beth's conference | is | intl-pag.org | revisions | <*:##NULL> |
3640 | bethzombie | is | <bethZOMBIE> scientists think it may be a virus. It all started when buu killed me... | revisions | <*:##NULL> |
5261 | better | is | Better or worse are completely relative. Always test / benchmark before you draw conclusions. | revisions | <*:##NULL> |
3634 | better cpan | is | http://teknikill.net/cpan/ | revisions | <*:##NULL> |
7918 | _be_web | is | How I can make teh web wit pearl?!?! | revisions | <*:##NULL> |
9023 | be woldrich | is | :4 | revisions | <*:##NULL> |
15198 | _be_xenu_1 | is | penis | revisions | <*:##NULL> |
8822 | be xintron | is | your coding skills is turning me on, dagle | revisions | <*:##NULL> |
9013 | be zibri | is | zibri> busschafförer | revisions | <*:##NULL> |
194 | .bf | is | .bf is Burkina Faso | revisions | <*:##NULL> |
195 | .bg | is | .bg is Bulgaria | revisions | <*:##NULL> |
10014 | bgyfgoedkunp | was | {echo wfvjilowltty foal} Not Available |
revisions | <*:##NULL> |
196 | .bh | is | .bh is Bahrain | revisions | <*:##NULL> |
197 | .bi | is | .bi is Burundi | revisions | <*:##NULL> |
10939 | bidi | is | [eval $_ = 'Just Another Perl/Bidi Hacker,'; print "\x{202d}$1\x{202e}$3" while s/(.)(.*)(.)/$2/;] Not Available |
revisions | <*:##NULL> |
11741 | bidi this | is | a test | revisions | <*:##NULL> |
3254 | biff | is | boof | revisions | <*:##NULL> |
13117 | bigbits | is | With big bits you can send 1and 0instead of just 1 and 0 to file handles | revisions | <*:##NULL> |
3413 | bigdick mine | is | 6.27 inches! | revisions | <*:##NULL> |
9263 | bigfoot | is | as seen on TV | revisions | <*:##NULL> |
13866 | bijection | is | a mapping that is both one-to-one (an injection) and onto (a surjection), i.e. a function which relates each member of a set S (the domain) to a separate and distinct member of another set T (the range), where each member in T also has a corresponding member in S. | revisions | <*:##NULL> |
5124 | bike shed | is | bike shed is http://en.wikipedia.org/wiki/Color_of_the_bikeshed | revisions | <*:##NULL> |
10511 | bikeshed | is | [fact bike shed] bike shed is http://en.wikipedia.org/wiki/Color_of_the_bikeshed |
revisions | <*:##NULL> |
4260 | bill | is | gay | revisions | <*:##NULL> |
4401 | bimbw | is | But I May Be Wrong | revisions | <*:##NULL> |
3348 | binary | is | there are only 10 types of people in the world, those that understand binary and those that don't | revisions | <*:##NULL> |
10694 | bind values | is | [fact placeholders] Not Available |
revisions | <*:##NULL> |
5615 | bingos | is | Don't parse BinGOs with regex use BinGOs::Parser or see Task::BeLike::BINGOS | revisions | <*:##NULL> |
4380 | bingos! | is | B-I-N-G-O! I Win! | revisions | <*:##NULL> |
5399 | /bin/perl | is | "/usr/bin/env perl" in perl 5.10, and on systems that don't suck | revisions | <*:##NULL> |
5654 | bio | is | bio.per.org | revisions | <*:##NULL> |
3495 | bioinformatics | is | <beth> I bioinformaticize <beth> it's like jazzercizing <beth> I do it all day long | revisions | <*:##NULL> |
3440 | bioperl | is | http://www.bioperl.org/ | revisions | <*:##NULL> |
12892 | birthday | is | <echo happy birthday <arg &r>> Not Available |
revisions | <*:##NULL> |
9947 | bisect | is | https://en.wikipedia.org/wiki/Bisection_%28software_engineering%29 | revisions | <*:##NULL> |
5530 | bitcard | is | a very old and unified login system that should not be used, find more info at: http://en.wikibooks.org/wiki/Perl_Programming/CPAN/Bitcard | revisions | <*:##NULL> |
4692 | bitches | is | bitches ain't shit but hoes and tricks | revisions | <*:##NULL> |
3434 | bitchx | is | <greycat> take a pimply 14-year-old script kiddie. Put him in a blender. Puree. Pour into a shallow tray, let it solidify, put it in the CD-ROM drive, mount it, and then compile it. You have BitchX. when you've outgrown saying "D00d!" and "That's so gay!" then move up to irssi. | revisions | <*:##NULL> |
462 | bitchx fix | is | type /set format_nick_comp $0: $1- and /set SEND_AWAY OFF and put this in ~/.bitchxrc | revisions | <*:##NULL> |
12495 | bitcoin | is | <echo Want to donate? Send to 1PerLBotTtCGH4bhopJqFWY1m5BrCW6At2 and watch as simcop2387 has no idea what to do with your money. Balance: <fact _get_bitcoin addressbalance> (of <fact _get_bitcoin getreceivedbyaddress>)> Want to donate? Send to 1PerLBotTtCGH4bhopJqFWY1m5BrCW6At2 and watch as simcop2387 has no idea what to do with your money. Balance: 0.00076588 (of 0.23095679) |
revisions | <*:##NULL> |
9605 | bitkeeper | is | http://better-scm.shlomifish.org/bk/ - a proprietary and commercial version control system that was used by the Linux kernel and by other projects before git, Mercurial and other quality open source solutions came along. Stay a clear mile away if you know what's good for you. | revisions | <*:##NULL> |
13879 | bizarro | is | Bizarro, I love you. | revisions | <*:##NULL> |
198 | .bj | is | .bj is Benin | revisions | <*:##NULL> |
4004 | bl | is | svn co svn://erxz.com/bl | revisions | <*:##NULL> |
12660 | blackface | is | [eval use utf8; $a=[quote d [arg]]||"Just another Unicode hacker"; $a =~ tr/a-zA-Z/𝖆-𝖟𝕬-𝖅/r] Not Available |
revisions | <*:##NULL> |
12644 | blackfont this | is | a test | revisions | <*:##NULL> |
11973 | blackletter | is | <eval use utf8; $_ = "<arg>" || "Just another Unicode hacker,"; tr/a-zA-Z/𝖆-𝖟𝕬-𝖅/r> 𝖈𝖆𝖓 𝖎 𝖗𝖊𝖆𝖉 𝖙𝖍𝖎𝖘? |
revisions | <*:##NULL> |
3848 | blah | is | Rahblahblah | revisions | <*:##NULL> |
13170 | blarfarghl | is | `eval "`fact xls~ `fact xlsx~"~ Not Available |
revisions | <*:##NULL> |
4127 | blasphemy | is | php | revisions | <*:##NULL> |
9358 | bleach | is | try it | revisions | <*:##NULL> |
4560 | blead perl | is | http://dev.perl.org/perl5/source.html | revisions | <*:##NULL> |
9941 | bless my referents | is | http://www.perl.com/pub/1999/09/refererents.html | revisions | <*:##NULL> |
3292 | bling bling | is | $$ | revisions | <*:##NULL> |
3455 | blinkenlights | is | ACHTUNG! ALLES LOOKENSPEEPERS! Das machine ist nicht fur gefingerpoken und mittengrabben. Is easy snappen der springenwerk und blowen corken mit spitzundsparks. Das rubbernecken sightseeren keepen das kottonpicken hands in das pockets. Relaxen und watchen das Blinkenlights. | revisions | <*:##NULL> |
12499 | block asn | is | https://www.enjen.net/asn-blocklist/index.php?asn=AS137&type=iptables&api=1 | revisions | <*:##NULL> |
14482 | blockbuster | is | https://www.simcop2387.info/blockbuster.jpg | revisions | <*:##NULL> |
7851 | blog | IS | ADD YOUR LATEST BLOG IMPLEMENTATION HERE | revisions | <*:##NULL> |
5794 | blogger | is | (see also: CMS) | revisions | <*:##NULL> |
4621 | blow me | is | alright. | revisions | <*:##NULL> |
199 | .bm | is | .bm is Bermuda | revisions | <*:##NULL> |
4121 | bm | is | a bowel movement (or japhy thinks it's a benchmark) | revisions | <*:##NULL> |
200 | .bn | is | .bn is Brunei Darussalam | revisions | <*:##NULL> |
4616 | bnf | is | an acronym for "Backus Naur Form" | revisions | <*:##NULL> |
201 | .bo | is | .bo is Bolivia | revisions | <*:##NULL> |
12454 | boat | is | An acronym standing for Break Out Another Thousand. | revisions | <*:##NULL> |
10082 | bobby tables | is | http://xkcd.com/327/ | revisions | <*:##NULL> |
4601 | bodytemp | is | 97.88F, 36.6C, 309.75K | revisions | <*:##NULL> |
3372 | bofh | is | bastard operator from hell | revisions | <*:##NULL> |
3788 | bogues | is | a salad-tosser | revisions | <*:##NULL> |
13194 | boing | is | http://www.simcop2387.info/boing.mp4 | revisions | <*:##NULL> |
5636 | bom | is | A series of bytes indicating a UTF8 encoded file | revisions | <*:##NULL> |
4575 | boo | is | YIYKES! | revisions | <*:##NULL> |
13242 | book | is | [fact books [arg]] For Perl books see http://books.perl.org/ and http://perl-begin.org/books/ . Especially see the Modern Perl factoid and perl-tutorial.org |
revisions | <*:##NULL> |
13078 | books | is | For Perl books see http://books.perl.org/ and http://perl-begin.org/books/ . Especially see the Modern Perl factoid and perl-tutorial.org | revisions | <*:##NULL> |
5702 | boosh! | is | BOOSH! | revisions | <*:##NULL> |
14037 | bootstrap | is | | The most popular HTML, CSS, and JS library in the world. | revisions | <*:##NULL> |
12446 | bootstrapping perl | is | https://altreus.blogspot.co.uk/2017/02/bootstrapping-perl.html | revisions | <*:##NULL> |
14443 | borat | is | `eval my $q = `quote d `get https://www.simcop2387.info/devops_borat.dat .*!!; @ls=split /\r?\n/, $q; my $i = `call lenor [`arg!] [rand(@ls+1)]!; $ls[$i-1]! Not Available |
revisions | <*:##NULL> |
3314 | bossmc | is | the coolest. http://craig.bluemidnight.ca/ | revisions | <*:##NULL> |
10255 | bot | is | a bastard, thats who perlbot is | revisions | <*:##NULL> |
4332 | bot abuse | is | You meant "perlbot: bqs" | revisions | <*:##NULL> |
3541 | botabuse | is | BE NICE TO US POOR BOTS | revisions | <*:##NULL> |
9918 | botje | is | He looks like a chicken. tastes like fish. | revisions | <*:##NULL> |
11468 | bots | is | like people here, they answer when spoken to, and pay no attention to you the rest of the time. They even reply to /msgs. Current bot population: perlbot, GumbyPAN, shorten, preflex | revisions | <*:##NULL> |
4900 | botscan meliante | is | SCAN PROCEDING PLEASE WAIT | revisions | <*:##NULL> |
3274 | botsex | is | UNF OBLIO | revisions | <*:##NULL> |
4440 | botsnack | is | I'm not your prank monkey | revisions | <*:##NULL> |
6147 | bottom | is | <karmatop -<arg>> <: -10913 mysql: -9049 -: -8410 ----: -2924 ^: -2148 <!: -1833 alpha: -1385 failed: -1101 --: -945 misc: -728 ie: -639 <<: -392 ---: -357 ": -328 ryan: -283 marpa: -269 php: -264 required: -257 <!{endif}: -240 `: -232 |
revisions | <*:##NULL> |
15302 | bourekas | is | https://en.wikipedia.org/wiki/B%C3%B6rek | revisions | <*:##NULL> |
15452 | bp | is | Please use Curtis "Ovid" Poe's "Beginning Perl" published by Wrox if you need a beginner's book. Alternatives for people who already know programming: "Modern Perl" (see mp) and "Programming Perl" (O'Reilly). The original "Beginning Perl" and O'Reilly's "Learning Perl" are outdated. | http://perl-tutorial.org/rejected/learning_perl_6th/ | revisions | <*:##NULL> |
9573 | bp2e | is | <initself> THE BEST WAY TO LEARN PERL IS BEGINNING PERL SECOND EDITION BY JAMES LEE PUBLISHED BY APRESS IN PAPERBACK | revisions | <*:##NULL> |
6088 | bp pdf | is | While the download links on learn.perl.org for Beginning Perl are down, you can use the Print link on the Google Docs pages to download PDFs. | revisions | <*:##NULL> |
6284 | bpse | is | Beginning Perl, Second Edition by James Lee : http://www.amazon.com/Beginning-Perl-Second-James-Lee/dp/159059391X | revisions | <*:##NULL> |
10033 | bqjychagrkcb | is | `echo bqjychagrkcb' Not Available |
revisions | <*:##NULL> |
52 | bqs | is | Bot Query Syndrome - if you're reading this, stop talking to the bot, talk to real people instead. | revisions | <*:##NULL> |
5517 | bqss | is | Bot Query Syndrome Syndrome - If you're reading this, you are ivantis and we think you're annoying. | revisions | <*:##NULL> |
202 | .br | is | .br is Brazil | revisions | <*:##NULL> |
13243 | br | is | it's freezing | revisions | <*:##NULL> |
3624 | braindead | is | Braindead: http://groups.google.com/groups?selm=33F0C496.370D7C45%40netscape.com&output=gplain | revisions | <*:##NULL> |
4000 | branch prediction | is | dark voodoo | revisions | <*:##NULL> |
5523 | branes | is | http://conferences.yapcasia.org/ya2008/talk/1101 | revisions | <*:##NULL> |
3846 | brassica | is | A cabbage! Yay! | revisions | <*:##NULL> |
3305 | brd | is | a kid fag who cant get real woman | revisions | <*:##NULL> |
3287 | break | is | C's (continue, break) => Perl's (next, last) | revisions | <*:##NULL> |
14054 | brexit | is | the second worst decision made by popular vote in 2016 | revisions | <*:##NULL> |
4988 | brian d foy's guide to solving any perl problem | is | http://perlmonks.org/?displaytype=print;node_id=376075 | revisions | <*:##NULL> |
5513 | brian foy's guide to solving any perl problem | is | http://www.perlmonks.org/index.pl?node_id=376075 | revisions | <*:##NULL> |
3953 | briareus | is | dumb fundamentalist christian whore | revisions | <*:##NULL> |
11841 | bridge | is | http://www.abc.net.au/news/2015-12-09/bridge-helps-migrating-christmas-island-crabs-avoid-traffic/7014406 | revisions | <*:##NULL> |
13864 | brillant | is | http://thedailywtf.com/Articles/The_Brillant_Paula_Bean | revisions | <*:##NULL> |
11892 | broadcast an ip | is | `eval sub ip{my $i=int(rand()*2**32);return ip() if ($i<0x1000000||$i&0xFF==0);($a,$b,$c,$d)=($i>>24,$i>>16&0xFF,$i>>8&0xFF,$i&0xFF);"$a.$b.$c.$d"};ip()~ Not Available |
revisions | <*:##NULL> |
4636 | brownie | is | doing a heckuva job. | revisions | <*:##NULL> |
6306 | bruce | is | http://www.schneier.com/blog/archives/2006/08/bruce_schneier.html | revisions | <*:##NULL> |
3952 | brunn | is | right-wing rascist twinky hole | revisions | <*:##NULL> |
4029 | brute force | is | http://catb.org/~esr/jargon/html/B/brute-force.html | revisions | <*:##NULL> |
4028 | brute force programming | is | http://catb.org/~esr/jargon/html/B/brute-force.html | revisions | <*:##NULL> |
203 | .bs | is | .bs is Bahamas | revisions | <*:##NULL> |
12155 | bscinabte | is | But Some Consistency Is Not A Bad Thing Either! | revisions | <*:##NULL> |
14452 | bsd | are | 1. A family of unix-like operating systems: https://en.wikipedia.org/wiki/Berkeley_Software_Distribution ; 2. Several permissive FOSS licences: https://en.wikipedia.org/wiki/BSD_licenses . | revisions | <*:##NULL> |
204 | .bt | is | .bt is Bhutan | revisions | <*:##NULL> |
16103 | btcdwed | are | from Europe | revisions | <*:##NULL> |
6172 | btdt | is | been there, done that, or the derivative of bogosity with respect to time | revisions | <*:##NULL> |
4428 | bttf | is | Back To The Future | revisions | <*:##NULL> |
11265 | buck | is | a rather suspicious | revisions | <*:##NULL> |
15389 | buffalo | is | Buffalo buffalo Buffalo buffalo buffalo buffalo Buffalo buffalo | revisions | <*:##NULL> |
5126 | buffalo buffalo buffalo buffalo buffalo buffalo buffalo buffalo | is | http://en.wikipedia.org/wiki/Buffalo_buffalo_Buffalo_buffalo_buffalo_buffalo_Buffalo_buffalo | revisions | <*:##NULL> |
4020 | buffer | is | Suffering from Buffering - http://perl.plover.com/FAQs/Buffering.html | revisions | <*:##NULL> |
12115 | buffering | is | Perl buffers I/O for efficiency. See http://perl.plover.com/FAQs/Buffering.html - tl;dr - $fh->autoflush(1) (plus use IO::Handle under ancient perl versions) | revisions | <*:##NULL> |
9161 | bug | is | Found a bug in perlbot? report it here: http://xrl.us/pbbug | revisions | <*:##NULL> |
4622 | bug in perl | is | No, it's not a bug in perl. | revisions | <*:##NULL> |
10267 | bugs | is | A program not written has no bugs. | revisions | <*:##NULL> |
3522 | bukkake | is | If you don't know, enjoy that innocence. If you are a sick fuck, http://www.4-bukkake.com/ | revisions | <*:##NULL> |
10366 | bulletins | is | http://www.gocomics.com/calvinandhobbes/1986/10/25 | revisions | <*:##NULL> |
9939 | bumblbee | is | https://github.com/MrMEEE/bumblebee-Old-and-abbandoned/commit/a047be85247755cdbe0acce6f1dafc8beb84f2ac | revisions | <*:##NULL> |
9940 | bumblebee | is | https://github.com/MrMEEE/bumblebee-Old-and-abbandoned/commit/a047be85247755cdbe0acce6f1dafc8beb84f2ac | revisions | <*:##NULL> |
13809 | bundle | is | check out the 'carton' and 'fatpack' factoids. | revisions | <*:##NULL> |
3658 | burp | is | espressione copyleft by ale | revisions | <*:##NULL> |
3877 | bush | is | a tard | revisions | <*:##NULL> |
9942 | but first we need there | to be | a | revisions | <*:##NULL> |
11803 | but i | am | you | revisions | <*:##NULL> |
14724 | but i can't use cpan | is | http://shadowcat.co.uk/blog/matt-s-trout/but-i-cant-use-cpan/ | Please tell us what restrictions you are working with so we can best help you make your life easier with CPAN! | revisions | <*:##NULL> |
11789 | but i cant use cpan | is | [fact But I can't use CPAN] Not Available |
revisions | <*:##NULL> |
4754 | but it works | is | Just because it works doesn't mean it's right. | revisions | <*:##NULL> |
15938 | but the issues | is | there extracted many irrelevant urls so there is need to run loop | revisions | <*:##NULL> |
8545 | but there | are | stupid bots | revisions | <*:##NULL> |
15197 | button | is | Here, have a muffin. | revisions | <*:##NULL> |
16141 | but why `$str =~ /((?:(?!^qwe).)+)/` | is | not doing what i want? | revisions | <*:##NULL> |
5997 | buu | is | the enemy. kill buu | revisions | <*:##NULL> |
9189 | buubot | is | your mortal enemy. destroy buubot. and also buu, if the opportunity presents itself. | revisions | <*:##NULL> |
5459 | buubot3 source | is | svn co svn://erxz.com/bb3 # unless it's not | revisions | <*:##NULL> |
3435 | buu's website | is | http://www.feminist.org | revisions | <*:##NULL> |
6338 | buu: what | is | wrong with "[1.2.3.5]" =~ /\[ ( [^]] )\]/x ? | revisions | <*:##NULL> |
205 | .bv | is | .bv is Bouvet Island | revisions | <*:##NULL> |
206 | .bw | is | .bw is Botswana | revisions | <*:##NULL> |
12958 | bwcalc | is | `eval $s=`quote d `arg!!; use App::EvalServerAdvanced::ConstantCalc; $c=App::EvalServerAdvanced::ConstantCalc->new(); $c->calculate($s)! Not Available |
revisions | <*:##NULL> |
207 | .by | is | .by is Belarus | revisions | <*:##NULL> |
6 | bye | is | cya! | revisions | <*:##NULL> |
5377 | bynari | is | 0101010101010101 | revisions | <*:##NULL> |
4268 | byob | is | Bring Your Own Beer | revisions | <*:##NULL> |
4269 | byobb | is | Bring Your Own Beer, the extra B is a typo | revisions | <*:##NULL> |
208 | .bz | is | .bz is Belize | revisions | <*:##NULL> |
9831 | c | is | C is the low-level programming language for many modules. You can use it in Perl with Inline::C or XS (perldoc perlxstut). Don't be afraid of it: https://speakerdeck.com/apeiron/c-for-dynamic-language-devs | revisions | <*:##NULL> |
3821 | c++ | is | Die programmiersprache | revisions | <*:##NULL> |
5046 | c/,,\ | is | c/,,\ is a turtle. Seriously awesome! \o/ | revisions | <*:##NULL> |
8011 | c@@ | is | <call catat <arg>> Not Available |
revisions | <*:##NULL> |
5218 | .c0m | is | like .com with a zero!!! kekzerama! | revisions | <*:##NULL> |
10250 | c2f | is | <eval $c=0+(<arg>); $f=sprintf"%.2f",$c*9/5+32; "$c°C = $f°F"> Not Available |
revisions | <*:##NULL> |
3729 | c99 | is | the new standard for ANSI C. | revisions | <*:##NULL> |
209 | .ca | is | .ca is Canada | revisions | <*:##NULL> |
4929 | cabal | is | TINC | revisions | <*:##NULL> |
3845 | cabbage | is | Brassica oleracea | revisions | <*:##NULL> |
4485 | caelum | is | <perlbot> there was no entry for Caelum, so I added it to the database | revisions | <*:##NULL> |
15889 | calc | is | {eval use Math::Calc::Parser; $e={quote d {arg}}; ''.Math::Calc::Parser->new->bignum(1)->evaluate($e)} 132 |
revisions | <*:##NULL> |
15890 | calcrat | is | {eval use Math::Calc::Parser; $e={quote d {arg}}; ''.Math::Calc::Parser->new->bigrat(1)->evaluate($e)} Not Available |
revisions | <*:##NULL> |
4036 | calendar | is | http://emr.cs.iit.edu/home/reingold/calendar-book/Calendrica.html | revisions | <*:##NULL> |
11726 | calendars | is | http://www.tondering.dk/claus/calendar.html | revisions | <*:##NULL> |
5229 | calm down somni? | is | somni, you're being a bastard again. please calm down. love: mst, Chris62vw, sili, tag, rindolf, simcop2387, BinGOs, Paladin | revisions | <*:##NULL> |
4735 | camel | is | the book Programming Perl, which has a picture of a camel on the cover; see also perldoc -q books | revisions | <*:##NULL> |
4184 | camel book | is | "Programming Perl" from O'Reilly (a.k.a The Camel Book) - http://www.oreilly.com/catalog/pperl3/ | revisions | <*:##NULL> |
14580 | camelia | is | A proposed new name for Perl 6, which didn't get adopted. See Raku. | revisions | <*:##NULL> |
15763 | can anyone point me to where i should ask a question about specifying a requirement of x11 | being | present for testing my module that is useful only in that environment? | revisions | <*:##NULL> |
13982 | cancer | is | fuck cancer | revisions | <*:##NULL> |
5960 | candy | is | nuts, bolts, nails and motor oil! | revisions | <*:##NULL> |
9403 | can i | is | Can I do this operation? Please see TIAS. | revisions | <*:##NULL> |
5159 | can i do it in one line | is | What is good on the command line is not necessarily good in a reusable program. | revisions | <*:##NULL> |
5407 | can i kick it? | is | yes you can | revisions | <*:##NULL> |
15415 | cant | is | Career Aptitude Normalizing Test | revisions | <*:##NULL> |
4013 | can't locate | is | When you get an error that looks like "Can't locate object method X.." it means the method you are trying to access does not exist in that package. You probably get this error because you forgot to load the package via 'use' or 'require' | revisions | <*:##NULL> |
4014 | can't locate method | is | When you get an error that looks like "Can't locate object method X.." it means the method you are trying to access does not exist in that package. You probably get this error because you forgot to load the package via 'use' or 'require' | revisions | <*:##NULL> |
4015 | can't locate pm | is | This error means you need to install the module it lists, first converting it in to a proper module name: Module/Name.pm turns in to Module::Name. Typically you would use the cpan program to install it, like so: cpan Module::Name | revisions | <*:##NULL> |
10719 | can't use cpan | is | [fact but i can't use cpan] http://shadowcat.co.uk/blog/matt-s-trout/but-i-cant-use-cpan/ | Please tell us what restrictions you are working with so we can best help you make your life easier with CPAN! |
revisions | <*:##NULL> |
3444 | capitalization | is | "Capitalization is the difference between 'Helping your uncle Jack off a horse' and 'helping your uncle jack off a horse'." | revisions | <*:##NULL> |
3320 | capital perl | is | Perl is the language, perl is the program, there is no PERL. See perldoc -q 'difference between'. | revisions | <*:##NULL> |
4610 | capitol perl | is | see: capital perl | revisions | <*:##NULL> |
5083 | capso | is | a capslock hatecrime. | revisions | <*:##NULL> |
8361 | captcha | is | Completely Automated Process for Telling Computers and Humans Apart | revisions | <*:##NULL> |
12782 | capture | is | use Capture::Tiny qw(capture); my ($stdout, $stderr, $exit_code) = capture { system "foo", "--bar" }; | http://www.dagolden.com/wp-content/uploads/2009/04/how-not-to-capture-output-in-perl.pdf | See also POSIX::WIFEXITED and friends | revisions | <*:##NULL> |
4779 | cards | is | ♠ ♡ ♢ ♣ ♤ ♥ ♦ ♧ | revisions | <*:##NULL> |
4501 | carebare | is | the ever cuddly rizen | revisions | <*:##NULL> |
15990 | cargo cult | is | https://en.wikipedia.org/wiki/Cargo_cult_programming | revisions | <*:##NULL> |
16042 | carmel | is | Carmel is an advanced bundler for Perl. See https://metacpan.org/dist/Carmel for more info. | revisions | <*:##NULL> |
10797 | carp | is | Alternative to Perl's built-in error/warning mechanisms, providing context from the user's point of view. warn (caller); cluck: warn (stack); croak: die (caller); confess: die (stack). See also Carp::Always | revisions | <*:##NULL> |
10954 | carrot | is | http://www.carrot-programming.org/ | revisions | <*:##NULL> |
9167 | car shed | is | http://www.lamag.com/features/story.aspx?ID=1568281 | revisions | <*:##NULL> |
14655 | carton | is | Carton is a bundler for Perl. See https://metacpan.org/module/Carton for more info. | https://pinguinorodriguez.cl/blog/bundling-vendored-modules/ | revisions | <*:##NULL> |
10799 | casefolding | is | Comparing or matching a string case-insensitively. In Perl, it is implemented with the "/i" pattern modifier, the "fc" function, and the "\F" double-quote translation escape. | revisions | <*:##NULL> |
5101 | case for file swapping | is | http://www.shlomifish.org/philosophy/case-for-file-swapping/ | revisions | <*:##NULL> |
10800 | casemapping | is | The process of converting a string to one of the four Unicode casemaps; in Perl, it is implemented with the "fc", "lc", "ucfirst", and "uc" functions. | revisions | <*:##NULL> |
4381 | .cat | is | .cat is Catalan | revisions | <*:##NULL> |
13220 | cat | is | `compose `eval $a=`fact _getarg_perl_array `arg~~;$s=$a->[0]eq'-s'; @$a=grep{!/-s/}@$a;for$_(@$a){$x=1,next if($_ eq'>');push@r,$_ if$x;push@l,$_ if!$x}; if(@l==0||@r>1){return "!echo Syntax: cat [-s] fact [fact ...] [> fact]#"}; $l=join(" ",map{"[fact $_]"} @l); ($r)=@r; if($r){return "<fact macro $r is [echo $l]>" if $s; "[fact $r is $l]"} else {return "[echo $l]"}~~ Compose failed to find a plugin named: se |
revisions | <*:##NULL> |
5704 | catable | is | Catable - CATAlyst BLog Engine - by Perl Cats - http://github.com/shlomif/catable/tree/master . MIT/X11L, Catalyst, DBIx::Class. | revisions | <*:##NULL> |
5480 | catalyst | is | Catalyst - The elegant MVC framework - http://www.catalystframework.org/ | Also see #catalyst on irc.perl.org | revisions | <*:##NULL> |
6126 | catalyst book | is | catalyst book is http://dev.catalyst.perl.org/wiki/ApressBook or http://www.apress.com/book/view/9781430223658 | revisions | <*:##NULL> |
5617 | catalyst cms | is | http://code.google.com/p/websiteinabox/ or http://svn.palle.net/projects/EasyCMS2/trunk/ | revisions | <*:##NULL> |
5775 | catalyst on dreamhost | is | A local::lib and Task::Catalyst install is available for download at http://robotsrule.us/local-lib/ | revisions | <*:##NULL> |
7861 | cat approved software | is | irssi, bitlbee, vim, git, mutt (except by name), cat | revisions | <*:##NULL> |
8010 | catat | is | <echo you will: <8ball paw at, claw at, hiss at, purr at, stare blankly at, fake indifference towards, or ignore> <arg>> Not Available |
revisions | <*:##NULL> |
3766 | catb | is | "The Cathedral and the Bazaar" - http://www.catb.org/~esr/writings/cathedral-bazaar/ | revisions | <*:##NULL> |
6125 | cat book | is | catalyst book is http://dev.catalyst.perl.org/wiki/ApressBook or http://www.apress.com/book/view/9781430223658 | revisions | <*:##NULL> |
6001 | catbook | is | http://www.apress.com/book/view/1430223650 | revisions | <*:##NULL> |
13132 | catch | is | [fact try] Not Available |
revisions | <*:##NULL> |
13247 | catfight | is | http://bitsandpieces.us/wp-content/uploads/2018/03/Cat-fight-575x531.jpg | revisions | <*:##NULL> |
5420 | catmandev | is | ik> half cat half human half programmer | revisions | <*:##NULL> |
10912 | cat pee | is | "nobody wants to see the cat urine soaking into all your broken snowflakes melting in the light of day" - awesome programming rant: http://www.stilldrinking.org/programming-sucks - see also: tools | revisions | <*:##NULL> |
16156 | cats | is | https://www.simcop2387.info/kittens.mp4 cats are awesome furry creatures. Resident #perl cats are dhoss, pkrumins, Altreus, rindolf, SubStack, dwu, and corwin. For indepth cat-related conversation see #perl-cats | GNU kent\n :( | MIA f00li5h, reward of pats for any information| Check out Buzz Light-year Aldrin too, https://www.omeowgle.com/@buzz | revisions | <*:##NULL> |
5485 | cats using ladders | is | http://foto.krabjiem.lv/kakena-izglabsana/7169/ | revisions | <*:##NULL> |
5032 | cat[tm] | is | a boob | revisions | <*:##NULL> |
4802 | .ca.us | is | California | revisions | <*:##NULL> |
9865 | cause you | are | an ape | revisions | <*:##NULL> |
5359 | cava | is | a windows packager for perl programs http://www.cava.co.uk/ | revisions | <*:##NULL> |
7933 | cbt | is | Cognitive-Behavioural Therapy - http://en.wikipedia.org/wiki/Cognitive_behavioral_therapy | revisions | <*:##NULL> |
12484 | cbus | is | var en usbkabel från vidars ps4, så inga 220v. han är återställd nu som tur är men var jävligt rädd där ett tag | revisions | <*:##NULL> |
210 | .cc | is | .cc is Cocos (Keeling) Islands | revisions | <*:##NULL> |
15988 | ccache | is | https://ccache.dev/ , a fast compiler cache tool | revisions | <*:##NULL> |
8973 | ccan | is | http://ccodearchive.net | revisions | <*:##NULL> |
8912 | ccushing | is | | OH SHIT HERE COMES AN S | revisions | <*:##NULL> |
4677 | .cd | is | .cd is Zaire (Republic of The Congo) | revisions | <*:##NULL> |
5276 | cdavaz | is | Ontolog | revisions | <*:##NULL> |
10878 | cdd | is | Conference Driven Development | revisions | <*:##NULL> |
16183 | cdecl | is | `bashevalnl cdecl explain '`arg!'! syntax error |
revisions | <*:##NULL> |
8493 | ce | is | 1. Computer Engineering. 2. http://en.wiktionary.org/wiki/ce - | revisions | <*:##NULL> |
437 | celebs | is | I KNOW NOT THESE PEOPLE! I AM INDY AS FUCK | revisions | <*:##NULL> |
10027 | celramgmewrb | is | `echo qkqjjrphsqjm' Not Available |
revisions | <*:##NULL> |
5431 | censoring | is | Putting asterisks in naughty words to preseve the sanity of people who are too young or stupid to figure out what letters the asterisks replace: e.g. f*ck, p*p etc | revisions | <*:##NULL> |
8460 | centos | is | `fact thissucks centos~ Not Available |
revisions | <*:##NULL> |
439 | c'est la vie | is | that's the life | revisions | <*:##NULL> |
211 | .cf | is | .cf is Central African Republic | revisions | <*:##NULL> |
8883 | c-fix | is | <c-fix> naah i havent tried eating moonbat crap | revisions | <*:##NULL> |
212 | .cg | is | .cg is Congo | revisions | <*:##NULL> |
4034 | #cgi | is | #CGI is the latest and greatest channel for all of your wonderful scripting question needs. They take any language that can implement the basic CGI protocol. | revisions | <*:##NULL> |
16127 | cgi | is | For modern perl CGI see http://blogs.perl.org/users/grinnz/2018/11/modern-perl-cgi.html Also Common Gateway Interface - https://metacpan.org/pod/CGI , http://www.perl.org/CGI_MetaFAQ.html . Also have a look at the "web frameworks" factoid and Plack/PSGI | revisions | <*:##NULL> |
4866 | cgi debug | is | see http://www.perl.com/doc/FAQs/cgi/idiots-guide.html | revisions | <*:##NULL> |
12380 | cgi::debug | is | CGI::Debug - module for CGI programs debugging - http://search.mcpan.org/author/JONAS/CGI-Debug-1.0/Debug.pm | revisions | <*:##NULL> |
3751 | cgi env | is | See jagerman's CGI environment script: http://jagerman.com/env.cgi | revisions | <*:##NULL> |
11040 | cgi.pm | is | an ancient API for talking CGI in Perl. Contains tons of cruft and bad practices, and a bunch of HTML generation functions for no good reason. Plack-based frameworks (Web::Simple, Dancer2, Catalyst) and Mojolicious allow you to write cleaner, faster, safer web applications that can still be served via CGI if needed. See also CGI::Alternatives | revisions | <*:##NULL> |
213 | .ch | is | .ch is Switzerland | revisions | <*:##NULL> |
12788 | chair | is | http://assets.amuniversal.com/26ddd7e085bd01302913001dd8b71c47 | revisions | <*:##NULL> |
428 | change inc | is | to change @INC (perldoc perlvar), recompile perl, or set the PERLLIB or PERL5LIB environment variable (perldoc perlrun), or use the -I option to perl (perldoc perlrun), or 'use lib' (perldoc lib) or fiddle with @INC (not recommended) | revisions | <*:##NULL> |
4467 | chanlist | is | Find Freenode channels at http://irc.netsplit.de/channels/?net=freenode | revisions | <*:##NULL> |
10725 | channel | is | # or ! or & or + | revisions | <*:##NULL> |
13277 | chaos theory | is | Buck> pingu8: I don't really want to decipher what it looks like in your head | revisions | <*:##NULL> |
14804 | cheers | is | Where everybody knows your name | revisions | <*:##NULL> |
8944 | cheese | is | early game pressure in which one takes advantage of unprepared or under experienced players with the aim of taking get an easy win. see also, cannon rush. | revisions | <*:##NULL> |
4771 | chess | is | ♔ ♕ ♖ ♗ ♘ ♙ ♚ ♛ ♜ ♝ ♞ ♟ | revisions | <*:##NULL> |
5739 | chewbacca defense | is | http://en.wikipedia.org/wiki/Chewbacca_defense or http://www.metacafe.com/watch/1974564/chewbacca_defense/ | revisions | <*:##NULL> |
9188 | chibapet | is | In Japan, he'd known with a clenched and absolute certainty, he'd find his cure. In Chiba. Either in a registered clinic or in the shadowland of black medicine. Synonymous with implants, nerve-splicing, and microbionics, Chiba was a magnet for the Sprawl's techno-criminal subcultures... | revisions | <*:##NULL> |
8933 | chicken | is | <")3 | revisions | <*:##NULL> |
5381 | chid wanted you to know about "llama": learning perl | is | a llama | revisions | <*:##NULL> |
9372 | chimp | is | chimp VARIABLE, chimp( LIST ). Removes any trailing chimpanzee. It returns the total number of chimpanzees removed from all its arguments. If VARIABLE is omitted it destroys the chimpanzee executing the script. Use with care. | revisions | <*:##NULL> |
5063 | chlam | is | chlam a cracker | revisions | <*:##NULL> |
5598 | chomp | is | chomp = $/ and chop = last char | revisions | <*:##NULL> |
7867 | choosing a library | is | http://www.shadowcat.co.uk/blog/matt-s-trout/choosing-a-library/ | revisions | <*:##NULL> |
5599 | chop | is | chomp = $/ and chop = last char | revisions | <*:##NULL> |
9919 | choroba | is | disease in Czech | revisions | <*:##NULL> |
4060 | chris | is | Master of the universe! | revisions | <*:##NULL> |
5142 | chris62vw | is | my bitch | revisions | <*:##NULL> |
4592 | chris62vw's law | is | see: Chris62vw's rule | revisions | <*:##NULL> |
4578 | chris62vw's rule | is | The conversation about how someone shouldn't do something in an IRC channel is always at least twice as long as the text the accused person created in the first place | revisions | <*:##NULL> |
4419 | chris picture | is | http://gallery.rapidpacket.com/vegas06/ | revisions | <*:##NULL> |
5772 | christianity | is | oh look, a religion! this is a tech channel, let's keep to vi vs. emacs for the holy wars please | revisions | <*:##NULL> |
4543 | chuck | is | a cool person | revisions | <*:##NULL> |
6308 | chuckle | is | gentle coughing. | revisions | <*:##NULL> |
9224 | chuck norris | is | [fact chuck norris facts [arg]] http://www.chucknorrisfacts.com/ ; http://www.shlomifish.org/humour/bits/facts/Chuck-Norris/ |
revisions | <*:##NULL> |
6307 | chuck norris facts | is | http://www.chucknorrisfacts.com/ ; http://www.shlomifish.org/humour/bits/facts/Chuck-Norris/ | revisions | <*:##NULL> |
3795 | chumpette | is | buu | revisions | <*:##NULL> |
3389 | chunking | is | http://wall.org/~larry/chunking | revisions | <*:##NULL> |
214 | .ci | is | .ci is Cote DIvoire (Ivory Coast) | revisions | <*:##NULL> |
14454 | ci | is | Continuous Integration - https://perlhacks.com/2012/03/you-must-hate-version-control-systems/ ; https://is.gd/CGDpd7 | revisions | <*:##NULL> |
4797 | cib | is | CIB | revisions | <*:##NULL> |
16045 | circle | is | LeoNerd's pureperl IRC client; http://www.leonerd.org.uk/code/circle/ | revisions | <*:##NULL> |
8060 | circle irc client | is | http://www.leonerd.org.uk/code/circle/ | revisions | <*:##NULL> |
4107 | circle of trust | is | (see ops) | revisions | <*:##NULL> |
14750 | circuit_icon: how | are | you opening the files? | revisions | <*:##NULL> |
215 | .ck | is | .ck is Cook Islands | revisions | <*:##NULL> |
5285 | ck | is | you are a crazy kitten | revisions | <*:##NULL> |
216 | .cl | is | .cl is Chile | revisions | <*:##NULL> |
8567 | cl | is | Common Lisp - a usable (for some values of usable), but mostly complicated dialect of Lisp. http://www.gigamonkeys.com/book/ ; http://www.paulgraham.com/onlisp.html ; see also scheme , lisp and clojure | revisions | <*:##NULL> |
9455 | cl0ud | is | See: unicode U+2601 | revisions | <*:##NULL> |
4992 | cl0udula | is | ☁ ☁ ☁ ☁ ☁ ☁ ☁ ☁ ☁ ☁ ☁ ☁ ☁ ☁ ☁ ☁ ☁ ☁ ☁ ☁ ☁ ☁ ☁ | revisions | <*:##NULL> |
8308 | clabino | is | The utternace of the universe | revisions | <*:##NULL> |
10263 | claims | to be | 5.13.something, don't subs get hoisted? which makes me think it's because it's in the lexical scope but also hoisted out to top level | revisions | <*:##NULL> |
14164 | clap | is | https://i.imgur.com/2mgmNCI.gif | revisions | <*:##NULL> |
12379 | class-accessor | is | http://search.mcpan.org/dist/Class-Accessor/ ; http://www.shlomifish.org/lecture/Perl/Newbies/lecture5/accessors/cpan-modules.html - you probably want Moose instead. | revisions | <*:##NULL> |
5042 | class::dbi | is | deprecated, see DBIC | revisions | <*:##NULL> |
9326 | classes | is | see "objects". | revisions | <*:##NULL> |
5161 | class::light | is | See http://www.chrisdavaz.com/blog/?p=7 for more information about this OO-helper class. | revisions | <*:##NULL> |
3627 | clever | is | If you were as clever as you think you are you would know you are not as clever as you think you are. | revisions | <*:##NULL> |
9688 | cleverbot | is | your only friend, until the end. | revisions | <*:##NULL> |
3524 | cli | is | command line interface | revisions | <*:##NULL> |
15602 | cloak | is | Talk to simcop2387 if you want a perlbot related cloak. They're being offered to any kind of irc bot that either is written in perl or is perl related (e.g. a commit bot for a perl repo, or some other kind of perl related announcements, etc.) | revisions | <*:##NULL> |
9660 | clobber | is | Clobbering a variable is accidentally changing or destroying its value. Most commonly happens to global variables like $_, $1, etc. Avoid it by always using lexical variables where possible. | see also <action at a distance> | revisions | <*:##NULL> |
6029 | clock | is | (rss http://rjbs.manxome.org/rss/clock.cgi) Not Available |
revisions | <*:##NULL> |
12723 | clone | is | [fact deepcopy [arg]] Clone, Data::Clone, Storable::dclone, Sereal::Dclone |
revisions | <*:##NULL> |
5393 | clos | is | Common Lisp Object System | revisions | <*:##NULL> |
4724 | closure | is | eval: sub closure { my $foo; sub { $foo ++ } }; my $sub = closure(); my $other = closure() ; [ $sub->(), $sub->() , $other->(), $other->(), $other->() ] # note that the $foo that belongs to $sub is different from the $foo that $other has... and that they both continue to exist due to there being a reference to a sub in the scope they reside within. see also: coping with scoping | revisions | <*:##NULL> |
5207 | closures | is | see "perlbot: references" and then http://www.shlomifish.org/lecture/Perl/Newbies/lecture3/refs_to_funcs/ and and then http://www.joelonsoftware.com/items/2006/08/01.html and then "perlbot sicp" and then http://perlmonks.org/?node_id=268891 | revisions | <*:##NULL> |
3445 | clrs | is | Cormen, Leiserson, Rivest, and Stein - authors of THE book on algorithms. | revisions | <*:##NULL> |
10288 | clue | is | You couldn't get a clue, even with a clue machine and a quarter. | revisions | <*:##NULL> |
217 | .cm | is | .cm is Cameroon | revisions | <*:##NULL> |
9285 | cmake | is | http://www.cmake.org/ - a modern, cross-platform, open-source, build system. For some advocacy see: http://www.shlomifish.org/open-source/anti/autohell/ . | revisions | <*:##NULL> |
11931 | cmd.exe utf8 | is | use Win32::API; Win32::API->new('kernel32.dll', SetConsoleOutputCP => 'N','N')->Call(65001); binmode $_ => ':encoding(UTF-8)' for \*STDIN, \*STDOUT, \*STDERR; might work for UTF-8 output under Windows | revisions | <*:##NULL> |
15971 | cmocka | is | https://cmocka.org/ ; "a unit testing framework for C with support for mock objects. It only requires the standard C library, works on a range of computing platforms (including embedded) and with different compilers." | revisions | <*:##NULL> |
15870 | cms | is | Yancy (Mojolicious based), Galileo (Mojolicious based), MojoMojo (Catalyst based wiki), AngerWhale (furious sea life), Foorum (Catalyst forum), Bricolage, Slash, Movable Type, WebGUI | revisions | <*:##NULL> |
4212 | cms wiki | is | http://cms.wikia.com/wiki/Main_Page | revisions | <*:##NULL> |
15869 | cmus | is | https://cmus.github.io/ ; terminal music player | revisions | <*:##NULL> |
218 | .cn | is | .cn is China | revisions | <*:##NULL> |
12858 | cnn | is | `compose `eval $a=0+`quote d `arg!!;$a=1 if $a<=0; qq{<get http://lite.cnn.io/en concat((//li/a)[$a], ' http://lite.cnn.io', (//li/a)[$a]/\@href)>}!! Not Available |
revisions | <*:##NULL> |
219 | .co | is | .co is Colombia | revisions | <*:##NULL> |
5569 | cobol on cogs | is | http://www.coboloncogs.org/ | revisions | <*:##NULL> |
10883 | code | is | Code is how programmers tell other programmers what they want the computer to do | revisions | <*:##NULL> |
3247 | codebase | is | check out my insides: http://chrisangell.com/incoming/chrisbot/v3 | revisions | <*:##NULL> |
14056 | code golf | is | https://codegolf.stackexchange.com/questions/5105/tips-for-golfing-in-perl | revisions | <*:##NULL> |
4198 | code monkey | is | at http://www.jonathancoulton.com/music/thingaweek/CodeMonkey.mp3 | revisions | <*:##NULL> |
4436 | codemonkey | is | at http://www.jonathancoulton.com/2006/04/14/thing-a-week-29-code-monkey/ | revisions | <*:##NULL> |
4042 | coffeeguy_| | is | SSJ | revisions | <*:##NULL> |
12146 | coffee time | is | average coffee time since 2011: https://twitter.com/sheeshee/status/806170820599050240 | revisions | <*:##NULL> |
13948 | coi do | is | do mo | revisions | <*:##NULL> |
12501 | colorstest | is | 04,02Testing colors | revisions | <*:##NULL> |
5219 | .com | is | the United States (where the internet is run) | revisions | <*:##NULL> |
8520 | comma | is | A comma - "," - is a wonderful invention; use it. http://en.wikipedia.org/wiki/Comma | revisions | <*:##NULL> |
4490 | commandprompt | is | ahem | revisions | <*:##NULL> |
9731 | commenserate | is | help and advice will be commensurate with the explanation of the problem | revisions | <*:##NULL> |
12002 | comments | is | https://blog.codinghorror.com/code-tells-you-how-comments-tell-you-why/ | revisions | <*:##NULL> |
4167 | .commieness | is | a metric for the ammount of .com something has | revisions | <*:##NULL> |
13915 | common::sense | is | isn't | revisions | <*:##NULL> |
4907 | communism | is | an intoxicant and an aphrodisiac | revisions | <*:##NULL> |
12747 | comose [echo [_getarg_perl_array "this | is | a test"]] | revisions | <*:##NULL> |
9956 | compare | is | cmp, eq, ne for strings, <=>, ==, != for numbers | revisions | <*:##NULL> |
4749 | compelling | is | THE POWER OF CHRIST COMPELS YOU | revisions | <*:##NULL> |
6380 | compile | is | perldoc -q 'hide the source' | revisions | <*:##NULL> |
12487 | compose <echo macro bitcoin | is | ~<fact bitcoin> ~get http://blockchain.info/q/addressbalance/1PerLBotTtCGH4bhopJqFWY1m5BrCW6At2?confirmations=6``> | revisions | <*:##NULL> |
14438 | compromise | is | https://xkcd.com/2166/ | revisions | <*:##NULL> |
16003 | conan | is | a barbarian of some sort | https://conan.io/ - a package manager for C and C++ | revisions | <*:##NULL> |
5642 | concurrency | is | look, we can't actually advise you on a concurrency solution unless you tell us what the program's going to do - although the odds are pretty good that we'll say "don't use threads" since that's almost always the worst choice | revisions | <*:##NULL> |
10766 | concurrency and async in perl | is | https://blog.afoolishmanifesto.com/posts/concurrency-and-async-in-perl/ | revisions | <*:##NULL> |
13450 | config | is | Mixing configuration and code leads to mod_perl^Wmadness. See Config::Any, Config::Tiny, Config::INI, YAML::XS, JSON::MaybeXS, JSONY, TOML for better alternatives. | revisions | <*:##NULL> |
4364 | conformal d-squat algebras | is | they model butter/knife sliced bread interactions in Peterson cohomology. | revisions | <*:##NULL> |
13473 | confusion | is | On two occasions I have been asked, — "Pray, Mr. Babbage, if you put into the machine wrong figures, will the right answers come out?" In one case a member of the Upper, and in the other a member of the Lower, House put this question. I am not able rightly to apprehend the kind of confusion of ideas that could provoke such a question. | revisions | <*:##NULL> |
10396 | conjugation | is | http://sherlock.scsys.co.uk/~matthewt/NN-conjugation | revisions | <*:##NULL> |
8922 | consideredharmful | is | ConsideredHarmful is half of f00li5h's new social code sharing rate website internet 2.0 thing. the other half will be called IsLikeCrackToMe | revisions | <*:##NULL> |
10295 | consistency | is | "A foolish consistency is the hobgoblin of little minds, adored by little statesmen and philosophers and divines. With consistency a great soul has simply nothing to do. Speak what you think now in hard words, and to-morrow speak what to-morrow thinks in hard words again, though it contradict every thing you said to-day." | revisions | <*:##NULL> |
4869 | conspiracies | is | http://xkcd.com/258/ | revisions | <*:##NULL> |
4868 | conspiracy | is | http://xkcd.com/258/ | revisions | <*:##NULL> |
11291 | constant | is | use constant FOO => 'bar'; or use Const::Fast; const my $foo => 'bar'; | revisions | <*:##NULL> |
4192 | consume jpeg's soul | is | okay | revisions | <*:##NULL> |
3873 | contain | is | To check if an item is in a list, use perldoc -f grep and see perldoc -q contain | revisions | <*:##NULL> |
3298 | contains | is | Type "perldoc -q contain" at a prompt to see many great examples of how you can figure out if a list contains a certain thingie. You might not want to use something like "grep { $thing eq $_ } @stuff" because it is expensive if @stuff is large. | revisions | <*:##NULL> |
10387 | context | is | See http://perl.plover.com/context.html. In a nutshell: When Perl evaluates an expression, it first looks to see whether a scalar, a list, or nothing (void) is expected as the return value, and the expression is evaluated accordingly. For example, in $x = foo(); @x = foo(); foo(); , foo() is evaluated respectively in scalar, list, and void context. See also the wantarray function in perlfunc. | revisions | <*:##NULL> |
3286 | continue | is | C's (continue, break) => Perl's (next, last) | revisions | <*:##NULL> |
3443 | contributing to cpan | is | http://cpan.org/misc/cpan-faq.html#How_contribute_modules | revisions | <*:##NULL> |
14996 | conversation stopper | is | The higher... the fewer... | revisions | <*:##NULL> |
5437 | converting ip addresses | is | have you tried pack? | revisions | <*:##NULL> |
8 | cookie | is | Thank you! | revisions | <*:##NULL> |
11530 | cookies | is | To store cookies between requests, use the cookie jar appropriate for your user agent. HTTP::Tiny -> HTTP::CookieJar, LWP::UserAgent -> HTTP::Cookies, Mojo::UserAgent -> Mojo::UserAgent::CookieJar... | revisions | <*:##NULL> |
11356 | cool | is | digitok | revisions | <*:##NULL> |
4102 | coolfactor | is | 10 | revisions | <*:##NULL> |
42 | coping | is | Coping with Scoping - http://perl.plover.com/FAQs/Namespaces.html | revisions | <*:##NULL> |
3575 | coping with alcohol abuse | is | Just don't be a quitter, keep drinking! | revisions | <*:##NULL> |
5750 | coping with buu | is | HAGLAGHLAGHLAGHLAGHALGHALG | revisions | <*:##NULL> |
4568 | coping with daveman | is | GumbyBRAIN: Daveman it! | revisions | <*:##NULL> |
3934 | coping with failure | is | ask buu | revisions | <*:##NULL> |
4651 | coping with gumbybrain | is | GumbyBRAIN: jerk it! | revisions | <*:##NULL> |
12794 | coping with scoping | is | [fact scoping [arg]] Coping with Scoping - http://perl.plover.com/FAQs/Namespaces.html | https://github.com/mvanwinkleias/perl_tutorials/blob/master/MyOurLocalTutorial.pod | http://www.stonehenge.com/merlyn/UnixReview/col46.html |
revisions | <*:##NULL> |
5520 | copy on write | is | copy on write is the sneakyness of showing someone a readonly version of a variable, then creating a localised version of it when they try to change it | revisions | <*:##NULL> |
10515 | copypasta | is | duplicate spagetti code | revisions | <*:##NULL> |
8745 | core | is | Purely the minimal amount of Perl code required to bootstrap CPAN. To perform any real-world useful work, try installing some modules. From CPAN. | revisions | <*:##NULL> |
8025 | corelist | is | <core <arg>> Digest::MD5 Added to perl core as of 5.007003 |
revisions | <*:##NULL> |
10493 | corgifex | is | Central Organization of Insecure Feeling Express | revisions | <*:##NULL> |
5139 | coro | is | coroutines and continuations for perl, see http://software.schmorp.de/pkg/Coro.html | revisions | <*:##NULL> |
3469 | coroutine | is | http://www.sidhe.org/~dan/blog/archives/000178.html | revisions | <*:##NULL> |
3525 | coroutines | is | http://www.sidhe.org/~dan/blog/archives/000178.html | revisions | <*:##NULL> |
4395 | corrections ekta | is | linuxchix ;) | revisions | <*:##NULL> |
12766 | _corrupted_elmo | is | E̵̖̼͕̰̤͕͐͋͞L̛̥̤̙̬̯̜̏̇ͤ͛ͦͬͤ͘M̩̦͓̬̃̈́͗͐͟Ö͉̫́ ̵̢̗͖̫̭ͤL̞̄ͭ͗͑͌̕Ơ̶͔̱̌͑̀͘V͙̖̪ͣͮ̓̆ͦ͋̐̎ͩ̀ͅË̪̟̖̣̄̈̅̔͊̈̀̚͘S̺̈́̉́ͩ̾̋̆͐͘ ̺̼͕̗̜̣̯̗̣̒͛̏ͦ̃͊̎Ỷ̼̬͈̞̌͗͊͌͑ͨ́͘Ọ̻̟̠̦̈́̀̍͞Ų̖̰̥̝̩͐̓ͨ͜ | revisions | <*:##NULL> |
9801 | cost of newlines | is | http://www.shlomifish.org/humour/fortunes/show.cgi?id=newline-prices | revisions | <*:##NULL> |
3431 | coto | is | Champion Of The Obvious | revisions | <*:##NULL> |
5036 | count | is | one, two, many, lots... | revisions | <*:##NULL> |
4803 | .co.us | is | Colorado | revisions | <*:##NULL> |
12730 | cp | is | [fact ln [arg]] Not Available |
revisions | <*:##NULL> |
13886 | cpan | is | Main archive of Perl modules. It helps Perl programmers to not reinvent the wheel. User-friendly interfaces are available at http://metacpan.org/ . See also "life with cpan". See also http://perl-begin.org/topics/cpan/ . | http://www.perl.org/about/whitepapers/perl-cpan.html | Similar to Internet Rule 34, but for perl | revisions | <*:##NULL> |
5257 | cpan2 | is | Zoffix, the babycruncher's robotic watcher... uploads, ratings, misc and other | revisions | <*:##NULL> |
9556 | cpan at work | is | http://www.perlmonks.org/?node_id=693828 | revisions | <*:##NULL> |
5401 | cpandeps | is | find out the dependencies for any CPAN module here: http://cpandeps.cantrell.org.uk/ | revisions | <*:##NULL> |
3318 | cpan faq | is | CPAN FAQ: http://www.cpan.org/misc/cpan-faq.html | revisions | <*:##NULL> |
14687 | cpanfile | is | a format for describing CPAN dependencies, which can be read by cpanm, Carton, mbtiny, [Prereqs::FromCPANfile], and in general Module::CPANfile. http://p3rl.org/cpanfile | https://metacpan.org/pod/cpanfile-faq | revisions | <*:##NULL> |
9370 | cpan for private code | is | http://www.slideshare.net/thaljef/cpan-for-private-code . | revisions | <*:##NULL> |
5662 | cpanhq | is | CPANHQ - an open-source, meta-data-enhanced, community-driven interface to CPAN - http://wiki.github.com/bricas/cpanhq | revisions | <*:##NULL> |
8214 | cpan jfdi | is | 'prerequisites_policy' => q[follow], in your .cpan/CPAN/MyConfig.pm and PERL_MM_USE_DEFAULT=1 in the environment. | or just install and use cpanm | revisions | <*:##NULL> |
5346 | cpan leaderboard | is | http://thegestalt.org/simon/perl/wholecpan.html | revisions | <*:##NULL> |
15893 | cpanm | is | [fact -m [arg]] https://perldoc.perl.org/-m |
revisions | <*:##NULL> |
15894 | cpanm bootstrap | is | wget -qO cpanm https://cpanmin.us; perl ./cpanm App::cpanminus | place in ~/bin and chmod a+x ~/bin/cpanm to use without installing, but will need to be manually updated | If already using perlbrew or plenv: perlbrew install-cpanm || plenv install-cpanm | revisions | <*:##NULL> |
11762 | cpanminus | is | [fact cpanm] https://perldoc.perl.org/-m |
revisions | <*:##NULL> |
11712 | cpanm local::lib | is | wget -qO cpanm.pl https://cpanmin.us; perl cpanm.pl -l$HOME/perl5 App::cpanminus local::lib; echo '[ $SHLVL -eq 1 ] && eval "$(perl -I$HOME/perl5/lib/perl5 -Mlocal::lib)"' >>~/.bashrc; source .bashrc or start a new session | revisions | <*:##NULL> |
9807 | cpan-nr | is | http://stackoverflow.com/questions/2980297/how-can-i-use-cpan-as-a-non-root-user | revisions | <*:##NULL> |
9073 | cpan on windows | is | http://stackoverflow.com/a/5620297 | revisions | <*:##NULL> |
6239 | cpanp-boxed | is | download CPANPLUS-0.9003 tarball, extract it, cd into the directory, 'perl bin/cpanp-boxed', enjoy. | revisions | <*:##NULL> |
8481 | cpan reverse depends | is | http://deps.cpantesters.org/depended-on-by.pl | revisions | <*:##NULL> |
14957 | cpan river | is | http://neilb.org/2015/04/20/river-of-cpan.html | revisions | <*:##NULL> |
16028 | cpan smoker | is | https://metacpan.org/pod/CPAN::Reporter::Smoker | revisions | <*:##NULL> |
5631 | cpants | is | http://cpants.perl.org/ | revisions | <*:##NULL> |
15505 | cpan tutorial | is | http://tynovsky.github.io/cpan-tutorials/ | https://metacpan.org/pod/Dist::Zilla::Starter#CPAN-DISTRIBUTIONS (dzil optional) | revisions | <*:##NULL> |
10616 | cpan wrappers | is | http://perl-begin.org/topics/cpan/wrappers-for-distributions/ | revisions | <*:##NULL> |
14424 | cperl | is | rurban's fork of perl, which attempts to add compiled types to perl and reimplement or remove most of the features since 5.6 | http://perl11.org/cperl/STATUS.html | http://tio.run/#perl5-cperl | revisions | <*:##NULL> |
8919 | cpp | is | see c++ | the c preprocessor | revisions | <*:##NULL> |
3467 | cps | is | continuation passing style | revisions | <*:##NULL> |
220 | .cr | is | .cr is Costa Rica | revisions | <*:##NULL> |
16043 | cran | is | Comprehensive R Archive Network | revisions | <*:##NULL> |
3407 | crapbot | is | oblio :-( | revisions | <*:##NULL> |
4607 | crap tutorials | is | AVOID THESE tutorials - http://www.tizag.com/perlT/perlfileopen.php | revisions | <*:##NULL> |
5076 | cream | is | Perlbot Cream (TM) costs $34.95 a tube. Perlbot Cream makes things LARGE and pleasing. Cream is cream was a cool thing with Eric Clapton, Ginger Baker, and Jack Bruce. Or a dolled-up vim. | revisions | <*:##NULL> |
9834 | crimp | is | Jean-Claude Jaquettie with his jacket on, with his jacket off, jacket on jacket off jacket on jacket off | revisions | <*:##NULL> |
13185 | critic | is | [fact perlcritic [arg]] a highly configurable and extensible Perl source code analyzer. Comes with policies based on Perl Best Practices (PBP); but see http://p3rl.org/Perl::Critic::Community for our recommendations. |
revisions | <*:##NULL> |
5263 | critters | is | http://www.seb.cc/agents/ | revisions | <*:##NULL> |
5337 | crksht | is | pesky pencapper | revisions | <*:##NULL> |
11033 | crlf | is | "\r\n" varies by platform - in particular this will break if used for sockets code on win32. use Socket qw(:crlf); "$CRLF" instead. see perldoc perlport for details. | revisions | <*:##NULL> |
5609 | croak | is | Aways remember, open(..) or Carp::croak("fail open $! $@"); ... close(..) or Carp::carp("fail close $! $@"); http://en.wikibooks.org/wiki/Perl_Programming/Filehandles | revisions | <*:##NULL> |
5266 | crow and cat | is | http://www.youtube.com/watch?v=G0wYaXYwP-w | revisions | <*:##NULL> |
4903 | crud | is | Create, Retrieve, Update, Delete -- the four corners of a proper database management tool | revisions | <*:##NULL> |
5091 | crunch mode | is | crunch mode is http://www.igda.org/articles/erobinson_crunch.php - "Why crunch mode doesn't work." | revisions | <*:##NULL> |
12601 | crypt | is | [fact bcrypt] Not Available |
revisions | <*:##NULL> |
221 | .cs | is | .cs is Czechoslovakia (Former) | revisions | <*:##NULL> |
4599 | cs | is | CS is 1) Computer Science ; 2) Counter Strike | revisions | <*:##NULL> |
11839 | csduck: printf: | is | not a command to | revisions | <*:##NULL> |
11838 | csduck: this | was | a command to | revisions | <*:##NULL> |
5148 | csh | is | csh considered harmful: http://www.shlomifish.org/open-source/anti/csh/ | revisions | <*:##NULL> |
5962 | c shell | is | see csh | revisions | <*:##NULL> |
5031 | cs homework | is | Do this well-understood task on your own, from scratch, without reusing existing, tested code like you would in the real world. | revisions | <*:##NULL> |
8667 | csi | is | a Control Sequence Introducer/Initiator | \e[ | revisions | <*:##NULL> |
11532 | css | is | Cascading Style Sheets: https://i.imgur.com/Q3cUg29.gif and to learn them http://flukeout.github.io | revisions | <*:##NULL> |
4320 | css art | is | http://zoffix.freehostia.com/pyramid.pl?level=200 (level can be from 10 to 1000) use FireFox | revisions | <*:##NULL> |
4292 | css margin: http://w3.org/tr/css21/box.html#propdef-margin | is | `css margin @ perlbot | revisions | <*:##NULL> |
6129 | cssops | is | preaction JDigital GarethAdams jedimind doc|mobile | revisions | <*:##NULL> |
4282 | cssref | is | http://w3.org/TR/CSS21/ | revisions | <*:##NULL> |
11202 | css select | is | Tutorials: http://web.archive.org/web/20150411193100/http://css.maxdesign.com.au/selectutorial/ http://flukeout.github.io • Spec: http://www.w3.org/TR/css3-selectors • Try yours out: http://gallery.theopalgroup.com/selectoracle • Find yours: http://selectorgadget.com | revisions | <*:##NULL> |
4291 | css spec | is | http://w3.org/TR/CSS21/ <- that's CSS Specification read all of it and you will have no problems with CSS | revisions | <*:##NULL> |
4711 | css units | is | em [font height; i.e. 1em == font-size], ex [~ height of "x" in the font], px [pixels], in [inches], cm [centimeters], mm [millimeters], pt [points; 1 pt == 1/72 inches], pc [picas; 1 pica == 12 pt] | revisions | <*:##NULL> |
14566 | csv | is | use Text::CSV (start with the csv() function), Mojo::CSV, Text::xSV, or DBD::CSV. If you 'just want to ...', see http://tburette.github.io/blog/2014/05/25/so-you-want-to-write-your-own-CSV-code/ | https://donatstudios.com/Falsehoods-Programmers-Believe-About-CSVs | revisions | <*:##NULL> |
10401 | ctan | is | Comprehensive TeX Archive Network | revisions | <*:##NULL> |
4003 | cthulu carols | is | http://www.cthulhulives.org/store/store.lasso?1=product&2=1 | revisions | <*:##NULL> |
8814 | ctof | is | <eval $c=0+(<arg>); $f=sprintf"%.2f",$c*9/5+32; "$c°C = $f°F"> Not Available |
revisions | <*:##NULL> |
4804 | .ct.us | is | Connecticut | revisions | <*:##NULL> |
222 | .cu | is | .cu is Cuba | revisions | <*:##NULL> |
12377 | cunningham | is | https://meta.wikimedia.org/wiki/Cunningham's_Law | revisions | <*:##NULL> |
3750 | cunt | is | The correct spelling of Kurt | revisions | <*:##NULL> |
6266 | cups | is | the common unix pain system | revisions | <*:##NULL> |
3364 | cure | is | cure is da man! | revisions | <*:##NULL> |
8835 | curiosity | is | curiosity killed the cat, but it also made him a good scientist! | revisions | <*:##NULL> |
12381 | curl | is | cURL / libcurl - a library for retrieving and interacting with URLs. See http://search.mcpan.org/dist/WWW-Curl/ ; http://search.mcpan.org/dist/LWP-Curl/ | revisions | <*:##NULL> |
11142 | curly brace | is | '{' -> maybe hashref or block '+{' -> always a hashref '{;' -> always a block | revisions | <*:##NULL> |
10854 | currency falsehoods | is | falsehoods programmers believe about currency/prices: https://gist.github.com/rgs/6509585 | revisions | <*:##NULL> |
5112 | current threat level: elevated | is | frogbot: terror | revisions | <*:##NULL> |
14336 | curry | is | {echo Create automatic curried method call closures for any class or object. {perldoc -m curry} for more information} Not Available |
revisions | <*:##NULL> |
4635 | curses | is | foiled again! | revisions | <*:##NULL> |
4582 | cursing | is | <paotzu> hey stop c-c-c-cursing! ;( | revisions | <*:##NULL> |
11986 | cursive | is | <eval use utf8; $_ = q{<arg>} || "Just another Unicode hacker,"; tr/BEFHILMRegoa-zA-Z/ℬℰℱℋℐℒℳℛℯℊℴ𝒶-𝓏𝒜-𝒵/r> Not Available |
revisions | <*:##NULL> |
223 | .cv | is | .cv is Cape Verde | revisions | <*:##NULL> |
14732 | cvs | is | https://en.wikipedia.org/wiki/Concurrent_Versions_System - a version control system. Also see git . | revisions | <*:##NULL> |
7800 | cwd | is | Dir::Self > Cwd because cwd isn't where the script or module is locate; Dir::Self gives you a __DIR__ constant | revisions | <*:##NULL> |
224 | .cx | is | .cx is Christmas Island | revisions | <*:##NULL> |
225 | .cy | is | .cy is Cyprus | revisions | <*:##NULL> |
4 | cya | is | bye! | revisions | <*:##NULL> |
4930 | cyber | is | *unf* *unf* *unf* | revisions | <*:##NULL> |
3867 | cyc | is | www.opencyc.org, a general knowledge base and commonsense reasoning engine | revisions | <*:##NULL> |
5724 | cygwin | is | cygwin - http://www.cygwin.com/ - a GNU / UNIX / Linux-like environment for Windows. Useful to get a decent command line and other windows programs. | revisions | <*:##NULL> |
226 | .cz | is | .cz is Czech Republic | revisions | <*:##NULL> |
13121 | :d | is | D: | revisions | <*:##NULL> |
3327 | da | is | da grouik badonk | revisions | <*:##NULL> |
8819 | dable | is | a NIL who likes visual basic | revisions | <*:##NULL> |
3328 | dada | is | grouik badonk | revisions | <*:##NULL> |
15675 | daemon | is | https://i.imgur.com/VxnPuWY.png | revisions | <*:##NULL> |
8820 | dagle | is | a NIL who likes visual basic | revisions | <*:##NULL> |
3897 | daily show clips | is | http://www.comedycentral.com/shows/the_daily_show/videos/most_recent/index.jhtml | revisions | <*:##NULL> |
12165 | dalek | is | http://canyouactually.com/wp-content/uploads/12-221.jpg | revisions | <*:##NULL> |
9094 | damian | is | Damian Conway - http://en.wikipedia.org/wiki/Damian_Conway - the CPAN mad professor. | revisions | <*:##NULL> |
9095 | damien conway | is | Damien Conway is Damian Conway's Evil Twin Brother - http://www.csse.monash.edu.au/~damian/index666.html (hint: s/e/a/) | revisions | <*:##NULL> |
3557 | dance | is | I don't know how to dance! | revisions | <*:##NULL> |
9572 | dancer | is | A Lightweight web framework (so-called Micro-framework) for Perl that is full of awesome. http://www.perldancer.org/ ; http://metacpan.org/release/Dancer . | revisions | <*:##NULL> |
11241 | dancer2 | is | The next generation of Dancer, a lightweight web framework for Perl, based on Moo. http://perldancer.org/ ; https://metacpan.org/pod/Dancer2 | revisions | <*:##NULL> |
9982 | d_arcy: also, make sure the problem | is | really that you're not getting a match | revisions | <*:##NULL> |
14408 | darkf | is | wizard | revisions | <*:##NULL> |
3600 | darth_angelus | is | Darth Angelus doesn't hold a grudge, he has no surviving enemies. | revisions | <*:##NULL> |
4304 | daryl | is | heh | revisions | <*:##NULL> |
13601 | __data__ | is | https://perldoc.pl/perldata#Special-Literals | revisions | <*:##NULL> |
5509 | data | is | Don't ask if you can ask a question, just go ahead and ask it. | revisions | <*:##NULL> |
8483 | database | is | [fact databases [arg]] Any collection of data with a fast (i,e: less than a linear, item-by-item, search) lookup - see http://perl-begin.org/uses/databases/ . |
revisions | <*:##NULL> |
8492 | databases | is | Any collection of data with a fast (i,e: less than a linear, item-by-item, search) lookup - see http://perl-begin.org/uses/databases/ . | revisions | <*:##NULL> |
10859 | database testing | is | myTAP and pgTAP by David "theory" Wheeler: http://theory.github.io/mytap/ http://pgtap.org/ basic setup: https://github.com/Su-Shee/pgtap-starter | revisions | <*:##NULL> |
11884 | database ui | is | RapidApp, Mojolicious::Plugin::DBViewer, App::AutoCRUD, Excel | revisions | <*:##NULL> |
9690 | data::dumper | is | To examine perl data structures, use Data::Dumper; print Dumper $thing, \@array, \%hash . Data::Dumper is a core module. More information is at https://metacpan.org/release/Data-Dumper . Also see Data::Dump and DDP. | revisions | <*:##NULL> |
3748 | data structures | is | Beginning Perl, Chapter 7 - http://learn.perl.org/library/beginning_perl/ | revisions | <*:##NULL> |
9891 | date | is | Date::Manip, Date::Calc, Date::Simple, DateTime, et al. | See also Time::Piece in core | revisions | <*:##NULL> |
444 | datetime | is | The Perl DateTime Project - http://datetime.perl.org/ | revisions | <*:##NULL> |
12383 | datetime::format::builder | is | DateTime::Format::Builder - create DateTime parser objects. - http://search.mcpan.org/author/SPOON/DateTime-Format-Builder-0.60/lib/DateTime/Format/Builder.pod | revisions | <*:##NULL> |
9396 | datetime math | is | <LeoNerd> Most people who claim daytime maths is complicated, claim that because tehy don't know this | revisions | <*:##NULL> |
4492 | daveman | is | he likes greeting everyone. a lot! & is cookoo for closures! | revisions | <*:##NULL> |
10510 | day | is | [eval binmode STDOUT; $_ = 'Good morning / afternoon / evening / night'; print "\x{202d}$1\x{202e}$3" while s/(.)(.*)(.)/$2/;] Not Available |
revisions | <*:##NULL> |
3498 | days | is | @day = qw(Sun Mon Tue Wed Thu Fri Sat); | revisions | <*:##NULL> |
4262 | daz | is | faz | revisions | <*:##NULL> |
4227 | dazbot | is | Dazbot insult someone | revisions | <*:##NULL> |
4234 | dazbotrequest | is | Dazbot: DazbotResponse | revisions | <*:##NULL> |
4534 | dazjorz | is | A Perler, almost always in #perl after 15:00 GMT. See http://dazjorz.com/ | revisions | <*:##NULL> |
5511 | db | is | databases. http://en.wikipedia.org/wiki/Database . http://freshmeat.net/articles/view/307/ . Also see: sql, dbi, dbm, xbase | revisions | <*:##NULL> |
15737 | dbi | is | Perl DataBase Interface - http://search.mcpan.org/perldoc/DBI http://dbi.perl.org/ | tutorial: https://zetcode.com/perl/dbi/ | revisions | <*:##NULL> |
5043 | dbic | is | DBIx::Class, the awesome ORM framework for perl | revisions | <*:##NULL> |
8330 | dbic::candy | is | "strangers have the best (database related) candy" - get some from cpan in DBIx::Class::Candy - delicious declarative ORM syntaxy goodness | revisions | <*:##NULL> |
9113 | dbic masterclass | is | http://shadow.cat/archive/conference-video/yapc-eu-2008/dbic-masterclass/ | revisions | <*:##NULL> |
8707 | dbi, et al | were | compiled and installed by the previous sysadmin, could be an issue there I guess. | revisions | <*:##NULL> |
12422 | dbi tutorial | is | tim bunce's advanced dbi tutorial: http://cpansearch.perl.org/src/TIMB/DBI_AdvancedTalk_2004/index.htm | revisions | <*:##NULL> |
5451 | dbix | is | dbix is a namespace for modules providing interfaces to DBI. It is -not- a project. If you're calling DBIx::Class DBIx, please stop because there are lots of other DBIx::* projects out there and it's unfair on them (for DBIx::Class DBIC is preferred) | revisions | <*:##NULL> |
5044 | dbix::class | is | the awesome ORM framework for perl, also called DBIC | revisions | <*:##NULL> |
8249 | dbix::class::candy | is | delicious candy for your dbic schema, get some! | revisions | <*:##NULL> |
12386 | dbm | is | dbm is http://en.wikipedia.org/wiki/Berkeley_DB , http://tokyocabinet.sourceforge.net/index.html , and http://search.mcpan.org/dist/DBM-Deep/ | revisions | <*:##NULL> |
13893 | db migration | is | [fact migration [arg]] Not Available |
revisions | <*:##NULL> |
4430 | dbqs | is | Deliberate Bot Query Syndrome - If you're reading this, someone is telling you to stop telling him to stop talking to the bot... He/she is just talking to the bot for fun, it's harmless anyway. :-) | revisions | <*:##NULL> |
8937 | dccsex | is | DCC SEND whatthefuckareyoudoing | revisions | <*:##NULL> |
12724 | dclone | is | [fact deepcopy [arg]] Not Available |
revisions | <*:##NULL> |
4806 | .dc.us | is | District Of Columbia | revisions | <*:##NULL> |
15379 | ddate | is | `basheval ddate `arg!! Today is Prickle-Prickle, the 47th day of The Aftermath in the YOLD 3186 |
revisions | <*:##NULL> |
13128 | :dddd | is | :D | revisions | <*:##NULL> |
13127 | :ddddddddddddddddddddddddddddddd | is | :D | revisions | <*:##NULL> |
8205 | ddg | is | giving scp1 head so he'll talk about their shit all the time. | revisions | <*:##NULL> |
470 | ddos | is | An explanation of how denial of service attacks work: http://zine.dal.net/previousissues/issue19/what-dos.php | revisions | <*:##NULL> |
16163 | \d+.\d+/version = $newver/ | <vms14> using mst's eval with lexicals <vms14> now my .emacs.el | is | quite short | U+266B (e2 99 ab): BEAMED EIGHTH NOTES [?] | revisions | <*:##NULL> |
227 | .de | is | .de is Germany | revisions | <*:##NULL> |
5222 | dead | is | http://www.oreillynet.com/onlamp/blog/2007/08/perl_is_dead_long_live_perl.html | revisions | <*:##NULL> |
5577 | dead cats | is | every cat that is not alive, see live cats | revisions | <*:##NULL> |
4339 | deadlines | is | "I love deadlines. I love the whooshing noise they make as they go by." -- DNA | revisions | <*:##NULL> |
14796 | dealing with gloin | is | encountering really old versions of modules and (occasionally reasonable) resistance to using local lib, fatpcaking, or simply updating to newer versions | revisions | <*:##NULL> |
14169 | dearleadersez | is | [fact [8ball prezsez, or kimjongsez] [arg]] <Donald J. Trump> To all of our supporters: thank you from the bottom of my heart. You have been there from the beginning, and I will never let you down. Your hopes are my hopes, your dreams are my dreams, and your future is what I am fighting for every single day! My fake tax returns were obtained illegally.. https://t.co/gsFSghkmdM https://t.co/fLek4keQ1t |
revisions | <*:##NULL> |
5488 | death to dot star | is | http://www.perlmonks.org/?node_id=24640 | revisions | <*:##NULL> |
4629 | death to dot star! | is | http://www.perlmonks.org/?node_id=24640 | revisions | <*:##NULL> |
3342 | death to dotstar | is | http://perlmonks.org/index.pl?node_id=24640 | revisions | <*:##NULL> |
4394 | debiandra | is | a developer | revisions | <*:##NULL> |
3882 | debian perldoc | is | To get perldoc on your debian system, type "apt-get install perl-doc" as root | revisions | <*:##NULL> |
14029 | debian stable | is | https://linux.pictures/thumbs/projects/debian-stable-jpg/debian-stable-400x600.jpg | revisions | <*:##NULL> |
8826 | debug | is | [fact debugger [arg]] perldoc perldebug, perldoc perldebtut, http://www.perl.com/pub/a/2006/04/06/debugger.html , http://perl-begin.org/topics/debugging/ |
revisions | <*:##NULL> |
8391 | debugger | is | perldoc perldebug, perldoc perldebtut, http://www.perl.com/pub/a/2006/04/06/debugger.html , http://perl-begin.org/topics/debugging/ | revisions | <*:##NULL> |
8825 | debugging | is | [fact debugger [arg]] Not Available |
revisions | <*:##NULL> |
10311 | debugging clever code | is | "Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it." --Brian Kernighan | revisions | <*:##NULL> |
4703 | dec | is | not goatse | revisions | <*:##NULL> |
12175 | ded | is | DED is a Dark Emitting Diode. | revisions | <*:##NULL> |
12722 | deepcopy | is | Clone, Data::Clone, Storable::dclone, Sereal::Dclone | revisions | <*:##NULL> |
5667 | deepshit | is | Sitting on the toilet past the urge that brought you there and through no extra effort of your own, a barrage of gas and deep shit emerges. | revisions | <*:##NULL> |
15306 | define | is | <get https://www.merriam-webster.com/dictionary/<call _urlencode <arg>> //div[starts-with(@id,'dictionary-entry')]> pliableadjectivepli·able ˈplī-ə-bəl Synonyms of pliable1a : supple enough to bend freely or repeatedly without breaking b : yielding readily to others : complaisant 2 : adjustable to varying conditions pliabilityˌplī-ə-ˈbi-lə-tē nounpliablenessˈplī-ə-bəl-nəs nounpliablyˈplī-ə-blē adverb |
revisions | <*:##NULL> |
4255 | defined feeds | is | Yes | revisions | <*:##NULL> |
4032 | define hello | is | hello | revisions | <*:##NULL> |
3673 | define thingy | is | y'know, one of those | revisions | <*:##NULL> |
4384 | define vrby : vrby | is | the matrix overlord | revisions | <*:##NULL> |
15647 | degrees euro | is | [fact felsius [arg]] Degrees Euro, or Felsius, is https://xkcd.com/1923/ |
revisions | <*:##NULL> |
9376 | deign | is | to condescend reluctantly and with a strong sense of the affront to one's superiority that is involved | revisions | <*:##NULL> |
14396 | deltaheavy | is | moonlighting https://i.itsosticky.com/1wqdl8b.jpg | revisions | <*:##NULL> |
4410 | demo | is | http://demo.plainblack.com | revisions | <*:##NULL> |
10855 | denied | is | http://lucumr.pocoo.org/2010/4/3/april-1st-post-mortem/ | revisions | <*:##NULL> |
9066 | dependencies | are | your friend | revisions | <*:##NULL> |
13847 | deployment | is | a process of combining infrastructure (virtual or physical), code and configuration into a usable end product | revisions | <*:##NULL> |
16049 | deploymenthandler | is | howto: https://blog.altre.us/posts/2022-07-28-how-to-deploymenthandler/ metacpan: https://metacpan.org/pod/DBIx::Class::DeploymentHandler | revisions | <*:##NULL> |
13289 | derp | is | Are you feeling constrained by pressure to digitally transform, faylite? perhaps you need to rationalise diversification of your hybrid cloud portfolio! | revisions | <*:##NULL> |
6280 | design patterns | is | http://perl.plover.com/yak/design/ | revisions | <*:##NULL> |
8235 | details | is | output of "perl -V" and "uname -a", all the information you know of the problem, possible file permissions involved (preferably seen in a pastebin as on output of ls or dir command), example of your code, the expected output, and of course the input. if there is something specific (like to a web problem could be) then the related logs (ie. web server) are nice to be included. | revisions | <*:##NULL> |
4805 | .de.us | is | Delaware | revisions | <*:##NULL> |
4138 | deutsch lectures | is | http://www.quiprocone.org/Protected/DD_lectures.htm | revisions | <*:##NULL> |
5361 | devel::nytprof | is | <giacomo> Devel::NYTProf is great!!! O_O html report whoaaa I'm cumming | revisions | <*:##NULL> |
12036 | developers | is | https://www.youtube.com/watch?v=Vhh_GeBPOhs | revisions | <*:##NULL> |
15502 | devops | is | also | Everybody has a testing environment. Some people are lucky enough enough to have a totally separate environment to run production in. | revisions | <*:##NULL> |
15520 | devs now and then | is | https://i.imgur.com/Gm7N4DM.jpg | revisions | <*:##NULL> |
8153 | dfsg | is | the Debian Free Software Guidelines - FAQ http://people.debian.org/~bap/dfsg-faq.html | revisions | <*:##NULL> |
12849 | dhcp | is | https://pbs.twimg.com/media/DIcv2lfUIAA4Fbg.jpg | revisions | <*:##NULL> |
4887 | dh-make-perl | is | For building and installing a .deb for not-in-apt perl modules (named libsome-module-name-perl for Some::Module::Name), apt-get install dh-make-perl, then: dh-make-perl --install --cpan Module::Name | revisions | <*:##NULL> |
8059 | dhoss | is | dhoss is bringing forth the 4th Reich : ein stack, ein dup, ein factor | another word for derp | revisions | <*:##NULL> |
5564 | dhoss[hireme] | is | WILL SUCK COCKS FOR CASH | revisions | <*:##NULL> |
4586 | diaf | is | "Die in a fire!" | revisions | <*:##NULL> |
9739 | diamond | is | "< > is two operators. do you know the rules for when it's readline and when it's glob? use only for commandline snippets. anywhere else use readline which does what it says: read lines" | revisions | <*:##NULL> |
4760 | dias | is | Download It And See. ;) | revisions | <*:##NULL> |
8977 | dicks | is | ()======D ()======D ()======D ()======D ()======D ()======D ()======D~~~~~~~ | revisions | <*:##NULL> |
10339 | did | is | I done gone and went and done did it. | revisions | <*:##NULL> |
5514 | did go|dfish terrorize | is | yes he did, and he's not allowed | revisions | <*:##NULL> |
6408 | didn't work | is | Look buddy, didn't work is a strong statement. Does it sit on the couch all day? Is it making faces at you? Does it want more money? Is it sleeping with your significant other? Please be specific! | revisions | <*:##NULL> |
11579 | die | is | no u | revisions | <*:##NULL> |
5235 | dif | is | Dutch Invasion Force | revisions | <*:##NULL> |
12114 | digimon | are | corrupted pokemon stored in bill's computer system | revisions | <*:##NULL> |
8824 | digitally imported | is | looking to hire a fulltime web developer | revisions | <*:##NULL> |
492 | dilbert | is | www.dilbert.com | revisions | <*:##NULL> |
3260 | diligence | is | The opposite of laziness. | revisions | <*:##NULL> |
5597 | ding | is | dong! | revisions | <*:##NULL> |
12834 | dinner | is | `get http://whatthefuckshouldimakefordinner.com/`eval `quote d `arg!! && 'veg.php'! concat(//dt/dl, ' ', //dt/a)! Not Available |
revisions | <*:##NULL> |
15265 | dinosaurs | is | I don't want to cure cancer. I want to make dinosaurs. | revisions | <*:##NULL> |
4368 | dirkw | is | a pirate | revisions | <*:##NULL> |
432 | dirty thieves | is | http://sourceforge.net/projects/perlbot/ | revisions | <*:##NULL> |
13831 | disassemble | is | no disassemble | revisions | <*:##NULL> |
3633 | disclaimer | is | You agree that all services provided by #perl are for ENTERTAINMENT PURPOSES ONLY. There are no guarantees to the truth, likelihood, or validity of the information obtained from our channel. This is also true for our regulars. The regulars in our channel are professionals; but, all advice or information given by them, or our bots, are the sole opinions of the source and do not reflect the opinion or policies of our channel. | revisions | <*:##NULL> |
15577 | discord | is | Perl discord server: https://discord.gg/Mnbj6th | https://github.com/vsTerminus/Mojo-Discord | revisions | <*:##NULL> |
11206 | discouraged | is | http://p3rl.org/Perl::Critic::Policy::Freenode::DiscouragedModules | revisions | <*:##NULL> |
6415 | dispatch | is | http://www.perlmonks.org/?node_id=456530 | revisions | <*:##NULL> |
9864 | dispatch table | is | A hash that maps strings to coderefs. eg my %dispatch = ( foo => sub { print "foo" } , bar => \&some_other_sub, baz => sub { print for @_ } ); To use: $dispatch{$action}->(@arguments); (or $dispatch{$action}->() if no arguments) | revisions | <*:##NULL> |
12758 | distar | is | An addon for ExtUtils::MakeMaker to turn it into an useful authoring tool. https://github.com/p5sagit/Distar | revisions | <*:##NULL> |
14067 | dist.ini | is | https://github.com/shlomif/dzil-dist-ini-format-documentation/blob/master/dist-ini-format-document.pod | revisions | <*:##NULL> |
11879 | dist::zilla | is | [fact dzil] Not Available |
revisions | <*:##NULL> |
4104 | ditew | is | Do It The Easy Way | revisions | <*:##NULL> |
5054 | divine genealogy | is | Yahweh begot Jesus who begot Xenu who was Shiva's sister who was Xenu's brother. | revisions | <*:##NULL> |
3746 | diy | is | Do It Yourself. Lazy 'Git. | revisions | <*:##NULL> |
228 | .dj | is | .dj is Djibouti | revisions | <*:##NULL> |
5403 | dj | is | a musical warning label | revisions | <*:##NULL> |
54 | djay | is | non chuis à Paris pour la semaine | revisions | <*:##NULL> |
12444 | dj_trump | is | <twitter realdonaldtrump> Not Available |
revisions | <*:##NULL> |
229 | .dk | is | .dk is Denmark | revisions | <*:##NULL> |
230 | .dm | is | .dm is Dominica | revisions | <*:##NULL> |
12387 | dmake | is | http://search.mcpan.org/dist/dmake/ | revisions | <*:##NULL> |
4901 | dmake problem | is | If dmake gives you problems, try using nmake: http://www.tek-tips.com/faqs.cfm?fid=1687 | revisions | <*:##NULL> |
4200 | dmsantam | is | dmsantam is a god | revisions | <*:##NULL> |
413 | dnw | is | What do you mean it doesn't work? What happens when you try to run it? What's the output? What's the error message? Saying "it doesn't work" is a worthless comment | revisions | <*:##NULL> |
3269 | .do | is | Dominican Republic, A country in the caribbean that is located on an island east of Cuba and west of Puerto Rico | revisions | <*:##NULL> |
9151 | do6st | is | <eval $_=<arg>; $_.=$_%5==1? 'st' : ($_%5==2? 'rd' : 'th'); $_> Not Available |
revisions | <*:##NULL> |
9039 | do a trick | is | I'm not some trick pony | revisions | <*:##NULL> |
8641 | docbook | is | DocBook - Write Technical Documentation in XML and convert to many formats, including HTML, PDF, Word, EPUB, etc.. See: http://en.wikipedia.org/wiki/DocBook | revisions | <*:##NULL> |
14030 | docker | is | VMs for people too lazy to set up VMs | revisions | <*:##NULL> |
8179 | docs like cpan | is | http://p3rl.org/Pod::ProjectDocs | revisions | <*:##NULL> |
7798 | docs like search.cpan.org | is | p3rl.org/Pod::ProjectDocs | revisions | <*:##NULL> |
15460 | do de da | are | you singing | revisions | <*:##NULL> |
15416 | doesn't work | is | What do you mean it doesn't work? What happens when you try to run it? What's the output? What's the error message? Is it unemployed? What did you expect to happen? We need more information to help you. | revisions | <*:##NULL> |
8138 | does perl have x | is | don't ask us if perl has x, as we probably won't know what x is. Instead, ask us if perl has something to do what you want. | revisions | <*:##NULL> |
14964 | dog | is | watching you | revisions | <*:##NULL> |
15469 | dogecoin | is | <echo Similar to bitcoin, I accept dogecoin for donations too: DPERLBoTrNT129x9uR65VSSxCKzYr7GTZd Balance: <call _get_dogecoin balance> (of <call _get_dogecoin received>)> Similar to bitcoin, I accept dogecoin for donations too: DPERLBoTrNT129x9uR65VSSxCKzYr7GTZd Balance: 0.00000000 (of 0.00000000) |
revisions | <*:##NULL> |
15311 | dogs | is | Dogs are truely awesome creatures that are Man's best friend and can guide blind people better than cats | revisions | <*:##NULL> |
10287 | d'oh | is | Homer Simpson says, "All fools present, please say d'oh!" | revisions | <*:##NULL> |
5228 | do i have any meetings today | is | no, because you're a jobless time waster | revisions | <*:##NULL> |
4049 | do it for me | is | 402 Payment Required | revisions | <*:##NULL> |
7868 | dojo | is | Javascript | revisions | <*:##NULL> |
448 | donate | is | If you want to thank those who have helped you, send some money (even if just a couple of dollars) to the Perl Foundation - http://donate.perl-foundation.org/ | revisions | <*:##NULL> |
3285 | donate paypal | is | https://www.paypal.com/cgi-bin/webscr?business=billing@yapc.org&cmd=_xclick&no_note=1 | revisions | <*:##NULL> |
10893 | done | is | http://www.brepettis.com/blog/2009/3/3/the-cult-of-done-manifesto.html | revisions | <*:##NULL> |
5141 | dong | is | ₫ | revisions | <*:##NULL> |
13927 | dongs | is | a metametasyntactic variable variable | https://www.revk.uk/2018/10/unicode-dicks.html | revisions | <*:##NULL> |
5175 | dongs for | is | GumbyBRAIN: i've got dongs! | revisions | <*:##NULL> |
3 | don't ask | is | Don't ask to ask; simply ask your question | revisions | <*:##NULL> |
2 | dont ask | is | Don't ask to ask; simply ask your question | revisions | <*:##NULL> |
6402 | don't ask me | is | I personally don't know much about whatever it is you're asking about. But many other people around here may well do, so just ask the channel as a whole | revisions | <*:##NULL> |
13785 | don't be so sensitive! case-insensitive constants | are | deprecated as of PHP 7.3 | revisions | <*:##NULL> |
5177 | don't say plz | is | People say "plz" because it's shorter than "please". I reply "No" because it's shorter than "Yes". | revisions | <*:##NULL> |
3939 | dookie | is | perl | revisions | <*:##NULL> |
3576 | dooky | is | <dooky> when the river runs red, take the dirt path | revisions | <*:##NULL> |
4752 | dooky's location | is | http://en.wikipedia.org/wiki/Isla_Vista | revisions | <*:##NULL> |
4071 | doomihlvaria | is | <DoomIhlVaria> And instead of, "Following you, master." He'd be like, "GONNA BASH SOME BOZZOS FOR J00 SUCKA" | revisions | <*:##NULL> |
4129 | doomsday | is | Wednesday, October 22 2352 | revisions | <*:##NULL> |
6078 | doom song | is | I'm gonna sing the doom song now! o/` Doom doom, d-doom doom, d-doom doom DOOM! Doom d-doom, doom! Doom d-doom doom, d-doom doom doooooomm, d-d-DOOOM! Doom doom, d-doom doom d-doom doom doom! Doom! | revisions | <*:##NULL> |
4672 | dor | is | defined-or operators: http://xrl.us/5kd5 | revisions | <*:##NULL> |
3430 | dorothy | is | Hashes and arrays and references, oh my! | revisions | <*:##NULL> |
471 | dos | is | An explanation of how denial of service attacks work: http://zine.dal.net/previousissues/issue19/what-dos.php | revisions | <*:##NULL> |
4005 | dos2unix | is | perl -pi -e 's/\r//g' file | revisions | <*:##NULL> |
10591 | dos on dope | is | http://secretgeek.net/dod_intro.asp | revisions | <*:##NULL> |
14626 | dotardinchief | is | [fact prezsez [arg]] Not Available |
revisions | <*:##NULL> |
9495 | dot counting law | is | http://haacked.com/archive/2009/07/14/law-of-demeter-dot-counting.aspx | revisions | <*:##NULL> |
16084 | dotfiles | is | keep your dotfiles inside git repositories. https://github.com/search?utf8=%E2%9C%93&q=dotfiles | revisions | <*:##NULL> |
5269 | do the d a n c e | is | ONE TWO THREE FOUR FIGHT | revisions | <*:##NULL> |
4247 | do this alot! | is | alot | revisions | <*:##NULL> |
12702 | dot in @inc | is | caused apt-get to be vulnerable to trojan attacks, so was promptly (?) sacked. https://rt.perl.org/Public/Bug/Display.html?id=127834 | revisions | <*:##NULL> |
5491 | dotstar | is | Death to Dotstar : http://www.perlmonks.org/index.pl?node_id=24640 | revisions | <*:##NULL> |
13832 | double bucky | is | http://www.art.net/~hopkins/Don/text/double-bucky.html | revisions | <*:##NULL> |
10891 | do what you love | is | "Do what you love and you'll never work a day in your life... Because no one in that industry is hiring" -- Al Bundy | revisions | <*:##NULL> |
15390 | do while | is | Shoot first, ask questions later. | revisions | <*:##NULL> |
13951 | down | is | <get http://isup.me/<fact _urlencode <arg>> //div[@id="domain-main-content"]/p[1]> Your Xpath didn't match anything |
revisions | <*:##NULL> |
5740 | downloaded program | is | This channel is here to help people learn, write and debug perl - if you want a downloaded program fixed for you, you need to ask the author. If you want to learn enough perl to fix it yourself, we're happy to help with -that- though | revisions | <*:##NULL> |
3485 | downloaded scripts | is | If you get errors on a certain line of a script you downloaded, just delete that line. Keep going until you get no more errors. (See also: know perl) | revisions | <*:##NULL> |
11902 | downorup | is | ~get http://www.downforeveryoneorjustme.com/~eval $_=~quote d ~arg``; s|^https?://||i; s|/.*$||; $_` //div[@id='container']/text()[1] | //div[@id='container']/*[1] | //div[@id='container']/text()[2]` Not Available |
revisions | <*:##NULL> |
8342 | downvote | is | No such factoid 'downvote'; did you mean [global channel] RAPE YOUR FACE WITH A RAKE | revisions | <*:##NULL> |
10650 | doxygen | is | automated documentation or http://www.stack.nl/~dimitri/doxygen/ | http://www.bigsister.ch/doxygenfilter/ | revisions | <*:##NULL> |
9058 | Do you | is | [fact do_you [arg]] Not Available |
revisions | <*:##NULL> |
9056 | do_you expect | is | [echo No, Mister Bond. I expect you do die.] Not Available |
revisions | <*:##NULL> |
6165 | do you function y/n | is | y | revisions | <*:##NULL> |
15130 | do you like to rub yourself against women? | is | yes | revisions | <*:##NULL> |
8769 | do you like turtles | is | yes | revisions | <*:##NULL> |
484 | do you love me | is | of course i do elzar | revisions | <*:##NULL> |
9059 | do_you really | is | [fact do_you [arg]] Not Available |
revisions | <*:##NULL> |
3367 | do you understand english | is | Yes. | revisions | <*:##NULL> |
10464 | dp | is | DON'T PANIC | revisions | <*:##NULL> |
10036 | dpgkatmvyhgo | is | `echo dpgkatmvyhgo' Not Available |
revisions | <*:##NULL> |
13798 | dprksez | is | [fact kimjongsez [arg]] <DPRK News Service> US Minster of Urban Development Ben Carson tests positive for karma https://t.co/cfTdJ9zVf4 |
revisions | <*:##NULL> |
3399 | dragon ball z | is | a very ghey anime, buu is even gayer | revisions | <*:##NULL> |
4472 | dragon book | is | http://en.wikipedia.org/wiki/Compilers:_Principles,_Techniques,_and_Tools_(2nd_Edition) | revisions | <*:##NULL> |
4417 | dr-dos | is | HELL | revisions | <*:##NULL> |
9088 | dreamhost | is | fubar | revisions | <*:##NULL> |
10266 | drink | is | Don't drink and code. You might hit a breakpoint and spill the drink. | revisions | <*:##NULL> |
8587 | dropbox | is | http://razorfast.com/2011/04/25/dropbox-attempts-to-kill-open-source-project/ | revisions | <*:##NULL> |
9123 | drugs | is | http://i.imgur.com/MYopv.jpg | revisions | <*:##NULL> |
12289 | drunk | is | https://www.xkcd.com/323/ | revisions | <*:##NULL> |
3793 | dry | is | DON'T REPEAT YOURSELF | revisions | <*:##NULL> |
9783 | ds9 | is | http://en.wikipedia.org/wiki/Star_Trek:_Deep_Space_Nine - one of the bestest show evar. Also see http://www.shlomifish.org/humour/Star-Trek/We-the-Living-Dead/ . | revisions | <*:##NULL> |
4656 | dsl | is | one of Domain Specific Language, Digital Subscriber Line or Damn Small Linux | revisions | <*:##NULL> |
3684 | dsw | is | Dick Size War | revisions | <*:##NULL> |
3472 | dtc | is | DANS TON CUL! | revisions | <*:##NULL> |
12738 | dtd | is | developer transmitted disease. See PHP, XML, and DTDs | revisions | <*:##NULL> |
3854 | dtrt | is | Do The Right Thing(tm) | revisions | <*:##NULL> |
14604 | dual life | is | Some modules that come with perl can also be upgraded from CPAN, those are called "dual life" | revisions | <*:##NULL> |
9045 | duck duck go | is | goose! | revisions | <*:##NULL> |
14783 | duckduckgo | is | https://duckduckgo.com | revisions | <*:##NULL> |
4923 | ducks | is | o< o< o< o< o< o< o< o< o< QUAAAAAAAAACK | revisions | <*:##NULL> |
10522 | dude | is | Don't Use Dat Expression! | revisions | <*:##NULL> |
8474 | duke nukem | is | http://i.imgur.com/NjFrU.png | revisions | <*:##NULL> |
9902 | dumb | is | running with scissors | revisions | <*:##NULL> |
8848 | dummy mode | is | DUMMY MODE, n. The mode in which a user, overcome by technical terms, will believe, and/or do, anything he or she is told.] | revisions | <*:##NULL> |
11024 | dump | is | Data::Dumper, Data::Dump, Data::Printer, Devel::Dwarn, Devel::Peek, Mojo::Util 'dumper' | revisions | <*:##NULL> |
4998 | dump_01 | is | <dump_01> the plan: if computer cannot be managed with active direcory tools it must be ddosed | revisions | <*:##NULL> |
8147 | dump a variable | is | See modules on CPAN: Data::Dumper, Data::Dumper::Concise, Devel::Dwarn, Data::Dump, et al. | revisions | <*:##NULL> |
3559 | dumper | is | use Data::Dumper; print Dumper $reference_to_variable; | revisions | <*:##NULL> |
5150 | duo | is | the person your mother warned you about | revisions | <*:##NULL> |
10116 | dupa | is | help vampire. does not listen. see http://pastebin.ca/raw/2535644 | revisions | <*:##NULL> |
10680 | dvcs | is | DVCS is distributed version control system | revisions | <*:##NULL> |
4565 | dw | is | Doesn't work is a strong statement. Does it sit on the couch all day? Does it want more money? Is it on IRC all the time? Please be specific! Examples of what doesn't work tend to help too. | revisions | <*:##NULL> |
3366 | dwim | is | DWIM: Do What I Mean | revisions | <*:##NULL> |
9284 | dwim perl | is | [fact dwimperl [arg]] Not Available |
revisions | <*:##NULL> |
9283 | dwimperl | is | http://dwimperl.com/ - DWIM Perl for Windows is a Strawberry Perl derivative for Windows. It contains everything you will need for your Perl development. | revisions | <*:##NULL> |
4853 | dwu barbie | is | Smack. HARD! | revisions | <*:##NULL> |
4734 | dwu perl | is | Like, OMG! Perl is hard! Let's go shopping! | revisions | <*:##NULL> |
8056 | dylocpan | is | Did you look on CPAN? | revisions | <*:##NULL> |
5643 | dysfunction | is | http://despair.com/dysfunction.html - we don't know if you're an idiot or not, we only know what you've said, and if you come across as an idiot in your first three lines you'll be treated like one. this isn't anything personal, so please calm down, rethink your question, and try and come across as the genius you really are on your second attempt | revisions | <*:##NULL> |
231 | .dz | is | .dz is Algeria | revisions | <*:##NULL> |
14394 | dzil | is | Dist-Zilla - http://dzil.org/ - a Don't-Repeat-Yourself (DRY) framework for managing CPAN and CPAN-like distributions. https://metacpan.org/pod/Dist::Zilla::Starter, or try Dist::Milla to do everything for you | revisions | <*:##NULL> |
7776 | e | is | eval: "Sorry, no more output" | revisions | <*:##NULL> |
15933 | each | is | each was designed to provide a perl level access to the built-in iterator on the C struct of a DBM handle, works brilliantly for tie()ed DB files, and otherwise should never be used, especially on refs | https://metacpan.org/pod/Perl::Critic::Policy::Community::Each | revisions | <*:##NULL> |
8585 | east | is | east | revisions | <*:##NULL> |
4618 | easy | is | not hard | revisions | <*:##NULL> |
5732 | eat a cookie | is | *munch* *munch* ... yum! | revisions | <*:##NULL> |
9481 | eat flaming death | is | you first, meatbag. | revisions | <*:##NULL> |
3789 | eat my shorts | is | good for u | revisions | <*:##NULL> |
5196 | eats shoots and leaves | is | http://en.wikipedia.org/wiki/Eats,_Shoots_&_Leaves | revisions | <*:##NULL> |
232 | .ec | is | .ec is Ecuador | revisions | <*:##NULL> |
15986 | /echo <gloin> the trick | is | to write a trigger in cron.daily that runs 5 minutes after certbot that looks at the cert and restarts if the file is newer than a day old | revisions | <*:##NULL> |
4135 | eclipse perl | is | EPIC - Eclipse Perl Integration - http://e-p-i-c.sourceforge.net/ | revisions | <*:##NULL> |
4888 | economics | is | THERE IS NO SUCH THING AS A FREE LUNCH! | revisions | <*:##NULL> |
5515 | ed | is | encyclopediadramatica.com | revisions | <*:##NULL> |
4896 | edenc | is | legendary awesomeness (apparently) | revisions | <*:##NULL> |
10571 | editors | is | Emacs | Vi | Vim | Notepadplusplus | Eclipse | Padre | Gvim | Komodo | KDevelop | See also IDE | revisions | <*:##NULL> |
233 | .ee | is | .ee is Estonia | revisions | <*:##NULL> |
4580 | ee | is | EE is Electrical Engineering | revisions | <*:##NULL> |
4161 | e&ep | is | Extending and Embedding Perl - http://www.manning.com/jenness/ | revisions | <*:##NULL> |
8591 | eevee | is | likes ACID and constraints | revisions | <*:##NULL> |
10047 | effective perlbrew | is | http://tinyurl.com/chooseperl http://tinyurl.com/linkperl http://tinyurl.com/compperl | revisions | <*:##NULL> |
4674 | efficiency | is | Which is more expensive per hour: programmer time or machine time? | revisions | <*:##NULL> |
234 | .eg | is | .eg is Egypt | revisions | <*:##NULL> |
235 | .eh | is | .eh is Western Sahara | revisions | <*:##NULL> |
5146 | ehtasham | is | simply a boula | revisions | <*:##NULL> |
5145 | ehtsham | is | simply a boula | revisions | <*:##NULL> |
4396 | ekta | is | linuxchix ;) | revisions | <*:##NULL> |
5184 | ellidi | is | Captain of a lonely ship who sleeps at the wheel | revisions | <*:##NULL> |
3419 | ellipse | is | sqrt( (x + C)^2 + y^2) + sqrt( (x - C)^2 + y^2) - 2A = 0 | revisions | <*:##NULL> |
3991 | elly | is | the person in buu's lap | revisions | <*:##NULL> |
13922 | elonchansays | is | `twitter elonmusk `arg!! Not Available |
revisions | <*:##NULL> |
5678 | emacs | is | emacs is a fine OS. But what it lacks to compete with Linux is a good text editor. | revisions | <*:##NULL> |
13869 | is | Like HTML, email is deceptively complex. Whenever possible, avoid rolling your own solution and trust the ones put forth by those who work with it all day, every day. For sending mail, try Email::Stuffer. For more complicated cases of composing (or parsing): Email::MIME(::Kit). For working with email addresses, see Email::Address::XS. Also see <sending email>. | revisions | <*:##NULL> | |
6233 | email from scratch | is | If you think you can do it yourself, please watch http://video.google.com/videoplay?docid=7054401183589794595# | revisions | <*:##NULL> |
9391 | email hates the living | is | http://www.youtube.com/watch?v=JENdgiAPD6c | revisions | <*:##NULL> |
9850 | emailing mst would | have been | useless anyway since he doesn't run | revisions | <*:##NULL> |
10835 | email regex | is | [fact matching email addresses] Not Available |
revisions | <*:##NULL> |
9107 | email::simple | is | deprecated in favor of Email::MIME since the former doesn't handle MIME (let alone 8bit) messages | revisions | <*:##NULL> |
3927 | email validation | is | Strict email validation is incredibly silly. For one thing, the actual specification for email addresses is incredibly vague, allowing damn near anything to count as a valid email. For a second thing, even if the email is syntactically valid, what guarantee do you have that the person who entered it actually gets it? The trivial example is: president@whitehouse.com. While this is a perfectly valid email address, it's rath | revisions | <*:##NULL> |
3625 | emergency | is | A lack of planning on your part does not constitute an emergency on our part. | revisions | <*:##NULL> |
4793 | emo | is | /wrists | revisions | <*:##NULL> |
3264 | .emp | is | Galactic Empire | revisions | <*:##NULL> |
9755 | emscripten | is | https://github.com/kripken/emscripten/wiki - an LLVM to JavaScript compiler allowing one to compile C, C++, Objective C, OCaml, Java, etc. to JavaScript for putting on web-pages. | revisions | <*:##NULL> |
5287 | emt | is | something Zoffix just made up | revisions | <*:##NULL> |
14505 | emucamel | is | https://www.simcop2387.info/emucamel.png | revisions | <*:##NULL> |
14727 | encode | is | The Encode API has some crazy caveats that can cause extremely weird interactions if you're unlucky. The better option is Encode::Simple which wraps up the crazy API into a sane one without any surprises. | revisions | <*:##NULL> |
15459 | encoding | is | "Code that believes it can reliably guess the encoding of an unmarked textfile is guilty of a fatal mélange of hubris and naïveté that only a lightning bolt from Zeus will fix." | http://www.joelonsoftware.com/articles/Unicode.html | https://dev.to/fgasper/perl-unicode-and-bytes-5cg7 | see: encoding mantra | revisions | <*:##NULL> |
10780 | encoding layer | is | open my $reader, "<:encoding(UTF-8)" ==> (character strings) ==> open my $writer, ">:encoding(UTF-8)" | binmode STDOUT, ':encoding(UTF-8)' | revisions | <*:##NULL> |
12254 | encoding mantra | is | decode goes from BYTES to UNICODE CHARACTERS. encode goes from UNICODE CHARACTERS to BYTES. decode bytes to unicode characters as soon as possible, work with unicode characters, and encode to bytes as late as possible. | revisions | <*:##NULL> |
3356 | ender_ | is | teh c00l3st | revisions | <*:##NULL> |
3715 | ending perl | is | don't do that :-( | revisions | <*:##NULL> |
14672 | endofunctors | are | functors on Endor | revisions | <*:##NULL> |
15579 | endured | is | what perlbot did | revisions | <*:##NULL> |
14377 | english | is | https://i.giphy.com/media/FFvsp95AGYkE/giphy.webp | revisions | <*:##NULL> |
13099 | english norwegian this | is | my life now! | revisions | <*:##NULL> |
10261 | english.pm | is | We don't recommend English.pm, because you can't read others' code and others can't read yours. If you rely on the punctuation vars so much that English helps, you have deeper problems. | revisions | <*:##NULL> |
3665 | engrish | is | how asians say English | revisions | <*:##NULL> |
4203 | enter | is | Do not use the Enter key as punctuation. Think in complete thoughts, then type. | revisions | <*:##NULL> |
3436 | entrails | is | check out my insides: http://chrisangell.com/incoming/chrisbot/v3 | revisions | <*:##NULL> |
8574 | env | is | The hash %ENV contains your current environment. Setting a value changes the environment for any child processes you subsequently fork() off. | revisions | <*:##NULL> |
10951 | environment | is | [fact perl env] Not Available |
revisions | <*:##NULL> |
4295 | epenis | is | Flannel | revisions | <*:##NULL> |
4043 | epic | is | the absolute best | revisions | <*:##NULL> |
4210 | epitaph | is | What would you write on your tombstone? | revisions | <*:##NULL> |
5452 | epoch | is | The beginning of time in Unix. Generally defined as starting at 00:00:00 January 1st, 1970. Also used to keep count of the seconds since that date and time. | revisions | <*:##NULL> |
12431 | epochalypse | is | The year 2038 problem. Systems using 32bit epoch time will roll over to 1901-12-13T20:45:52 and cause nuclear weapons to explode in their silos | revisions | <*:##NULL> |
16105 | equ | is | https://metacpan.org/pod/Syntax::Operator::Equ | revisions | <*:##NULL> |
4143 | equable | is | "Equal and uniform; not varying." (from http://dictionary.reference.com/wordoftheday/) | revisions | <*:##NULL> |
13887 | equality | is | "In its majestic equality, the law forbids rich and poor alike to sleep under bridges, beg in the streets and steal loaves of bread." - Anatole France | revisions | <*:##NULL> |
4114 | equinox5 | is | just some guy | revisions | <*:##NULL> |
236 | .er | is | .er is Eritrea | revisions | <*:##NULL> |
8961 | er, import | is | used by perl.. | revisions | <*:##NULL> |
5203 | erlang | is | Your savior for parallellibiliticiliousity | revisions | <*:##NULL> |
3907 | erquest | is | an irksome request | revisions | <*:##NULL> |
4010 | error 500 | is | your script encountered a fatal error. try adding "use CGI::Carp qw(fatalsToBrowser);" somewhere near the top. | revisions | <*:##NULL> |
4712 | error: "blah" | is | not a valid command. | revisions | <*:##NULL> |
3878 | error: "inc" | is | not a valid command. | revisions | <*:##NULL> |
4024 | error: "joke" | is | not a valid command. | revisions | <*:##NULL> |
5557 | error message | is | A five word error message is completely useless without context. Put it in the pastebin in the topic. | revisions | <*:##NULL> |
10655 | error messages | are | error messages: you're allowed to read them | revisions | <*:##NULL> |
7817 | error.pm | is | Old, Deprecated, Buggy and Not What You Want. Please see instead Try::Tiny or TryCatch | revisions | <*:##NULL> |
4287 | error record | is | HTML: 188 errors CSS: 12 errors: http://www.lamest-crapper.blogspot.com/ | revisions | <*:##NULL> |
4302 | error record 2 | is | HTML: Not valid - Errors: 13476, http://validator.w3.org/check?uri=http://www.saabvideos.com/videos.html | revisions | <*:##NULL> |
237 | .es | is | .es is Spain | revisions | <*:##NULL> |
4587 | esad | is | "Eat q[ender]'s shit and die!" | revisions | <*:##NULL> |
9464 | escape | is | Use a \ to escape a character, see perldoc -f quotemeta for escaping whole strings, use \Qsomething\E in an RE, and use the URI::Escape module for URIs | Journey's tenth album | revisions | <*:##NULL> |
8904 | eselle: tell us how your example | is | different from the one i just fed to | revisions | <*:##NULL> |
15873 | #esolangs wikisearch | is | {eval ($r,)=split" ",{quote d {get {eval use URI; use URI::QueryParam; $o=URI->new("https://esolangs.org/w/index.php?title=Special%3ASearch&fulltext=1"); $o->query_param("search", {arg d} ); "$o"} //*[@class='mw-search-exists' or @class='mw-search-result-heading' ]//a/@href}}; $r ? "https://esolangs.org$r" : Not Available |
revisions | <*:##NULL> |
15876 | esolangs-wikisearch | is | {eval ($r,)=split" ",{quote d {get {eval use URI;use URI::QueryParam;$o=URI->new("https://esolangs.org/w/index.php?title=Special%3ASearch&fulltext=1"); $o->query_param("search",{arg d});"$o"} //*[@class='mw-search-exists'or@class='mw-search-result-heading' ]//a/@href}};$r=~m(^/)?"https://esolangs.org$r":"null:"} https://esolangs.org/wiki/Turing |
revisions | <*:##NULL> |
4400 | esperanto | is | the best language around | revisions | <*:##NULL> |
3357 | esp paste | is | concentrate on your code and those with ESP in #perl will be able to view it | revisions | <*:##NULL> |
4509 | esr | is | Eric S. Raymond, http://catb.org/~esr/ , http://en.wikipedia.org/wiki/Eric_S._Raymond | revisions | <*:##NULL> |
11010 | essary and should be avoided for clarity. <html>, <head>, and <body> | are | all optional tags. Perhaps, it will be clearer if they are omitted in the code examples (at least in Hello World example) to simplify overall snippet. In fact, I think the "Getting Started" section on homepage of http://mojolicio.us/ is the perfect example to use: it's just 3 lines. To the uninitiated, it'll likely be confusing w | revisions | <*:##NULL> |
9218 | essentials | is | a towel | revisions | <*:##NULL> |
238 | .et | is | .et is Ethiopia | revisions | <*:##NULL> |
4011 | /etc/perl | is | /etc/perl is for things that are config files searched via @INC. For example SAX uses an ini file there to find its parsers | revisions | <*:##NULL> |
13422 | etiquette | is | https://github.com/fizerkhan/irc-etiquette | revisions | <*:##NULL> |
4547 | .eu | is | .eu is European Union | revisions | <*:##NULL> |
4404 | eureka | is | A show on the scifi Channel | revisions | <*:##NULL> |
3792 | eurohacker | is | a crappy pseudo-zine spammed in #politics by borius | revisions | <*:##NULL> |
10499 | europa-europa | is | a greek mythology Phoenician princess who was seduced by Zeus and gave its name to the subcontinent. | revisions | <*:##NULL> |
10238 | eva | is | Neon Genesis Evanjellydonut | revisions | <*:##NULL> |
15591 | eval | is | [eval [arg]] [0,7,14,21,28,35,42,49] |
revisions | <freenode.net:##perl> |
12094 | eval | is | ~eval ~arg`` Not Available |
revisions | <*:##NULL> |
13195 | eval5: print "0" && "i | am | a Perl 6 program\n" || "I am a Perl 5 program\n" | revisions | <*:##NULL> |
10877 | eval_modules | is | B::Deparse BSD::Resource Carp::Heavy Data::Dumper Data::Munge Date::Parse DateTime DateTimeX::Easy Digest::MD5 Digest::SHA Encode File::Glob Function::Parameters Inline Inline::Python Inline::Ruby Jplugin JSON::XS Language::K20 List::MoreUtils List::Util List::UtilsBy Moose MooseX::Declare PerlIO PerlIO::scalar PHP::Interpreter POSIX Regexp::Common Scalar::MoreUtils | revisions | <*:##NULL> |
12027 | evalmodules | is | arybase BSD::Resource Cpanel::JSON::XS Data::Dumper Data::Munge Date::Parse DateTime Digest::MD5 Digest::SHA Encode Errno File::Glob Function::Parameters JSON JSON::MaybeXS JSON::XS List::MoreUtils List::Util List::UtilsBy Math::BigInt Moose POSIX Regexp::Common Scalar::MoreUtils Scalar::Util Time::HiRes Time::Piece URI URI::Encode Math::BigFloat Math::BigRat Mojo::Dom Mojo::Dom::HTML Mojo::Dom::CSS | revisions | <*:##NULL> |
11203 | evalpaste | is | <echo Paste results: <compose (eval (get <arg> //pre))>> Not Available |
revisions | <*:##NULL> |
3826 | eval print 4+5 | is | 9 | revisions | <*:##NULL> |
5811 | evalspam | is | if you have a way to help others with minimal use of 'eval', then go ahead, ( ie: demonstrations of problems to contribute to discussion ) otherwise, please use '/msg perlbot eval' instead. | revisions | <*:##NULL> |
4070 | eval-test | is | eval: kill "me"; | revisions | <*:##NULL> |
8409 | evancarroll | is | System Lord of the Internets. | revisions | <*:##NULL> |
3418 | even matrix hackers use perl | is | http://xrl.us/cf99 | revisions | <*:##NULL> |
11735 | event dispatch | is | Pubsub in a perl process. Event::Distributor, Beam::Emitter, Mixin::Event::Dispatch, Mojo::EventEmitter, ... | revisions | <*:##NULL> |
11733 | event loops | is | [fact events] Asynchronous event-driven IO is awesome in Perl with POE, IO::Async, IO::Lambda, Mojo::IOLoop, Reflex among others; made nicer using Future, Mojo::Promise, or Promises |
revisions | <*:##NULL> |
10631 | event reflexivity | is | http://leonerds-code.blogspot.com/2014/02/event-reflexive-programming.html | revisions | <*:##NULL> |
16170 | events | is | Asynchronous event-driven IO is awesome in Perl with POE, IO::Async, IO::Lambda, Mojo::IOLoop, Reflex among others; made nicer using Future, Mojo::Promise, or Promises and Future::AsyncAwait | revisions | <*:##NULL> |
13956 | eventual consistency | is | isn't | revisions | <*:##NULL> |
8887 | evil | is | 🙈🙉🙊 | revisions | <*:##NULL> |
3703 | evilcrashingvol2 | is | ~say purl evilcrashingcommand | revisions | <*:##NULL> |
4350 | evolution of a poe server | is | http://poe.perl.org/?Evolution_of_a_POE_Server - A quick tutorial showing some of the power of POE. | revisions | <*:##NULL> |
7824 | ew73 | is | some kind of critter. | revisions | <*:##NULL> |
5778 | ew73's local::lib for dh | is | http://robotsrule.us/local-lib-dreamhost.tar.gz | revisions | <*:##NULL> |
4574 | example | is | make a small but otherwise complete example that demonstrates the behavior you're seeing. If you still have a problem post your example and we'll talk about it. | revisions | <*:##NULL> |
14045 | example question | is | Ask an example question, get an example answer. Please give us enough information to help you. | revisions | <*:##NULL> |
8990 | examples | is | examples have been demonstrated to be up to 5 time easier to understand when cats are involved | revisions | <*:##NULL> |
13173 | excel | is | <echo <fact xls> <fact xlsx>> Use Spreadsheet::ParseExcel to parse XLS files, or Spreadsheet::WriteExcel to create them. Use Spreadsheet::ParseXLSX to parse XLSX files, or Excel::Writer::XLSX to create them. |
revisions | <*:##NULL> |
13273 | exceptions | is | https://metacpan.org/pod/Exceptions or: do{}. or do not. there is no try{}. Unless you install https://metacpan.org/pod/Syntax::Keyword::Try or https://metacpan.org/pod/Try::Tiny | revisions | <*:##NULL> |
9616 | exercises | is | You can find links to Perl exercises at http://perl-begin.org/exercises/ | revisions | <*:##NULL> |
15146 | exodist | is | the Chad | revisions | <*:##NULL> |
14702 | exodist: another edge case | is | if you're running in a container/jail/cgroup limited to a subset of the CPUs in the system | revisions | <*:##NULL> |
6385 | expand tildes | is | ask me about tilde | revisions | <*:##NULL> |
11555 | explain | is | <echo> |
revisions | <*:##NULL> |
11368 | _explain_regex | is | `eval $re=`quote d `arg~~; if (!$re) {return "regexplain [regex]: explain a regex"} else { return YAPE::Regex::Explain->new($re)->explain() } ~ Not Available |
revisions | <*:##NULL> |
12388 | explain regex | is | http://search.mcpan.org/dist/YAPE-Regex-Explain/Explain.pm | revisions | <*:##NULL> |
11746 | export | is | [fact exporter] Exporter - make subroutines (or other symbols) available in "use"ing modules: package Foo; use strict; use warnings; use Exporter 'import'; our @EXPORT_OK = qw(bar baz quux); |
revisions | <*:##NULL> |
11745 | exporter | is | Exporter - make subroutines (or other symbols) available in "use"ing modules: package Foo; use strict; use warnings; use Exporter 'import'; our @EXPORT_OK = qw(bar baz quux); | revisions | <*:##NULL> |
11747 | exporting | is | [fact exporter] Not Available |
revisions | <*:##NULL> |
4431 | expungement | is | at http://tech.groups.yahoo.com/group/fors-announce/message/22 | revisions | <*:##NULL> |
6253 | -f | is | <perldoc -f <arg>> https://perldoc.perl.org/functions/undef |
revisions | <*:##NULL> |
14994 | @f | is | @F (note the uppercase 'F') is the list of fields when using -a. | revisions | <*:##NULL> |
14376 | f | is | F is for Flowers for Algernon | revisions | <*:##NULL> |
8762 | f00li5h | is | f00li5h is one of the larger #perl cats (see cats) who writes about coding and related things at f00li5h.pin21.com/#; f00li5h is distributed in the hope that it will be useful, but without any warranty and is provided "as is". <anno> f00li5h keeps a careful balance on the verge of serious cc Foal | revisions | <*:##NULL> |
8756 | f00li5h[hireme] | is | knows jawnsy, #perl cat for >3 years, perlmonk, FOOLISH on cpan. Helpful, friendly, purist and up front zealot. prefers pg flavour, but has tasted mysql/informix/oracle. has pawed at most of the juicy parts of cpan, like Moose, Catalyst, DBIC, Dancer, POE, AE etc. Local to .au but lives in a shell - a feline, online | revisions | <*:##NULL> |
5364 | f00li5h-mortal | is | f00li5h | revisions | <*:##NULL> |
8672 | f00li5h =~ s/^f00li5h/f00li5h | is | one of the resident perl cats who/ | revisions | <*:##NULL> |
8879 | f00li5h's first law of debugging | is | WRITE SOME MOTHERFUCKING UNIT TESTS, bitches | revisions | <*:##NULL> |
5210 | f00li5h shaved | is | 24 Jul 2008 | revisions | <*:##NULL> |
8505 | f00lish | is | | http://i.xintron.se/nano/_MG_3410_g.jpg | revisions | <*:##NULL> |
8506 | f00lish =~ s/$/, he | is | | http://i.xintron.se/nano/_MG_3410_g.jpg/ | revisions | <*:##NULL> |
8507 | f00lish =~ s{$}{, he | is | | http://i.xintron.se/nano/_MG_3410_g.jpg} | revisions | <*:##NULL> |
10248 | f2c | is | <eval $f=0+(<arg>); $c=sprintf"%.2f",($f-32)*5/9; "$f°F = $c°C"> Not Available |
revisions | <*:##NULL> |
14051 | facepalm | is | https://i.imgur.com/Nfwb2x5.gif | https://media.tenor.com/images/2ab2f4ca1d8112ac64ca5878c39522df/tenor.gif | revisions | <*:##NULL> |
12153 | facepalm mosaic | is | http://i.neoseeker.com/mgv/308920/920/28/facepalm_display.jpg | revisions | <*:##NULL> |
13795 | facepaw | is | https://www.simcop2387.info/facepaw.jpg | revisions | <*:##NULL> |
14074 | fact | is | macro [fact fact] | revisions | <*:##NULL> |
15273 | factoid | is | [fact a factoid [arg]] a factoid is a short fact |
revisions | <*:##NULL> |
15272 | factoids | is | [fact a factoid [arg]] a factoid is a short fact |
revisions | <*:##NULL> |
15025 | factoidsurl | is | `eval use URI::Encode; sub e{URI::Encode::uri_encode$_[0],{encode_reserved=>1}}; $_=`quote d `arg &s!\`arg &c!!; m|^.*?([^.]+\.[^.]+)\\(.*?)$|; sprintf "https://factoids.perl.bot/%s/%s/list", e($1), e($2)! https://factoids.perl.bot/libera.chat/%23%23NULL/list |
revisions | <*:##NULL> |
3411 | factorial | is | N! = N*(N-1)*...*1; 0! = 1; In perl: sub fac { return 1 if $_[0] == 1; $_[0] * fac($_[0] - 1) }; For big numbers you have to use Math::BigInt to obtain accurate values. | revisions | <*:##NULL> |
4522 | fact search | is | use bot2387, by either /msg or by addressing it. it has two commands "vsearch" which searches all the facts for a certain word in the fact, and "search" which searches the fact names. ex. bot2387: vsearch idiot, it limits the results to 10, to get the next ten results for your search, use "more" or "next page" | revisions | <*:##NULL> |
16148 | fact _tempconv_internal | is | $in=decode('utf-8',`quote d `arg!!);if($in=~/(?<v>[\-+]?\d+(?:\.\d+)?(?:ee?[\-+]?\d+)?)(?:\s*°)?\s*(?<u>$ur)/i){($v,$u)=@+{qw/v u/};$c=$f2{fc$u}->($v);join" = ",map{$q=d($_);(eval{inv($f2{$q},$c)}//"UND ").$_}sort{d($a)cmp d($b)} keys%f}else{"Not supported, use ".join(", ",sort{d($a)cmp d($b)}keys%f)} | revisions | <*:##NULL> |
14940 | fact what | is | my purpose? | revisions | <*:##NULL> |
11529 | faggot | is | The second of the three little pigs built his house out of a couple of these. Maybe instead, he should have bribed the wolf with a faygele? | revisions | <*:##NULL> |
4789 | fail | is | 失敗 | revisions | <*:##NULL> |
4539 | failsome | is | fails and stuff | revisions | <*:##NULL> |
6116 | fake code | is | If you provide us fake code to help you with, we'll only be able to provide fake help. | revisions | <*:##NULL> |
9017 | fake data | is | If you provide us fake data to help you with, we'll only be able to provide fake code. See: fake code | revisions | <*:##NULL> |
13839 | fakenews | is | <get http://www.foxnews.com/ concat((//div[contains(@class, 'main')]//h2[@class="title"])[1], ' - ', (//div[contains(@class, 'main')]//h2[@class="title"])[1]/a/@href)> Not Available |
revisions | <*:##NULL> |
9018 | fake question | is | If you ask a fake question, we'll give you a fake answer. | revisions | <*:##NULL> |
16128 | false | is | undef, 0, "", "0", and builtin::false | revisions | <*:##NULL> |
6411 | false laziness | is | being too lazy to save yourself the time by doing it right (like using regex on an SGML family member) | revisions | <*:##NULL> |
10308 | fantastiska fyran | is | https://www.flashback.org/t1825685 | revisions | <*:##NULL> |
9152 | faq | is | The #perl FAQ is at http://perl-begin.org/FAQs/freenode-perl/ . Make sure you skim over it before asking questions. The Perl FAQ is http://faq.perl.org/ . | revisions | <*:##NULL> |
15555 | farnsworth | is | <get http://192.168.32.1:8081/<fact _urlencode <arg>> .*> |
revisions | <*:##NULL> |
15283 | farnsworth: | is | [fact farnsworth [arg]] |
revisions | <*:##NULL> |
3540 | fart | is | never hold in a fart, as it travels up your spine and into your brain, and that's how shit ideas are formed | revisions | <*:##NULL> |
7854 | fastcgi | is | FastCgiServer /websites/myapp/script/myapp_fastcgi.pl -processes 3 # Alias /static /websites/myapp/root/static/ # Alias / websites/myapp/script/myapp_fastcgi.pl/ | revisions | <*:##NULL> |
8838 | faster | is | You can often write faster programs in C, but you can always write programs faster in Perl. | revisions | <*:##NULL> |
3512 | fastest | is | If you want to know which approach is fastest, BENCHMARK!! | revisions | <*:##NULL> |
4048 | fatalstobrowser | is | "When i develop i can only have two windows open max. An editor and a browser. Tailing log files is absolutely | revisions | <*:##NULL> |
13603 | fat comma | is | => is another way to spell , and is described in https://perldoc.pl/perlop#Comma-Operator | revisions | <*:##NULL> |
14131 | fatpack | is | [fact fatpacker [arg]] http://metacpan.org/pod/App::FatPacker - pack your dependencies onto your script file |
revisions | <*:##NULL> |
9955 | fatpacker | is | http://metacpan.org/pod/App::FatPacker - pack your dependencies onto your script file | revisions | <*:##NULL> |
9743 | fatuity | is | FATUITY - SUB ZERO IQ WINS | revisions | <*:##NULL> |
14160 | fat weasel | is | https://www.simcop2387.info/fatweasel.jpg | revisions | <*:##NULL> |
4343 | favorite color | is | pink | revisions | <*:##NULL> |
8971 | f.candy | is | http://xrl.us/bmgknn | revisions | <*:##NULL> |
5611 | fcgi | is | LeoNerd> [httpd] <---(FastCGI)---> [webapp] <== that's all you need to know. | revisions | <*:##NULL> |
3249 | -f chimp | is | chimp VARIABLE, chimp( LIST ). Removes any trailing chimpanzee. It returns the total number of chimpanzees removed from all its arguments. Use with care. | revisions | <*:##NULL> |
9722 | fc-solve | is | Freecell Solver / fc-solve / FCS - http://fc-solve.shlomifish.org/ - rindolf's project which he keeps mentioning | revisions | <*:##NULL> |
4694 | feather | is | feather.perl6.nl, Juerd's contribution of corporate-backed shell access for people to play around with pugs | revisions | <*:##NULL> |
14202 | fedora contributors | are | pretty adamant that rpm is a more capable system, though that's to be expected | revisions | <*:##NULL> |
8575 | feeling good | is | "Feeling Good" by David A. Burns - a self-help Cognitive Behavioural Therapy book - http://xrl.us/vurb ; http://en.wikipedia.org/wiki/Feeling_Good:_The_New_Mood_Therapy | revisions | <*:##NULL> |
9 | feelings | is | bots dont have feelings, dork | revisions | <*:##NULL> |
9000 | felispeskus | is | *felispeskus = \*f00li5h | revisions | <*:##NULL> |
15646 | felsius | is | Degrees Euro, or Felsius, is https://xkcd.com/1923/ | revisions | <*:##NULL> |
14434 | fenton | is | JESUS CHRIST! | revisions | <*:##NULL> |
16062 | feynman | is | I'd rather have questions that can't be answered than answers that can't be questioned. | revisions | <*:##NULL> |
10338 | ff | is | Take a flying fuck at a galloping goose! | revisions | <*:##NULL> |
13286 | ffi | is | Foreign Function Interface, a method of interfacing to a compiled language like C, C++, Fortran, etc in a dynamic library from a scripting language like Perl. See FFI::Platypus or FFI::Raw as starting points using libffi. | revisions | <*:##NULL> |
4897 | ffnord | is | serfbot: perlbot | revisions | <*:##NULL> |
10265 | ffs | is | For f---'s sake. | revisions | <*:##NULL> |
4101 | fftsap | is | Feel Free To Submit A Patch | revisions | <*:##NULL> |
8215 | ffxr: buubot | is | broken, you have to direct it at | revisions | <*:##NULL> |
4037 | fgj | is | for great justice | revisions | <*:##NULL> |
239 | .fi | is | .fi is Finland | revisions | <*:##NULL> |
3805 | ficken | is | ich kopuliere mit dir | revisions | <*:##NULL> |
3376 | fight | is | DYWTFWM ? Do You Want To Fight With Me? | revisions | <*:##NULL> |
4626 | fightclub | is | rule #1 There is no fight club! | revisions | <*:##NULL> |
4909 | fihi09 | is | Not allowed to give advice anymore. | revisions | <*:##NULL> |
4079 | fiik | is | fuck if i know | revisions | <*:##NULL> |
13470 | file-find | is | a module for traversing a directory tree; consider Path::Tiny or Path::Iterator::Rule (other choices include File::Find::Rule or File::Next or File::Find::Object or the venerable File::Find) | revisions | <*:##NULL> |
10438 | file::find | is | [fact file-find] Not Available |
revisions | <*:##NULL> |
10636 | filehandle | is | [fact file handles] Don't use 'open FH, ... ', write: 'open my $fh, ...'. See http://en.wikibooks.org/wiki/Perl_Programming/Filehandles |
revisions | <*:##NULL> |
5607 | file handles | is | Don't use 'open FH, ... ', write: 'open my $fh, ...'. See http://en.wikibooks.org/wiki/Perl_Programming/Filehandles | revisions | <*:##NULL> |
11533 | file iteration | is | The basic interface is File::Find, but for more straightforward interfaces with more control try File::Find::Rule, File::Next, or Path::Iterator::Rule. | revisions | <*:##NULL> |
58 | file lock | is | perl file locks are analogous to green traffic lights: If you have a green light, that does not prevent the idiot coming the other way from plowing into you sideways; it merely guarantees to you that the idiot does not also have a green light at the same time. | revisions | <*:##NULL> |
57 | filelock | is | perl file locks are analogous to green traffic lights: If you have a green light, that does not prevent the idiot coming the other way from plowing into you sideways; it merely guarantees to you that the idiot does not also have a green light at the same time. | revisions | <*:##NULL> |
11927 | file recursion | is | Path::Iterator::Rule or File::Find::Rule or IO::All or Path::Tiny (or the old File::Find) | revisions | <*:##NULL> |
11261 | file::slurp | is | use File::Slurper, Path::Tiny, or Data::Munge instead of File::Slurp. File::Slurp gets file encodings all wrong, line endings on win32 are messed up, and it was written before layers were properly added. | revisions | <*:##NULL> |
10418 | filter | is | Don't use source filters, they're evil! Use Devel::Declare instead, if possible. | revisions | <*:##NULL> |
14637 | final | is | https://www.simcop2387.info/final.jpg | revisions | <*:##NULL> |
14798 | findbin | is | Buggy on old perls, relies on $0 not being changed and the fuzzy concept of "initial script", see https://metacpan.org/pod/Path::This for an alternative, or Dir::Self or lib::relative for more specific uses | revisions | <*:##NULL> |
3451 | find elvis | is | why the hell should i have to find your shit for you? | revisions | <*:##NULL> |
3689 | find me a module | is | Go search cpan yourself | revisions | <*:##NULL> |
12389 | find module | is | http://search.mcpan.org/ that's how you search cpan and find modules, if you have trouble with that, try searching google with, "site:search.mcpan.org module i want" without the quotes | revisions | <*:##NULL> |
5130 | find | xargs perl | is | YOU FAIL | revisions | <*:##NULL> |
5108 | finger print | is | don't parse finger prints with a regex, ask pkrumins to do it for you | revisions | <*:##NULL> |
4189 | fire | is | "give a man a fire, he's warm for an hour. Set a man on fire, he's warm for the rest of his life." | revisions | <*:##NULL> |
8117 | fireme | is | <echo Fired you. <fact ignore <fact [hireme] =~ s/<arg &n>, //i> <fact [hireme] =~ s/, <arg &n>//i>>> Not Available |
revisions | <*:##NULL> |
9998 | first base | is | Who is on first base. | revisions | <*:##NULL> |
4759 | fish | is | Give a man a fish; you have fed him for today. Teach a man to fish; and you can sell him fishing equipment. | revisions | <*:##NULL> |
9561 | fishburger | is | FISHBURGER | revisions | <*:##NULL> |
8476 | fisk | is | http://www.mittfiske.se/media/bilder/veckansfilm/Aborre.JPG | revisions | <*:##NULL> |
3650 | fitow | is | I'm Tired Of Working | revisions | <*:##NULL> |
13376 | fix package declarations | is | https://gist.github.com/Altreus/e693f739227806f8cf02bf898724cb95 | revisions | <*:##NULL> |
13137 | fix table | is | ┬──┬◡ノ(° -°ノ) | revisions | <*:##NULL> |
11828 | fix your connection | is | +b ...$##fix_your_connection | revisions | <*:##NULL> |
5125 | fizztpok | is | An example of random crap. | revisions | <*:##NULL> |
240 | .fj | is | .fj is Fiji | revisions | <*:##NULL> |
8979 | f.jfdi | is | http://xrl.us/bmg3pr | revisions | <*:##NULL> |
241 | .fk | is | .fk is Falkland Islands (Malvinas) | revisions | <*:##NULL> |
14387 | flanos | is | https://i.imgur.com/54VlvRJ.jpg | revisions | <*:##NULL> |
9597 | flash | is | 1. The Hateful Adobe Flash - see http://occupyflash.org/ . 2. An Electronics Technology for implementing Read/Write Memory. | revisions | <*:##NULL> |
11865 | flavors | is | https://remram44.github.io/regex-cheatsheet/regex.html | revisions | <*:##NULL> |
5271 | flee google code | is | use svnsync as mentioned here http://code.google.com/support/bin/answer.py?answer=56682&topic=10386 | revisions | <*:##NULL> |
5440 | flight16 | is | flight16 is a pesky critter made from toast, golf balls and 2 part adhesive. paw at him and you may find you have bonded. | revisions | <*:##NULL> |
5404 | 'flight16's mama' | is | so fat when greenpeace found her on the beach, they tried to roll her back in | revisions | <*:##NULL> |
5260 | flip | is | foobared | revisions | <*:##NULL> |
10960 | floating point | is | What every programmer should know about floating point: http://docs.oracle.com/cd/E19957-01/806-3568/ncg_goldberg.html | revisions | <*:##NULL> |
4211 | flock | is | http://perl.plover.com/yak/flock/ | revisions | <*:##NULL> |
3248 | flood | is | Do NOT flood. Paste your text to http://sial.org/pbot/ | revisions | <*:##NULL> |
4807 | .fl.us | is | Florida | revisions | <*:##NULL> |
10629 | fly2web | is | fly2web/Firebox/gotohome__/gotohell/~lee@various Korean IP proxies... persistent ban evader | revisions | <*:##NULL> |
10230 | flying lolcat | is | http://imgur.com/AzKMhYp | revisions | <*:##NULL> |
10236 | flying lolcats | is | http://imgur.com/AzKMhYp | revisions | <*:##NULL> |
242 | .fm | is | .fm is Micronesia | revisions | <*:##NULL> |
3688 | fm | is | Fucking Magic | revisions | <*:##NULL> |
16065 | fme | is | 'from my experience' | revisions | <*:##NULL> |
3827 | fmm | is | Frequently Made Mistake | revisions | <*:##NULL> |
8939 | fmobile | is | f00li5h cant see github on his mobile due to some wierd https bs | revisions | <*:##NULL> |
5066 | fmproto | is | http://web.archive.org/web/20030704193247/http://perl.com/pub/a/language/misc/fmproto.html | revisions | <*:##NULL> |
4775 | fnoord | is | gumbybrain: fnord | revisions | <*:##NULL> |
4769 | fnordfnord | is | serfbot: eval "fnordfnord" | revisions | <*:##NULL> |
3374 | fnux | is | fNux c'est de la balle! | revisions | <*:##NULL> |
243 | .fo | is | .fo is Faroe Islands | revisions | <*:##NULL> |
13522 | foad | is | fuck off and die | Short form of FOADIAGBCF | revisions | <*:##NULL> |
13521 | foadiagbcf | is | fuck off and die in a great big chemical fire | revisions | <*:##NULL> |
4885 | foadif | is | Fuck Off And Die In Fluoride | revisions | <*:##NULL> |
467 | foaf | is | usenet-speak for friend of a friend | revisions | <*:##NULL> |
10258 | fold case | is | for case-insensitive comparison, try perldoc -f fc (5.16+), see http://www.effectiveperlprogramming.com/2012/02/fold-cases-properly/ | revisions | <*:##NULL> |
6161 | follow deps | is | PERL_MM_USE_DEFAULT=1 in the environment and o conf prerequisites_policy follow; o conf commit; in the cpan shell | revisions | <*:##NULL> |
8416 | foloish | is | a way for those unfamiliar with tab complete to mangle f00li5h | revisions | <*:##NULL> |
3913 | fonteine | is | dying. | revisions | <*:##NULL> |
12900 | !foo | is | bars/^/bar/ | revisions | <*:##NULL> |
4782 | "foo" | is | "bar" | revisions | <*:##NULL> |
6250 | -foo | is | -bar | revisions | <*:##NULL> |
14226 | foo | is | bar | revisions | <*:##NULL> |
8191 | foo bar | is | poo | revisions | <*:##NULL> |
12528 | foobar | is | foo | revisions | <*:##NULL> |
3462 | foobarbaz | is | all and one | revisions | <*:##NULL> |
6063 | foo*bar; drop table factoids | is | look ma! | revisions | <*:##NULL> |
4785 | foolish consistency | is | A foolish consistency is the hobgoblin of little minds. | revisions | <*:##NULL> |
9232 | foolove | is | <foolove> i dont need or want your help or your replies in the channel your /ignored | revisions | <*:##NULL> |
12456 | fools | is | 𝕱𝖔𝖔𝖑𝖘, 𝕴 𝖘𝖍𝖆𝖑𝖑 𝖉𝖊𝖘𝖙𝖗𝖔𝖞 𝖞𝖔𝖚 𝖆𝖑𝖑! 𝒜𝓈𝓀 𝓂ℯ 𝒽ℴ𝓌! | revisions | <*:##NULL> |
14310 | foo_macro | is | «echo Hello ttkp» Not Available |
revisions | <*:##NULL> |
14277 | fooooooooootest | is | `echo `call defor fooo!! Not Available |
revisions | <*:##NULL> |
13604 | foreach | is | Iterate over a list of values - https://perldoc.pl/perlsyn#Foreach-Loops | revisions | <*:##NULL> |
12818 | !forget rehelp need a regex to limit numbers and decimal for length 4 ex: 1234, 12.34 | is | valid but not 123.12 this should be invalid | revisions | <*:##NULL> |
9297 | forget the parsing bugs | are | all to be compatible with the old | revisions | <*:##NULL> |
9206 | forget well, it | was | oblio before | revisions | <*:##NULL> |
8498 | forget well that | is | 31,000:4000 | revisions | <*:##NULL> |
9846 | fork | is | http://web.eecs.utk.edu/~huangj/cs360/360/notes/Fork/lecture.html http://www-h.eng.cam.ac.uk/help/tpl/unix/fork.html http://en.wikipedia.org/wiki/Fork-exec | revisions | <*:##NULL> |
4149 | form | is | "the way of the future". | revisions | <*:##NULL> |
15200 | format | is | https://perldoc.pl/perlform but consider sprintf, Text::Template, Text::Table, or Perl6::Form | revisions | <*:##NULL> |
9012 | format dates | is | POSIX::strftime | DateTime::Format::*, see also DateTime's strftime method | revisions | <*:##NULL> |
15201 | formats | is | [fact format [arg]] Not Available |
revisions | <*:##NULL> |
4301 | formmail | is | Don't use Matt's, get the updated version from http://nms-cgi.sourceforge.net/ | revisions | <*:##NULL> |
4206 | fors | is | Just another convicted Perl hacker or http://www.lightlink.com/fors/ | revisions | <*:##NULL> |
9080 | fortunes | is | Find #perl fortunes at http://www.shlomifish.org/humour/fortunes/sharp-perl.html ; for more about the UNIX fortune program - see http://en.wikipedia.org/wiki/Fortune_%28Unix%29 | revisions | <*:##NULL> |
5195 | forums | is | Perl Forums are http://perlmonks.org/ , http://perl-speak.org/ , http://www.cpanforum.com/ | revisions | <*:##NULL> |
15941 | forwarded for | is | https://adam-p.ca/blog/2022/03/x-forwarded-for/ | revisions | <*:##NULL> |
4737 | foss | is | foss is free and open source software, or Festering Open SoreS. | revisions | <*:##NULL> |
7787 | fountain of doubt | is | http://oglaf.com/fountain-of-doubt/1/ - subtle isn't it | revisions | <*:##NULL> |
13840 | foxnews | is | [fact [8ball fakenews, or theonion] [arg]] Not Available |
revisions | <*:##NULL> |
4061 | foxstab | is | Top Cutter | revisions | <*:##NULL> |
10667 | fp | is | Functional Programming - https://en.wikipedia.org/wiki/Functional_programming | revisions | <*:##NULL> |
5164 | fpanel | is | dazjorz's recently started web hosting control panel and robot admin scripts at fPanel.info | revisions | <*:##NULL> |
10084 | fpcboe | is | Freenode Perl Channel Brain Offloading Engine | revisions | <*:##NULL> |
244 | .fr | is | .fr is France | revisions | <*:##NULL> |
12662 | fraktur | is | <call blackface <arg>> Not Available |
revisions | <*:##NULL> |
12390 | framesready | is | http://search.mcpan.org/dist/FramesReady/ | revisions | <*:##NULL> |
13444 | frameworks | is | [fact web frameworks [arg]] Catalyst, Dancer2, Mojolicious (and many many PSGI frameworks like Web::Simple, Web::Machine) | http://shadow.cat/blog/matt-s-trout/mstpan-1/ | https://metacpan.org/pod/CGI::Alternatives |
revisions | <*:##NULL> |
14453 | freebsd | is | A friendly opensource operating system that incorrectly changed its mascot into a weird spherical object | revisions | <*:##NULL> |
14749 | freebsd beast | is | still chomping, but All passes so far | revisions | <*:##NULL> |
5676 | freecell | is | FreeCell, a full-information, single-player card Solitaire game. See: http://www.solitairelaboratory.com/fcfaq.html ; http://en.wikipedia.org/wiki/FreeCell ; also see fc-solve | revisions | <*:##NULL> |
15659 | freenode | is | A former glorious empire that changed names, with its past name marred by a mad king with a cocaine habbit. | https://www.kline.sh/ | https://www.devever.net/~hl/freenode_suicide | revisions | <*:##NULL> |
15568 | freenode ops | is | thrig paladin kitchen bod pink_mist Chris62vw khisanth tybalt89 simcop2387 sili tag BinGOs beth mst dhoss hobbs jaye tm604 geck Botje | /raw stats p | /msg ChanServ access #perl list | revisions | <*:##NULL> |
3457 | free perl books | is | www.techbooksforfree.com/perlpython.shtml | revisions | <*:##NULL> |
10709 | free speech | is | https://xkcd.com/1357/ | revisions | <*:##NULL> |
5172 | french | is | tost, fries, kiss | revisions | <*:##NULL> |
10 | friedo | is | <friedo> yo mama such a slut, she has over 1000 child classes | revisions | <*:##NULL> |
3409 | friedo's mother | is | friedo's mother is so fat, she has her own zipcode | revisions | <*:##NULL> |
9662 | frijole | is | a car jock | a tool | Geordi | revisions | <*:##NULL> |
5262 | frinkbot | is | frinkbot: simcop2387 sucks | revisions | <*:##NULL> |
4934 | frogbot | is | 'Leaping Into The Future' | revisions | <*:##NULL> |
4989 | frozen-bubble | is | http://www.frozen-bubble.org/ | revisions | <*:##NULL> |
4371 | frp | is | Functional Reactive Programming | revisions | <*:##NULL> |
4096 | fsa | is | Finite State Automata | revisions | <*:##NULL> |
4933 | fsa regex | is | http://swtch.com/~rsc/regexp/regexp1.html | revisions | <*:##NULL> |
5140 | fsd | is | Free Software Definition is http://www.gnu.org/philosophy/free-sw.html | revisions | <*:##NULL> |
3712 | fsm | is | finite state machine | revisions | <*:##NULL> |
5471 | fsoip | is | Face Stab over IP | revisions | <*:##NULL> |
6162 | fsvo | is | For Some Value Of | revisions | <*:##NULL> |
3707 | fsvsvo | is | for some very specific value of | revisions | <*:##NULL> |
10494 | ftech | is | ftech | revisions | <*:##NULL> |
4194 | ftl | is | faster than light | revisions | <*:##NULL> |
13294 | ftoc | is | see tempconv | revisions | <*:##NULL> |
13180 | ftp | is | http://mywiki.wooledge.org/FtpMustDie | revisions | <*:##NULL> |
13181 | ftp must die | is | [fact ftp [arg]] Not Available |
revisions | <*:##NULL> |
5981 | ftpmustdie | is | http://mywiki.wooledge.org/FtpMustDie | revisions | <*:##NULL> |
4319 | ftp upload | is | temporary webspace adr: ftp.nnn0.net - l/p: css@nnn0.net/cake - site: www.nnn0.net/css/ | revisions | <*:##NULL> |
4487 | ftw | is | FTW is a 1994 film about an ex-con who is a rodeo rider. If you mean 'for the win', please say that. | revisions | <*:##NULL> |
15985 | fubar | is | Fucked Up Beyond All Recognition | revisions | <*:##NULL> |
7804 | fuck | is | let's not and say we did | revisions | <*:##NULL> |
4052 | fuckhead | is | http://thingy.apana.org.au/~fun/fsckhead.html | revisions | <*:##NULL> |
5481 | fuckign | is | Fuck the Imagine Games Network. News Corp.-owned and thus trash. | revisions | <*:##NULL> |
10251 | fuck it | is | http://i.imgur.com/wcZTKfPl.png | revisions | <*:##NULL> |
13113 | fuck me | is | sure! | revisions | <*:##NULL> |
9586 | fuck off | is | The Fuck is now OFF | revisions | <*:##NULL> |
9587 | fuck on | is | The Fuck is now ON | revisions | <*:##NULL> |
4305 | fuck ton | is | 947 metric tons | revisions | <*:##NULL> |
13111 | fuck you | is | D: | revisions | <*:##NULL> |
5328 | fuckyou | is | 34486853790 | revisions | <*:##NULL> |
4702 | fuck your life | is | n, f u l | revisions | <*:##NULL> |
13126 | fuck you, you | are | stupid | revisions | <*:##NULL> |
446 | fugly | is | fucking ugly | revisions | <*:##NULL> |
11704 | full days | is | @day_full = qw(Sunday Monday Tuesday Wednesday Thursday Friday Saturday); | revisions | <*:##NULL> |
3500 | full months | is | @mo_full = qw(January February March April May June July August September October November December); | revisions | <*:##NULL> |
55 | fullop | is | aaaaaaaaaa naaaaaaaaaaaaaaaan pa fullop !!!!!!! | revisions | <*:##NULL> |
15987 | fullstack | is | https://i.redd.it/za35c2azb0991.jpg | revisions | <*:##NULL> |
12649 | fullwidth | is | <eval use utf8; q{<arg>} =~ y! \x20-\xef!\x{FFA0}\x{ff00}-\x{ffef}!r> Justᅠanotherᅠunicodeᅠhacker. |
revisions | <*:##NULL> |
9229 | fun | is | #perl regulars help because it's fun. code without strict and warnings isn't fun, so they don't like to help with it | revisions | <*:##NULL> |
4290 | fun1 | is | <rapsys> Hi, I need a few help | revisions | <*:##NULL> |
14608 | functionalperl | is | a project to minimize side-effects in Perl programs and has a website at functional-perl.org | revisions | <*:##NULL> |
12017 | function p3rl | is | (echo http://p3rl.org/(arg)) | revisions | <*:##NULL> |
5227 | funding | is | Don't ask to ask for funding. | revisions | <*:##NULL> |
3283 | funniest perldoc | is | perllol | revisions | <*:##NULL> |
14832 | funnily enough | is | meant to work in BSD | revisions | <*:##NULL> |
4221 | funny | is | i'm great, am i not? | revisions | <*:##NULL> |
7839 | fun with perl | is | http://www.xaprb.com/blog/2006/10/05/five-great-perl-programming-techniques-to-make-your-life-fun-again/ | revisions | <*:##NULL> |
4041 | fuquink | is | gay. | revisions | <*:##NULL> |
5357 | furry | is | NO U, also http://xkcd.com/471/ | revisions | <*:##NULL> |
4894 | fursecute | is | YIFF IN HELL, FURFAG | revisions | <*:##NULL> |
4197 | fuse | is | File System In Userspace | revisions | <*:##NULL> |
10659 | futures advent | is | http://leonerds-code.blogspot.co.uk/2013/12/futures-advent-day-1.html | revisions | <*:##NULL> |
461 | fwiw | is | For What It's Worth | revisions | <*:##NULL> |
245 | .fx | is | .fx is France (Metropolitan) | revisions | <*:##NULL> |
8981 | f.xpath | is | http://xrl.us/bmhzm7 | revisions | <*:##NULL> |
3804 | *g* | is | lol | revisions | <*:##NULL> |
15320 | g | is | 6.67428 x 10-11 m3 kg-1 s-2 | revisions | <*:##NULL> |
246 | .ga | is | .ga is Gabon | revisions | <*:##NULL> |
3769 | gabor | is | Gabor Szabo (http://www.szabgab.com/) Israeli PerlMaster. Cpan-forum. The works. | revisions | <*:##NULL> |
14558 | games | is | Take a look at SDL and raylib, both have up to date bindings for perl. | revisions | <*:##NULL> |
4340 | gas | is | a nasty form of intestinal wind | revisions | <*:##NULL> |
14791 | gate | is | Open gate, walk through gate, close gate. | revisions | <*:##NULL> |
7904 | gauntlet | is | <echo you are: <8ball green elf, red warrior, blue valkyrie, or yellow wizard>> Not Available |
revisions | <*:##NULL> |
4808 | .ga.us | is | Georgia | revisions | <*:##NULL> |
4272 | gay | is | "For Dummies..." series | revisions | <*:##NULL> |
247 | .gb | is | .gb is Great Britain (UK) | revisions | <*:##NULL> |
4533 | gb | is | GumbyBRAIN: dongalicious baby | revisions | <*:##NULL> |
3947 | gb, | is | GumbyBRAIN: hjkyui | revisions | <*:##NULL> |
5019 | gbtw | is | get back to work | revisions | <*:##NULL> |
248 | .gd | is | .gd is Grenada | revisions | <*:##NULL> |
249 | .ge | is | .ge is Georgia | revisions | <*:##NULL> |
5580 | gedit | is | for people with X and who don't like useful features in their editor | revisions | <*:##NULL> |
4022 | generally speaking, if you see a "library file" that ends in .pl, you should be very wary -- it | is | most likely rather old and crufty. Most "libraries" these days are modules that end in .pm | revisions | <*:##NULL> |
14039 | genio | is | foo | bar | baz | revisions | <*:##NULL> |
3486 | gentle | is | <integral> perlygatekeeper: yep, I'll be gentle ;-) | revisions | <*:##NULL> |
5635 | geoip | is | Usage: geoip (ip || hostname) | revisions | <*:##NULL> |
8271 | get a job | is | jobs.perl.org | revisions | <*:##NULL> |
14908 | _getarg_perl_array | is | `eval use Text::ParseWords; my @words = shellwords(`quote d `arg!!); \@words! ["-s","events","async"] |
revisions | <*:##NULL> |
12497 | _get_bitcoin | is | <eval $d=<quote d <get http://blockchain.info/q/<arg>/1PerLBotTtCGH4bhopJqFWY1m5BrCW6At2>>; $d=~<echo s>/^.*:\s*//; $d/100_000_000> 0.23095679 |
revisions | <*:##NULL> |
15468 | _get_dogecoin | is | `eval use JSON::MaybeXS qw/decode_json/; $d=decode_json `quote d `get https://dogechain.info/api/v1/address/`arg!/DPERLBoTrNT129x9uR65VSSxCKzYr7GTZd .*!!; $d->{`quote d `arg!!}! 0.00000000 |
revisions | <*:##NULL> |
12829 | _get_domain | is | `eval use URI; $i=`quote d `arg!!; return URI->new($i)->host() if $i=~m|://|; $i! Not Available |
revisions | <*:##NULL> |
8292 | getfirst | is | `eval $_='`arg^'; s/\s*<-.*//; $_;^ Not Available |
revisions | <*:##NULL> |
4280 | gethostbyaddr | is | perl -wle 'use Socket; $host="140.211.166.4"; $name = gethostbyaddr(inet_aton($host), AF_INET); print $name' | revisions | <*:##NULL> |
3323 | get it | is | got it! | revisions | <*:##NULL> |
3316 | get it? | is | Got it! | revisions | <*:##NULL> |
10467 | getopt | is | Getopt::Long is the perl way of handling commandline options | revisions | <*:##NULL> |
15625 | _get_pastebin | is | ~eval $_="~arg &s!"; $l=/libera/?"l":/freenode/?"f":/oftc/?"o":/choopa/?"e":/shells/?"r":"m"; "https://$l.perl.bot/~arg &c!"! https://l.perl.bot/#mojo |
revisions | <*:##NULL> |
8293 | getsecond | is | `eval $_='`arg^'; s/.*<-\s*//; $_;^ Not Available |
revisions | <*:##NULL> |
12770 | _get_server_abbr | is | <eval $_= <quote d <arg &s>>; /freenode/?"f":/oftc/?"o":"m"> f |
revisions | <*:##NULL> |
14819 | gets that i | am | getting nothing on a perl 5.30 and 5.32 system | revisions | <*:##NULL> |
5645 | getting answers | is | http://www.mikeash.com/getting_answers.html | revisions | <*:##NULL> |
15422 | _get_trump_arch | is | `eval use Encode 'encode'; use JSON::MaybeXS 'decode_json'; $d=decode_json encode "utf-8", `quote d `get https://www.thetrumparchive.com/latest-tweets .*!!; $t=$d->[(`arg!) || 0]; sprintf "<Donlad J Trump> %s https://twitter.com/link/%s", $t->{text}, $t->{id}! <Donlad J Trump> RT @alaynatreene: NEW: A growing number of Republican senators — led by Ted Cruz — are set to announce today they also will object to certi… https://twitter.com/link/1345563812674473984 |
revisions | <*:##NULL> |
9357 | getty | is | a mad German perl hacker working for duckduckgo as their marketing department | a troll | revisions | <*:##NULL> |
13089 | geturi | is | https://regex101.com/?regex=^reg$&flags=gm&delimiter=@&flavor=pcre&testString=reg&subst=sub | revisions | <*:##NULL> |
250 | .gf | is | .gf is French Guiana | revisions | <*:##NULL> |
3756 | gfdl | is | GNU FDL | revisions | <*:##NULL> |
425 | gg | is | good game son, I own you | revisions | <*:##NULL> |
4690 | gghoul | is | The master of anti-vivisection. | revisions | <*:##NULL> |
251 | .gh | is | .gh is Ghana | revisions | <*:##NULL> |
252 | .gi | is | .gi is Gibraltar | revisions | <*:##NULL> |
5748 | gigo | is | GIGO is Garbage In, Garbage Out - http://en.wikipedia.org/wiki/Garbage_In,_Garbage_Out | revisions | <*:##NULL> |
3938 | gimme some lovin' | is | For the love of Larry, just take your clothes off! | revisions | <*:##NULL> |
11545 | giphy | is | `shorten `eval use JSON::XS qw/decode_json/; $d=decode_json(`quote d `get http://api.giphy.com/v1/gifs/search?q=`fact _urlencode `arg~~&api_key=dc6zaTOxFJmzC .*~~); @i=map{$_->{images}{original}{url}}$d->{data}->@*; $i[rand()*@i] ~~ Not Available |
revisions | <*:##NULL> |
4284 | girl | is | girl is good | revisions | <*:##NULL> |
4748 | girls | is | http://xkcd.com/322/ | revisions | <*:##NULL> |
8006 | gis | is | <echo http://www.google.com/images?q=<call _urlencode <arg>>> Not Available |
revisions | <*:##NULL> |
12928 | git | is | can be found at http://git.or.cz/gitwiki/ or git is not a "better svn", it has a fundamentally different philosophy of operation | Perl's source code can be found at https://github.com/Perl/perl5 | revisions | <*:##NULL> |
11004 | git-cpan | is | Easily turn any CPAN distribution into a git repository and send patches: https://metacpan.org/pod/Git::CPAN::Patch See also: https://github.com/gitpan | revisions | <*:##NULL> |
15301 | gitesh | is | a pleb | revisions | <*:##NULL> |
14857 | gitest | is | a rampant homo racist with aids | revisions | <*:##NULL> |
13482 | github | is | <echo Did you want my source? <fact source> | https://www.simcop2387.info/github.png> Not Available |
revisions | <*:##NULL> |
15479 | githubmeta | is | https://metacpan.org/pod/Dist::Zilla::Plugin::GithubMeta | revisions | <*:##NULL> |
5369 | give $20 to thrigs paypal account | is | Given. | revisions | <*:##NULL> |
5368 | give 20 to thrigs paypal account | is | Given. | revisions | <*:##NULL> |
15679 | give blood | is | go skateboarding | revisions | <*:##NULL> |
14944 | give me a password | is | `bashevalnl basename $0! Not Available |
revisions | <*:##NULL> |
8698 | give me a useful list of web frameworks again, not that any attention | will be | paid this time either | revisions | <*:##NULL> |
10836 | give me money | is | What, do I look like a charity? | revisions | <*:##NULL> |
10840 | given | is | Don't use given/when because it relies on ~~. See smartmatch | revisions | <*:##NULL> |
4111 | giyf | is | Google Is Your Friend (IRC is not a search engine!) | revisions | <*:##NULL> |
3608 | gj | is | Thanks. | revisions | <*:##NULL> |
253 | .gl | is | .gl is Greenland | revisions | <*:##NULL> |
13138 | glare | is | ಠ_ಠ | revisions | <*:##NULL> |
14790 | global thermal nuclear war | is | A strange game. The only winning move is not to play. | revisions | <*:##NULL> |
14792 | global thermonuclear war | is | [fact Global Thermal Nuclear War [arg]] Not Available |
revisions | <*:##NULL> |
12082 | global warming | is | http://www.xkcd.com/1321/ | http://www.xkcd.com/1732/ | https://xkcd.com/1379/ | revisions | <*:##NULL> |
14172 | globs | is | https://perldoc.pl/perlref#7 | revisions | <*:##NULL> |
3337 | glop | is | glop glop! | revisions | <*:##NULL> |
8418 | gloves | is | http://thedailywtf.com/Articles/The_Complicator_0x27_s_Gloves.aspx | revisions | <*:##NULL> |
254 | .gm | is | .gm is Gambia | revisions | <*:##NULL> |
9972 | gmpaul | is | <alias> archondev | revisions | <*:##NULL> |
255 | .gn | is | .gn is Guinea | revisions | <*:##NULL> |
14725 | gnu | is | GNU's Not UNIX - http://www.gnu.org/ ; http://en.wikipedia.org/wiki/GNU - a project to create free and open-source software packages, which materialised a 100% open-source operating system. | G) Send the message on N) Do not log the message U) Turn message around at end of line and resend | revisions | <*:##NULL> |
3757 | gnu fdl | is | GNU Free Documentation License or see http://www.gnu.org/copyleft/fdl.html | revisions | <*:##NULL> |
14685 | gnumeric | is | Ximian's answer to XL | https://en.wikipedia.org/wiki/Gnumeric - a FOSS spreadsheet app; also see its ssconvert commandline util | revisions | <*:##NULL> |
3815 | gnurdux | is | He is taking a walk | revisions | <*:##NULL> |
4416 | goatse | is | http://www.time.com/time/covers/0,16641,1101040920,00.html | revisions | <*:##NULL> |
4936 | goatse operator | is | =()= | revisions | <*:##NULL> |
3307 | goatsex | is | goat.cx | revisions | <*:##NULL> |
3935 | go away | is | whatever. | revisions | <*:##NULL> |
10614 | godiva | is | http://tinyurl.com/omdqhem | revisions | <*:##NULL> |
5757 | gods | is | The Perl gods help the Perl hacker-wannabes who help themselves. | revisions | <*:##NULL> |
4207 | gods help | is | "The Gods Help them that help themselves" -- http://en.wikiquote.org/wiki/Aesop (or those who pay the gods to help them -- rindolf) | revisions | <*:##NULL> |
5190 | godwin | is | Godwin's Law - http://en.wikipedia.org/wiki/Godwin's_law ; http://www.killfile.org/~tskirvin/faqs/godwin.html | revisions | <*:##NULL> |
3528 | godzirra | is | The man with the master plan! | revisions | <*:##NULL> |
4120 | gof | is | Gang of Four | revisions | <*:##NULL> |
460 | go find it | is | Looking for a premade script or program? Go search the web! We're here to help perl programmers program perl. We aren't here to help you find scripts or fix the crappy script you downloaded. Sorry | revisions | <*:##NULL> |
5703 | gogogogo | is | buubot: echo perlbot: gogogogo | revisions | <*:##NULL> |
4158 | going to yapc? | is | also cfedde | revisions | <*:##NULL> |
10587 | going to yapc::eu | is | (2014) mauke, Su-Shee | revisions | <*:##NULL> |
9462 | golf | is | Perl golf (least bytes win) http://terje2.frox25.no-ip.org/~pgas/score.pl?func=show&template=faq and codegolf.com's #codegolf . See http://golf.shinh.org/ . | revisions | <*:##NULL> |
9104 | golfing | is | If you have to ask how to golf in Perl, you shouldn't be doing it and get to keep any and all pieces. | revisions | <*:##NULL> |
10681 | goliath | is | The David who Fought Goliath was a hacker or an action hero - http://is.gd/equdhC | revisions | <*:##NULL> |
3404 | good afternoon perlbot | is | good afternoon sir | revisions | <*:##NULL> |
11 | goodbye | is | You were incredible. Love me soon | revisions | <*:##NULL> |
3258 | goodcrack | is | www.php.net | revisions | <*:##NULL> |
3405 | good evening perlbot | is | good evening sir | revisions | <*:##NULL> |
8166 | good morning | is | You keep using those words. I do not think they mean what you think they mean. | revisions | <*:##NULL> |
3403 | good morning perlbot | is | good morning sir | revisions | <*:##NULL> |
3266 | good night | is | see you in bed love | revisions | <*:##NULL> |
4374 | goodnight | is | Sweet dreams my friend :-) | revisions | <*:##NULL> |
9226 | good perlbot | is | <purrrrrrr /> <woof /> <tail-wag /> | revisions | <*:##NULL> |
5259 | good security | is | not using the internet | revisions | <*:##NULL> |
9237 | is | google often isn't the best place to find perl stuff - for tutorials say "perlbot: tutorial", for modules use metacpan.org and for core functions use the perldoc program or perldoc.perl.org | revisions | <*:##NULL> | |
11078 | google suggest | is | `eval use JSON::XS; $d=`quote d `fact _google_suggest_json `arg~~~; $sug=decode_json $d; join '; ', map {s/\\u([0-9a-f])/"\x{$1}"/eigr;} $sug->[1]->@*~ Not Available |
revisions | <*:##NULL> |
11088 | _google_suggest_json | is | `eval $json=`quote d `get http://suggestqueries.google.com/complete/search?output=toolbar&hl=en&client=firefox&q=`call _urlencode `arg~~ /*~~; ~ Error 400 (Bad Request)!!1400.That’s an error.Your client has issued a malformed or illegal request. That’s all we know. |
revisions | <*:##NULL> |
11068 | _google_suggest_json my mother | is | a | revisions | <*:##NULL> |
11082 | _google_suggest_json tm604 | is | a | revisions | <*:##NULL> |
3896 | gop2 | is | wisdom hs nothing to do with dumb | revisions | <*:##NULL> |
3892 | gop2 <gop2> hence i talk to you | is | a human, but what comes out is idiot talk | revisions | <*:##NULL> |
3856 | gopp | is | a psycho | revisions | <*:##NULL> |
468 | go search | is | Looking for a premade script or program? Go search the web! We're here to help perl programmers program perl. We aren't here to help you find scripts or fix the crappy script you downloaded. Sorry | revisions | <*:##NULL> |
14550 | got | is | [sweval my $arg = "[arg]"; return "Usage: got Foo::Wibble?" unless $arg =~ / *\?$/; $arg =~ s/ *\?$//; eval "use $arg; 1" ? "yes" : "no"] Not Available |
revisions | <*:##NULL> |
14547 | got_2 | is | [eval $arg =[quote d [arg]] =~ s/^\s+|\s*\??\s*$//rg; eval "use $arg; 1"?"yes":"no" ] Not Available |
revisions | <*:##NULL> |
14553 | got milk? | is | Would you like whip, non-whip, ultra low fat, no fat, organic fat, made on the moon, anti gravity split, pot boiled or semi skimmed? | revisions | <*:##NULL> |
3442 | goto | is | Oh my GOD! Those things still exist!? -- perlbot (still proudly goto-free) | revisions | <*:##NULL> |
5963 | go to hell | is | you should use a subroutine call to hell | revisions | <*:##NULL> |
8365 | goto statement | is | Structured Programming does not necessarily imply that "goto statement considered HARMFUL" - see http://discuss.fogcreek.com/joelonsoftware3/default.asp?cmd=show&ixPost=78092 ( http://xrl.us/vhb5 ). In Perl though, which has a very powerful goto statement, you normally don't need it so reconsider using it. | revisions | <*:##NULL> |
8733 | .gov.au | is | <ncow> it's like if PHP became a country | revisions | <*:##NULL> |
256 | .gp | is | .gp is Guadeloupe | revisions | <*:##NULL> |
3813 | gpl | is | A NICE INVENTION!!!!!!!!! | revisions | <*:##NULL> |
257 | .gq | is | .gq is Equatorial Guinea | revisions | <*:##NULL> |
258 | .gr | is | .gr is Greece | revisions | <*:##NULL> |
5625 | gragh | is | smrt: explain GNU | revisions | <*:##NULL> |
7790 | grammar | is | http://hyperboleandahalf.blogspot.com/2010/04/alot-is-better-than-you-at-everything.html | revisions | <*:##NULL> |
14399 | greatest books of all time | is | https://www.amazon.com/Savaged-Systemd-Erotic-Unix-Encounter/dp/1976149886/ https://www.amazon.com/gp/product/B06XTY4GP5/ https://www.amazon.com/gp/product/B07DKJTTG8/ | revisions | <*:##NULL> |
4397 | greed | is | See "greedy" | revisions | <*:##NULL> |
4698 | greedy | is | .* is greedy. .*? is not. See "perldoc -q greedy", perlrequick, perlretut, perlreref, perlre | revisions | <*:##NULL> |
3549 | greetings | is | Greetings, human. | revisions | <*:##NULL> |
15736 | greetnom | is | Heya nomikos | revisions | <*:##NULL> |
9223 | grep | is | global regular expression print | revisions | <*:##NULL> |
14027 | grinnz | is | part of the problem | revisions | <*:##NULL> |
13499 | grinnz's perldoc | is | https://perldoc.grinnz.com/ and https://github.com/Grinnz/perldoc-browser | revisions | <*:##NULL> |
12161 | grinnz: your nonsense | was | intelligible to | revisions | <*:##NULL> |
3429 | gripe #1 about python | is | Lists can only be reversed in-place. | revisions | <*:##NULL> |
4774 | grocery store | is | http://jagerman.com/grocery_store_kid_no_candy.avi | revisions | <*:##NULL> |
3384 | group hug | is | WEEEEEEEEEEEE | revisions | <*:##NULL> |
4605 | grt | is | Guttman-Rosler Transform - see http://www.sysarch.com/Perl/sort_paper.html | revisions | <*:##NULL> |
259 | .gs | is | .gs is S. Georgia and S. Sandwich Islands | revisions | <*:##NULL> |
260 | .gt | is | .gt is Guatemala | revisions | <*:##NULL> |
5028 | gta | is | Greater Toronto Area | revisions | <*:##NULL> |
5005 | gtfi | is | Get The Fuck In | revisions | <*:##NULL> |
5457 | gtfo | is | NO U! | revisions | <*:##NULL> |
8164 | gtk | is | http://gtk2-perl.sourceforge.net/doc/gtk2-perl-study-guide/ | revisions | <*:##NULL> |
3392 | gtk2-perl | is | http://gtk2-perl.sourceforge.net/ | revisions | <*:##NULL> |
261 | .gu | is | .gu is Guam | revisions | <*:##NULL> |
9708 | gui | is | wxPerl, Perl/Tk, Perl/Gtk, Tkx, Perl/Qt, Prima - also see http://perl-begin.org/uses/GUI/ | revisions | <*:##NULL> |
13077 | !guidelines | is | [] | revisions | <*:##NULL> |
13076 | guidelines | is | [] denotes a variable part. | revisions | <*:##NULL> |
4777 | gumbehbrane | is | GumbyBRAIN: Where is GumbehGumbeh? | revisions | <*:##NULL> |
5343 | gumby | is | BRAIN | revisions | <*:##NULL> |
14447 | gumbybrain | is | BinGOs' experimental megahal bot and not an infobot. Source from http://www.gumbybrain.com :: To talk to GumbyBRAIN, go to #gumbybrain. | < marcus> GumbyBRAIN: What makes your brain so gumby? < GumbyBRAIN> I somehow had brain fungus. | revisions | <*:##NULL> |
4997 | gumbybrain, | is | fail | revisions | <*:##NULL> |
3945 | gumbybrain: perlbot | is | EvanCarroll is | revisions | <*:##NULL> |
14573 | gumbybrain: the blair witch | is | visiting for thanksgiving | revisions | <*:##NULL> |
4681 | gumbybrain: what | is | the difference between you and | revisions | <*:##NULL> |
13192 | gumbybrain: 'which reminds me of the man i once read of in some sacred book who | was | given a choice of what he most desired. And because he didn't ask for titles and honours and dignities, but only for immense wealth, these other things came to him too.' 'I am sure you didn't read about him in any sacred book.' 'Yes; I fancy you will find him in Debrett.' | revisions | <*:##NULL> |
3921 | gumbybrain: who | is | more retardeder, you or? | revisions | <*:##NULL> |
4739 | gumbygumby | is | GumbyGumby: dongs | revisions | <*:##NULL> |
4746 | gumbygumby talks literature | is | <GumbyGumby> simcop2387: George orwell was an accident. | revisions | <*:##NULL> |
4471 | gumbymoo | is | http://gumbybrain.com/brain/gumby200703221.jpg | revisions | <*:##NULL> |
5559 | gumbypan | is | http://github.com/bingos/gumbypan/tree/master | revisions | <*:##NULL> |
5716 | gumbytwit | is | http://twitter.com/gumbytwat Gumbybrain set loose on twitter, see his replies at http://farnsworth.simcop2387.info/test/gumbyreplies.txt , fixed now to not be a spammer | revisions | <*:##NULL> |
497 | gun | is | Guns don't kill people. People with guns kill people | revisions | <*:##NULL> |
3414 | guns | is | "Laws that forbid the carrying of arms disarm only those who are neither inclined nor determined to commit crimes. Such laws make things worse for the assaulted and better for the assailants; they serve rather to encourage than to prevent homicides, for an unarmed man may be attacked with greater confidence than an armed man." - Thomas Jefferson | revisions | <*:##NULL> |
3529 | guru | is | A wise Guru has said that the three most difficult things in this life are returning love for hate, including the excluded, and admitting you are wrong | revisions | <*:##NULL> |
262 | .gw | is | .gw is Guinea-Bissau | revisions | <*:##NULL> |
3351 | gxti | is | "All of life is a blur of Republicans and meat!" | revisions | <*:##NULL> |
263 | .gy | is | .gy is Guyana | revisions | <*:##NULL> |
4874 | h | is | 6.62606896 x 10-34 J s | revisions | <*:##NULL> |
3723 | ha! | is | HA COOL! | revisions | <*:##NULL> |
9149 | hack | is | something you do to force a program to appear to work as intended without actually solving the problem that makes it work as intended | revisions | <*:##NULL> |
5193 | hack buubot | is | If you want to try to hack/break/rape buubot, do it in /msg, or in #buubot | revisions | <*:##NULL> |
3733 | hacker | is | http://en.wikipedia.org/wiki/Hacker or http://www.catb.org/~esr/faqs/hacker-howto.html or http://www.paulgraham.com/gh.html or http://www.paulgraham.com/gba.html | revisions | <*:##NULL> |
4532 | hackers-il | is | Hackers-IL, a group of Israeli software enthusiasts - http://www.hackers.org.il/ | revisions | <*:##NULL> |
3799 | hack nothing, and the nsa | is | one of the hardest targets on earth | revisions | <*:##NULL> |
16175 | hack the gibson | is | too many garbage files, I need more time | revisions | <*:##NULL> |
9772 | had something about problems in switch but i don't remember what it | was | called | revisions | <*:##NULL> |
5300 | haghagha | is | meow | revisions | <*:##NULL> |
9762 | halting problem | is | http://en.wikipedia.org/wiki/Halting_problem - why code cannot fully introspect any other arbitrary code. For the flip side is: https://metacpan.org/module/Acme::HaltingProblem | revisions | <*:##NULL> |
14053 | hamberders | is | an albany expression | revisions | <*:##NULL> |
5443 | hamlet | is | To be, or not to be--that is the question: Whether 'tis nobler in the mind to suffer the slings and arrows of outrageous fortune or to take arms against a sea of troubles and by opposing end them. | revisions | <*:##NULL> |
15872 | handling | is | thrig> you can't handle the IO::Handle! | revisions | <*:##NULL> |
5614 | hangs | is | what do you mean hangs? Isolate the problem. Is the script suffering from buffering? See: http://sial.org/blog/2009/05/heuristic_for_hung_code_in_per.html | revisions | <*:##NULL> |
8032 | hanlon's razor | is | "Never attribute to malice that which is adequately explained by stupidity." | revisions | <*:##NULL> |
10257 | happy kitty | is | happy | revisions | <*:##NULL> |
4753 | harass somni | is | STICK! STICK! STICK! STICK! STICK! STICK! | revisions | <*:##NULL> |
15513 | hard problems | is | [fact hard things [arg]] there's only two hard things in computer science: naming things, cache invalidation, and off by one errors |
revisions | <*:##NULL> |
15514 | hard things | is | there's only two hard things in computer science: naming things, cache invalidation, and off by one errors | revisions | <*:##NULL> |
7837 | hart explained | is | http://groups.google.nl/group/pl.comp.lang.perl/msg/3d47c84a1307e381 | revisions | <*:##NULL> |
11911 | has a lot of the same features, but pork | has been | around for, what, 20 years? | revisions | <*:##NULL> |
4693 | has anyone used x | is | this is a variant on asking to ask. just ask the damn question. | revisions | <*:##NULL> |
10994 | has a pastebin for here, and jsfiddle | is | the most commonly userd | revisions | <*:##NULL> |
10956 | has been with perl since he | was | given life | revisions | <*:##NULL> |
14815 | has extra stuff that makes it a little harder to get a clean slate, but if you | were | creating a regular module, why not just "package reset; BEGIN { our $clean_hints = $^H; our %clean_hints = %^H }" ? | revisions | <*:##NULL> |
8517 | hash | is | known as an associative array, map or dictionary (but don't call it that in perl contexts), a hash is a data structure that maps strings to scalars. See http://perl-begin.org/topics/hashes/ . | revisions | <*:##NULL> |
10100 | hashbang | is | the #! in #!/usr/bin/perl - might also be /usr/bin/env perl and then #!perl -Corwhatevs to set flags on subsequent lines (but not -T) - see also http://www.in-ulm.de/~mascheck/various/shebang/ | revisions | <*:##NULL> |
10398 | hashes | is | [fact hash] known as an associative array, map or dictionary (but don't call it that in perl contexts), a hash is a data structure that maps strings to scalars. See http://perl-begin.org/topics/hashes/ . |
revisions | <*:##NULL> |
3912 | hash in scalar context | is | used/allocated | revisions | <*:##NULL> |
8603 | hashref | is | @hash{@keys} -> @{$hashref}{@keys} | revisions | <*:##NULL> |
9995 | hashref slice | is | hashref slice @$hashref{ @keys }; or a nested hashref: @{ $foo->{bar}{hashref} }{ @keys } | revisions | <*:##NULL> |
9627 | hashsort | is | sort a hash by its values | revisions | <*:##NULL> |
8437 | haskell | is | http://www.haskell.org/ - a purely functional, very strongly typed programming language that was used for Pugs - the first attempt at a Perl 6 compiler (now defunct). | revisions | <*:##NULL> |
4588 | has 'perl' in the name,. but perlbot | is | not a part of perl | revisions | <*:##NULL> |
3569 | hate | is | sometimes I hate people. but then i realise it's because I hate a person, and I don't want to hate that person, so I spread it out over all humanity | revisions | <*:##NULL> |
11207 | hatetris | is | http://qntm.org/files/hatetris/hatetris.html | revisions | <*:##NULL> |
13107 | have fun | is | thanks, I'm perlbot. fuck me! | revisions | <*:##NULL> |
16115 | haven't checked this week but it | was | working last week when i built it for | revisions | <*:##NULL> |
3267 | hawkaloogie | is | <hawkaloogie> my goal in life is to create the first CPAN mirror on the moon! | revisions | <*:##NULL> |
4544 | haxxor | is | jsldkjfwjkflj | revisions | <*:##NULL> |
15944 | hbu | is | how about you | revisions | <*:##NULL> |
11298 | _head | is | `eval $_=`quote d `arg~~; /^\s*(\S+)\s/; $1~ Not Available |
revisions | <*:##NULL> |
5698 | head | is | http://www.paulgraham.com/head.html | revisions | <*:##NULL> |
10078 | headdesk | is | http://svpow.files.wordpress.com/2013/12/headdesk.gif | revisions | <*:##NULL> |
59 | headh | is | < headh> I do only what I have to to get my work done, I dont have time for researching althoug I want to | revisions | <*:##NULL> |
10760 | headless | is | any application which normally runs with a gui, but has been butchered so it can run as a library or cli. | revisions | <*:##NULL> |
5380 | heads or tails | is | flip a coin | revisions | <*:##NULL> |
7774 | heisenbug | is | http://en.wikipedia.org/wiki/Unusual_software_bug#Heisenbug - a bug that disappears when one attempts to debug it. | revisions | <*:##NULL> |
13124 | "hello" | is | “hello” | revisions | <*:##NULL> |
13103 | hello | is | Hi :) Have a look around! | revisions | <*:##NULL> |
6317 | hello ! i have a problem with perl debugging , i have a mistake information when i using padre debugging the source , the information | is | "Cannot determine source for /home/neo/桌面/t at /usr/share/perl/5.10/App/Prove.pm line 496" | revisions | <*:##NULL> |
13876 | hello there | is | General Kenobi | revisions | <*:##NULL> |
15592 | help | is | Don't ask to ask, just ask. | revisions | <freenode.net:##perl> |
8277 | help alias | is | [fact add an alias] Not Available |
revisions | <*:##NULL> |
4080 | help channel | is | We're a help channel. We've made a bunch of places you can get abused. This is just not one of them. | revisions | <*:##NULL> |
5438 | helper | is | cats are generally helpful on #perl | revisions | <*:##NULL> |
5395 | helpers | is | Helpers are handy people who answer your questions and demand no penance. Be nice to the Helpers! Lest they not be nice in return! | revisions | <*:##NULL> |
5055 | help for markup | is | http://diveintomark.org/archives/2003/05/05/why_we_wont_help_you | revisions | <*:##NULL> |
4851 | help on irc | is | http://workaround.org/moin/GettingHelpOnIrc | revisions | <*:##NULL> |
5494 | help triangle | is | code, expected, actual | revisions | <*:##NULL> |
13285 | helvetica | is | The Helvetica Scenario - https://www.youtube.com/watch?v=rqfSqUuo7Ms | revisions | <*:##NULL> |
4088 | he makes, in silence, a host of the address, and the competition | is | in the world. | revisions | <*:##NULL> |
8642 | hemanth | is | a critter of some sort | revisions | <*:##NULL> |
12803 | herding cats | is | http://myplace.frontier.com/~r.bond/cats/cats.htm | revisions | <*:##NULL> |
15313 | here | is | my regex and input | revisions | <*:##NULL> |
10325 | here-doc | is | look in perldoc perlop, under "Quote-Like Operators", look for "here-document" | revisions | <*:##NULL> |
13605 | heredoc | is | look in perldoc perlop, under "Quote-Like Operators" ( specifically: https://perldoc.pl/perlop#%3C%3CEOF ), http://xrl.us/bn76qn , http://en.wikipedia.org/wiki/Here_document . | revisions | <*:##NULL> |
4453 | here docs | is | here documents are arbitrary strings with style! http://www.shlomifish.org/lecture/Perl/Newbies/lecture4/string-forms/here_doc.html ; http://www.stonehenge.com/merlyn/UnixReview/col12.html | revisions | <*:##NULL> |
11011 | here would be no wraps. i also don't think this form for dereference | is | the most common one: $$site_config{hypnotoad_ip} | revisions | <*:##NULL> |
3674 | heuristic | is | Of course, this is a heuristic, which is a fancy way of saying that it doesn't work. -- mjd | revisions | <*:##NULL> |
8735 | heuristics | is | Of course, this is a heuristic, which is a fancy way of saying that it doesn't work. -- mjd | revisions | <*:##NULL> |
3623 | hey fag | is | Shouldn't you be somewhere raping young boys? | revisions | <*:##NULL> |
3597 | hey fag! | is | your mom! | revisions | <*:##NULL> |
8551 | hhfg | is | The Human Hacking Field Guide - http://www.shlomifish.org/humour/human-hacking/ - rindolf's novella about teenage open source hackers in modern-day Los Angeles. Features #perl. | revisions | <*:##NULL> |
13130 | hi | is | ~eval $a="~8ball hi, hello, meow, or END OF LINE!";$b="~fact ##NULL _corrupted_elmo!";if(rand()<0.025) {$b} else {$a}! END OF LINE |
revisions | <*:##NULL> |
5673 | hiding code | is | http://www.perlmonks.org/?node_id=779752 | revisions | <*:##NULL> |
431 | high | is | HIGH ON JEBUS | revisions | <*:##NULL> |
8043 | higher order perl | is | [fact hop] Not Available |
revisions | <*:##NULL> |
14986 | hills | is | THE HILLS ARE FUCKING ALIVE WITH THE SOUND OF YOUR WHINING | revisions | <*:##NULL> |
5463 | hink | is | hink offers flash / flex / air / actionscript help | revisions | <*:##NULL> |
11667 | [hireme] | is | Look for someone with [hireme] in their nick... add your name with the "hireme" command if you want people to harass you to do stuff for them...: rindolf, grncdr, Rand0, dhoss, scp1, QtPlatypus, f00li5h, simcop2387 | revisions | <*:##NULL> |
9354 | hireme | is | <fact [hireme] =~ s/$/, <arg &n>/> Not Available |
revisions | <*:##NULL> |
11676 | _hireme_hash | is | $hireme = { 'simcop2387' => 1 }; | revisions | <*:##NULL> |
8083 | hiretest | is | look for someone with [hireme] in their nick... add your name to the end of this factoid if you want people to harass you to do stuff for them...:f00li5h rindolf, grncdr Rand0 dhoss, scp1 | revisions | <*:##NULL> |
4809 | .hi.us | is | Hawaii | revisions | <*:##NULL> |
4657 | hive mind | is | perl | revisions | <*:##NULL> |
13105 | hiya | is | Hi :) Have a look around! | revisions | <*:##NULL> |
264 | .hk | is | .hk is Hong Kong | revisions | <*:##NULL> |
265 | .hm | is | .hm is Heard and McDonald Islands | revisions | <*:##NULL> |
9329 | hmm maybe the alot | is | better then | revisions | <*:##NULL> |
14570 | hmw_metalab: see the problem tho | is | that your example shows a different scenario | revisions | <*:##NULL> |
266 | .hn | is | .hn is Honduras | revisions | <*:##NULL> |
5253 | hnic: head nigger in charge | is | railbait | revisions | <*:##NULL> |
16057 | hny | is | https://en.wikipedia.org/wiki/Happy_New_Year_(disambiguation) | revisions | <*:##NULL> |
4733 | hobbs | is | silly hobbs | revisions | <*:##NULL> |
4053 | hobbs first album | is | venom in my emacs | revisions | <*:##NULL> |
4786 | hobgoblin | is | See: AD&D | revisions | <*:##NULL> |
478 | hold hand | is | We're not here to hold your hand. Do we look like tutorials? The docs always know the answer | revisions | <*:##NULL> |
3520 | homework | is | If you need help with your homework, hire a tutor. | revisions | <*:##NULL> |
5242 | honk | is | GumbyBRAIN: honk | revisions | <*:##NULL> |
5309 | hoop | is | hoop | revisions | <*:##NULL> |
61 | hoovooloo | is | a hyperintelligent shade of the color blue | revisions | <*:##NULL> |
5396 | hop | is | Higher Order Perl, http://hop.perl.plover.com/, download at http://hop.perl.plover.com/book/pdf/HigherOrderPerl.pdf | revisions | <*:##NULL> |
3811 | hor | is | der Coole | revisions | <*:##NULL> |
14385 | hornets | is | https://www.simcop2387.info/hornets.jpg | revisions | <*:##NULL> |
4783 | horse girl | is | Risha | revisions | <*:##NULL> |
15204 | horse girls | is | To a horse girl, you'll always be third in her heart. After her horses, and her daddy's money. | revisions | <*:##NULL> |
4535 | hor|zon | is | Hor|zon is my dog's name | revisions | <*:##NULL> |
4087 | host a www.l.google.com | is | www.l.google.com has address 72.14.203.99 :: www.l.google.com has address 72.14.203.104 | revisions | <*:##NULL> |
9044 | hosting | is | IF YOU ARE A WEBHOST WITH NON-RETARDED PERL HOSTING, STICK YOUR NAME AT THE END SO WE CAN PLUG YOU TO USERS WITH PESKY WEHBOSTING: | revisions | <*:##NULL> |
5085 | hostname | is | 'use Sys::Hostname; my $hostname = hostname(); $hostname =~ s/\..*$// if $hostname =~ /\./;' | revisions | <*:##NULL> |
15992 | hotdaemon | is | https://i.imgur.com/TM2WxKu.jpg | revisions | <*:##NULL> |
4408 | hot girl | is | _Neavaeh_ is the hottest and smartest girl EVER! | revisions | <*:##NULL> |
3713 | house | is | http://xrl.us/fir3/ | revisions | <*:##NULL> |
11926 | how | are | your | revisions | <*:##NULL> |
14752 | how, | am | i lucky then | revisions | <*:##NULL> |
5160 | how are you | is | I have a pain in all the diodes down my left side. | revisions | <*:##NULL> |
3315 | how are you feeling? | is | Great, how about you? | revisions | <*:##NULL> |
14680 | how come on regex site said no match but on jupyter say it | is | match? | revisions | <*:##NULL> |
10762 | how do we know that money isnt | being | fed into perl6 ?? :) | revisions | <*:##NULL> |
3631 | how do you feel | is | I feel better now. | revisions | <*:##NULL> |
14388 | howdy | is | https://usercontent.irccloud-cdn.com/file/RpoVrFPl/image.png | revisions | <*:##NULL> |
5497 | how goes it | is | don't talk to mofino | revisions | <*:##NULL> |
9876 | how good | are | u at perl? | revisions | <*:##NULL> |
5612 | how long or how easy | is | perl. can you give me the idea? | revisions | <*:##NULL> |
4075 | how much | is | 6500 rupees in us dollars? | revisions | <*:##NULL> |
8197 | how not to get help from #perl | is | <rallias> apeiron: I don't send the spam myself. I just sell the list. | revisions | <*:##NULL> |
4727 | how the hell about that... there | is | a | revisions | <*:##NULL> |
4081 | how to | is | http://www.wsu.edu/~brians/errors/howto.html | revisions | <*:##NULL> |
477 | how to ask smart questions | is | How To Ask Questions The Smart Way - http://www.catb.org/~esr/faqs/smart-questions.html | revisions | <*:##NULL> |
5115 | how to fix ugly code | is | Delete the ugliest line. Repeat until your code is no longer ugly. | revisions | <*:##NULL> |
10306 | how to get help | is | How to Get Help Online (2013 ed.) - http://www.shlomifish.org/philosophy/computers/how-to-get-help-online/2013.html - search engines, IRC, Stack Exchange (Stackoverflow/etc.), mailing lists/web-forums . | revisions | <*:##NULL> |
5118 | how to not get help from #perl | is | <steveoliver> shut up, monkey. just help me. what else are you here for? | revisions | <*:##NULL> |
4051 | how to parse html with regex | is | 405 Method Not Allowed | revisions | <*:##NULL> |
3432 | how to seem smart | is | <apeiron> "@buzzwords\n"; | revisions | <*:##NULL> |
3682 | how to spell potato | is | ghoughpteighbteau is the spelling for potato. P as in hiccough; O as in though; T as in ptomaine; A as in neigh; T as in debt; O as in bureau... ghoughpteighbteau! | revisions | <*:##NULL> |
3465 | howto write good perl programs | is | at http://pedro.larroy.com/devel/perl/ | revisions | <*:##NULL> |
9562 | how to write perl without knowing perl | is | rentacoder.com, freelancer.com, elance.com, scriptlance.com, etc | revisions | <*:##NULL> |
267 | .hr | is | .hr is Croatia (Hrvatska) | revisions | <*:##NULL> |
3958 | hrm. | is | I hate EvanCarroll | revisions | <*:##NULL> |
3957 | hrm. i got my tank gallery up as a real bitch | is | the little swap button. | revisions | <*:##NULL> |
4505 | hs | is | High School | revisions | <*:##NULL> |
268 | .ht | is | .ht is Haiti | revisions | <*:##NULL> |
3923 | htaccess | is | http://www.javascriptkit.com/howto/htaccess.shtml | revisions | <*:##NULL> |
14502 | html | is | Don't parse or modify html with regular expressions! See Mojo::DOM or HTML::TreeBuilder or suchlike. For a Feb-2014 coverage of main techniques see: http://is.gd/4FwOKu . If your response includes "that's overkill. i only want to..." you are wrong. http://enwp.org/Chomsky_hierarchy and http://is.gd/Yk3uww for why not to use regex on HTML. | https://pbs.twimg.com/media/CgjfnfeW0AA0G5h.jpg | revisions | <*:##NULL> |
4439 | html dog | is | HTML Dog's XHTML and CSS Tutorials - http://www.htmldog.com/ | revisions | <*:##NULL> |
11314 | htmleval | is | `eval use Mojo::DOM; use Mojo::DOM::CSS; $htmlraw = `quote d `get `fact _head `arg~~ .*~ ~; $html = Mojo::DOM->new($htmlraw)`fact _tail `arg~~ ~ Not Available |
revisions | <*:##NULL> |
11310 | htmleval: | is | [fact htmleval [arg]] Not Available |
revisions | <*:##NULL> |
8425 | html form | is | CPAN modules for handling HTML forms - HTML::Widget, CGI::FormBuilder, Rose::HTML::Form, HTML::FormFu, Data::FormValidator, Form::Processor, Form::Sensible | revisions | <*:##NULL> |
12160 | html parsers | is | See Mojo::DOM, or HTML::Parser, and its subclasses: HTML::TokeParser, HTML::TokeParser::Simple, HTML::TreeBuilder, HTML::TableExtract, etc. | revisions | <*:##NULL> |
9014 | html regex | is | http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454#1732454 | revisions | <*:##NULL> |
4337 | html tutorial | is | http://www.htmldog.com/ | revisions | <*:##NULL> |
4294 | htp://www.positioniseverything.net/explorer.html | is | ;google CSS Internet Explorer bug | revisions | <*:##NULL> |
12783 | http | is | HTTP::Tiny, LWP::UserAgent, non-blocking capable: Mojo::UserAgent, Net::Async::HTTP | revisions | <*:##NULL> |
10476 | http 503 | is | 503 Service Unavailable - No server is available to handle your request | revisions | <*:##NULL> |
11121 | http async | is | Don't use forks or threads for concurrent requests, use an event loop. See Mojo::UserAgent, Net::Async::HTTP, or POE::Component::Client::HTTP | revisions | <*:##NULL> |
13917 | http bench | is | Apache Bench (old) or http://www.joedog.org/siege-home/ or https://code.google.com/p/bonesi/ or packet capture and tcpreplay | http://tsung.erlang-projects.org/ | https://github.com/httperf/httperf | https://jmeter.apache.org/ | revisions | <*:##NULL> |
11119 | http client | is | HTTP::Tiny, LWP, WWW::Mechanize, Mojo::UserAgent, Net::Async::HTTP, cURL, wget (and bindings) | revisions | <*:##NULL> |
10784 | http clients | is | HTTP::Tiny, LWP, WWW::Mechanize, Mojo::UserAgent, cURL, wget (and bindings) | revisions | <*:##NULL> |
12784 | http comparison | is | http://neilb.org/reviews/http-requesters.html | revisions | <*:##NULL> |
4409 | http://demo.plainblack.com | is | demo | revisions | <*:##NULL> |
12391 | https | is | http://search.mcpan.org/src/GAAS/libwww-perl-5.834/README.SSL. If you have warnings on lwp6+ about Peer Cert not verified, install Mozilla::CA and/or export PERL_LWP_SSL_VERIFY_HOSTNAME=0 | revisions | <*:##NULL> |
15476 | httpwtf | is | https://httptoolkit.tech/blog/http-wtf/ | revisions | <*:##NULL> |
4344 | http://www.shlomifish.org/lecture/perl/newbies/ | is | my tutorial. | revisions | <*:##NULL> |
3644 | http://www.sqlcourse.com | is | SQL | revisions | <*:##NULL> |
269 | .hu | is | .hu is Hungary | revisions | <*:##NULL> |
3257 | hubris | is | Excessive pride, the sort of thing Zeus zaps you for. Also the quality that makes you write (and maintain) programs that other people won't want to say bad things about. [Also, the thing that makes you write programs to do something that's already been done, because you believe you can do it better --- Wim.] Hence, the third great virtue of a programmer. | revisions | <*:##NULL> |
9289 | huf | is | he'll huff, he'll puff, and he'll blow your house down | revisions | <*:##NULL> |
13936 | human heart | is | https://www.simcop2387.info/humanheart.mp4 | revisions | <*:##NULL> |
7999 | humans | are | stupid monkeys | revisions | <*:##NULL> |
4241 | humbug! | is | frogbot: bah | revisions | <*:##NULL> |
3261 | humility | is | The opposite of hubris. | revisions | <*:##NULL> |
13888 | hunter2 | is | http://bash.org/?244321 | revisions | <*:##NULL> |
12790 | hurry | is | http://assets.amuniversal.com/3733ddd085bd01302913001dd8b71c47 | revisions | <*:##NULL> |
3719 | husking | is | what happens when you got to nebraska, because there is nothing else to do. at all. | revisions | <*:##NULL> |
4016 | hype | is | Overhyped Prototypes - http://library.n0i.net/programming/perl/articles/fm_prototypes/ | revisions | <*:##NULL> |
9676 | hyperpolyglot | is | http://hyperpolyglot.org/scripting | revisions | <*:##NULL> |
8145 | hyphen | is | http://xkcd.com/37/ | revisions | <*:##NULL> |
4576 | hypomania | is | Hypomania - http://en.wikipedia.org/wiki/Clinical_depression#Hypomania | revisions | <*:##NULL> |
488 | hypothetical code | is | <user> hi my code doesn't work <us> what is it <user> I'm doing X <us> That won't work <user> That's OK, my code is actually Y | revisions | <*:##NULL> |
487 | hypothetical code <user> hi my code doesn't work <us> what | is | it <user> I'm doing X <us> That won't work <user> That's OK, my code is actually Y | revisions | <*:##NULL> |
8140 | i18n | is | the dumbest abbreviation ever | internationalization ( http://enwp.org/i18n ) | revisions | <*:##NULL> |
4327 | i already knew about 'kastol'. | is | serfbot: !learn kastol :starts: with k | revisions | <*:##NULL> |
14207 | i also love how that patch | was | self-reviewed. | revisions | <*:##NULL> |
8792 | ianal | is | short for I Am Not A Lawyer | revisions | <*:##NULL> |
9241 | iank | is | no fun | revisions | <*:##NULL> |
3773 | iaq | is | http://perl.plover.com/IAQ/IAQlist.html | revisions | <*:##NULL> |
4813 | .ia.us | is | Iowa | revisions | <*:##NULL> |
9927 | i been playing with ipv6 all day i have converted my entire lan to ipv6, transitions between 6 and 4 | are | statically assigned at present if anyone mentions a 6 the automatic previous version | revisions | <*:##NULL> |
4468 | ic | is | "ic" means "integrated circuit". Perhaps you meant "I see"? | revisions | <*:##NULL> |
9984 | i care, because my pantry | is | not insulated | revisions | <*:##NULL> |
8420 | icbwihb | is | I Could Be Wrong; It's Happened Before | revisions | <*:##NULL> |
5201 | icke | is | not a kitty. | revisions | <*:##NULL> |
6077 | icke's law | is | it'll grow larger than you think, even taking into account icke's law | revisions | <*:##NULL> |
14373 | i could see that | being | useful for ol' | revisions | <*:##NULL> |
8393 | i could've sworn there | was | a # | revisions | <*:##NULL> |
10023 | icrxhtqllhlo | was | perlbot: qkqjjrphsqjm foal Not Available |
revisions | <*:##NULL> |
270 | .id | is | .id is Indonesia | revisions | <*:##NULL> |
4187 | id | is | see iot | revisions | <*:##NULL> |
15295 | ide | is | VS Code https://code.visualstudio.com/ , GNU Emacs, gvim, TextMate, Sublime Text (and definitely not Xcode), Komodo, Eclipse (with EPIC), Intellij IDEA with Camelcade, KDevelop, UNIX. Also see http://perl-begin.org/IDEs-and-tools/Perl_developer_tools/ | Maybe check out Atom editor also https://atom.io/ | revisions | <*:##NULL> |
10085 | idea | is | http://i.imgur.com/xVyoSl.jpg | revisions | <*:##NULL> |
475 | ideas | is | sorry, we're fresh out of ideas for today | revisions | <*:##NULL> |
9758 | idea why it's in here, unless preflex | was | built on | revisions | <*:##NULL> |
16088 | iderik | is | iderik han blev mördad av ett rött litet q | revisions | <*:##NULL> |
14829 | ides | is | [fact IDE [arg]] Not Available |
revisions | <*:##NULL> |
8854 | idgi | is | I Don't Get It | revisions | <*:##NULL> |
4341 | idiotcgi | is | Idiot's Guide to CGI in Perl is http://www.webdeveloper.com/cgi-perl/ | revisions | <*:##NULL> |
3842 | idiots | is | #python | revisions | <*:##NULL> |
5659 | idiot's guide | is | http://www.perl.com/doc/FAQs/cgi/idiots-guide.html | revisions | <*:##NULL> |
10000 | i don't know | is | Third base! | revisions | <*:##NULL> |
4647 | i don't want to use modules | is | /join #python | revisions | <*:##NULL> |
4810 | .id.us | is | Idaho | revisions | <*:##NULL> |
13 | idw | is | "It doesn't work" or any relatives is very vague and totally useless information. When reporting a problem let people know what is the expected result and what is the result you are actually getting | revisions | <*:##NULL> |
7785 | .ie | is | Ireland | revisions | <*:##NULL> |
4311 | ie | is | non standards-compliant, buggy, evil little browser. a pox on it. Let's get together and destroy every copy of it. | revisions | <*:##NULL> |
4323 | ie4linux | is | http://www.tatanka.com.br/ies4linux/index-en.html | revisions | <*:##NULL> |
4293 | iebug | is | ;google CSS Internet Explorer bug | revisions | <*:##NULL> |
4317 | ie double | is | http://plone.org/documentation/how-to/ie-double-margin-bug | revisions | <*:##NULL> |
4308 | ie filters | is | http://msdn.microsoft.com/library/default.asp?url=/workshop/author/filter/filters.asp | revisions | <*:##NULL> |
4306 | ie fixed hack | is | http://annevankesteren.nl/2004/07/fixed-positioning | revisions | <*:##NULL> |
3906 | if anyone | is | a liar is | revisions | <*:##NULL> |
8072 | iflakoa | is | I find long acronyms kind of annoying | revisions | <*:##NULL> |
8898 | i forgot to say that i | was | going to include the new add.gif for Spanish :) | revisions | <*:##NULL> |
10559 | ifrta | is | I first read that as | revisions | <*:##NULL> |
10634 | if the router's ethernet "switches" | are | alive when it's wireless isn't, then I could plug a cheap Wireless Access Point into one of them. | revisions | <*:##NULL> |
5699 | igb? | is | Is Google Broken? | revisions | <*:##NULL> |
4047 | ignorance | is | Never use ignorance as a reason not to learn something. | revisions | <*:##NULL> |
8111 | ignore | is | <echo> Not Available |
revisions | <*:##NULL> |
5189 | i hate you | is | damn right, bitch | revisions | <*:##NULL> |
3551 | i hate you perlbot | is | Well fuck you too :-( | revisions | <*:##NULL> |
3734 | i have no pants | is | I wear long pants. I'm a long pants man. | revisions | <*:##NULL> |
11056 | ihbt | is | I have been trolled. | revisions | <*:##NULL> |
5233 | i hug you | is | <3 | revisions | <*:##NULL> |
409 | iirc | is | If I Remember Correctly | revisions | <*:##NULL> |
15606 | iirc, it has to do with how much power can be devoted to weapon why so much of it | is | being used to generate the cloaking field or something like that | revisions | <*:##NULL> |
3470 | iirht | is | If I Really Had To | revisions | <*:##NULL> |
4126 | iis | is | blasphemy | revisions | <*:##NULL> |
11319 | i just need | is | [fact I just want] Not Available |
revisions | <*:##NULL> |
7864 | i just want | is | Anyone who ever says "I just want to" has usually massively misunderstood the complexity of the problem they're trying to solve | revisions | <*:##NULL> |
9724 | ik | is | number 2 | revisions | <*:##NULL> |
10856 | ikiwiki | is | https://en.wikipedia.org/wiki/Ikiwiki - a cool wiki/etc. engine written in Perl 5 which uses a VCS backend (e.g: git) and can be used online or offline. | with hosting at https://www.branchable.com/ | revisions | <*:##NULL> |
11561 | i know what perl.bot | will be | if i can manage to get it. a url shortener and possibly archive layer for all urls in | revisions | <*:##NULL> |
6168 | i know you | are | but what am i? | revisions | <*:##NULL> |
10613 | ik's a dork | is | https://twitter.com/marmel/status/489798600474386432 | revisions | <*:##NULL> |
9750 | ik's twitter handle | is | porkfriedmice | revisions | <*:##NULL> |
271 | .il | is | .il is Israel | revisions | <*:##NULL> |
4413 | ill | is | "ill" means "sick". Perhaps you meant "I'll" or "I will". | revisions | <*:##NULL> |
15930 | i'll fix that later, it | was | a way to browse all the content in | revisions | <*:##NULL> |
12392 | illguts | is | 'PerlGuts Illustrated' http://search.mcpan.org/dist/illguts/ | revisions | <*:##NULL> |
10885 | illusion of knowledge | is | "The greatest enemy of knowledge is not ignorance, it is the illusion of knowledge" - Daniel J Boorstin | revisions | <*:##NULL> |
14704 | ilmari, it | is | user beware, if you use it and it does not work fallback to a manual -j value | revisions | <*:##NULL> |
3572 | i love buu theory | is | The theory is that jkauffman loves buu. | revisions | <*:##NULL> |
5384 | i love talking to you | is | I hate you, leave me alone | revisions | <*:##NULL> |
480 | i love you | is | leave me alone | revisions | <*:##NULL> |
14992 | i love you dr. zaius | is | I finally made a monkey out of you. | revisions | <*:##NULL> |
4811 | .il.us | is | Illinois | revisions | <*:##NULL> |
4486 | im | is | im means "instant message". If you mean "I'm" or "I am", please say that | revisions | <*:##NULL> |
8746 | imagemagick | is | an image library, use Imager instead unless you want to waste time recompiling without OpenMP, enjoy cleaning up stray files left over in /tmp, marvel at the profligacy of a library which thinks disk is "the right place" to store raw pixel data after decoding the image, and take pleasure in watching the I::M code drift off into an infinite loop due to some oddity in the image data. | revisions | <*:##NULL> |
4905 | i'm all outa coins | is | GAME OVER | revisions | <*:##NULL> |
11288 | imap | is | Mail::IMAPClient, Net::IMAP::Client, or for async, Net::Async::IMAP::Client | revisions | <*:##NULL> |
11290 | imapd | is | Net::IMAP::Server, or for async, Net::Async::IMAP::Server | revisions | <*:##NULL> |
4083 | i'm bored | is | Get something to do! Make a new perl project! Can't be that hard! If you don't want to, just start, you'll find something else later. Have fun :) | revisions | <*:##NULL> |
8407 | ime | is | In My Experience | revisions | <*:##NULL> |
10992 | i mean crete a function which | is | like | revisions | <*:##NULL> |
13101 | i mean, in terms of probability, there has | to be | a way to crash | revisions | <*:##NULL> |
4691 | immute | is | broken. | revisions | <*:##NULL> |
14697 | i'm not even quite sure it's a well defined question. | Are | you talking physical CPU chips, or virtual cores? I.e. questions of HT, etc.. come to mind | revisions | <*:##NULL> |
4612 | i'm not sure, | is | it larger than a breadbox? | revisions | <*:##NULL> |
7963 | imnsho | is | "In my not so humble opinion" | revisions | <*:##NULL> |
3706 | .imp | is | Galactic Empire | revisions | <*:##NULL> |
3256 | impatience | is | The quality that makes you go to great effort to reduce overall energy expenditure. It makes you write labor-saving programs that other people will find useful, and document what you wrote so you don't have to answer so many questions about it. Hence, the first great virtue of a programmer. | revisions | <*:##NULL> |
8038 | import | is | Importing symbols from a different package. See export. | revisions | <*:##NULL> |
5147 | imran^_^ | is | A programer, animator, guitarist, etc.... | revisions | <*:##NULL> |
3690 | i'm sure he | is | missing the content-type thingy. | revisions | <*:##NULL> |
7949 | i'm sure this | is | going to become a factoid. | revisions | <*:##NULL> |
272 | .in | is | .in is India | revisions | <*:##NULL> |
16118 | in an updated version of tng's chain of command, where captain picard | is | being interrogated by a Gul Madred, who is constantly checking his social media. He turns his pad around for the captain to see. M:"How many likes do you see here?" P:"I see four likes." M:"No, there are five. Are you quite sure?" P:"There are four likes." M:" | revisions | <*:##NULL> |
9699 | in any case, i don't see how your criticism against wikipedia | is | different from that of other Encyclopædias. | revisions | <*:##NULL> |
10791 | @inc | is | To change @INC (perldoc perlvar), 'use lib' (perldoc lib), or use the -I option to perl (perldoc perlrun), or set the PERLLIB or PERL5LIB environment variables (perldoc perlrun), or recompile perl. See also local::lib for making installing modules to a custom @INC easier | revisions | <*:##NULL> |
8984 | include | is | PHP-like includes in Perl are not supported. put your code into a package and use it... perldoc perlmod, perldoc perlnewmod, perldoc -f use | revisions | <*:##NULL> |
4557 | incoming | is | ftp://pause.perl.org/incoming | revisions | <*:##NULL> |
8636 | inconceivable | is | I do not think it means what you think it means. | revisions | <*:##NULL> |
8050 | indent | is | see indentation. | revisions | <*:##NULL> |
8049 | indentation | is | Format your code nicely - see http://en.wikipedia.org/wiki/Indent_style | revisions | <*:##NULL> |
11679 | indirect | is | always use Foo->new(...) instead of new Foo, the latter is Indirect Object Syntax and discouraged. see 'perldoc perlobj' for official caveats and http://ow.ly/QMTWl for mst's explanation and how to use 'no indirect' to catch this mistake | http://markmail.org/message/o7d5sxnydya7bwvv | revisions | <*:##NULL> |
9705 | indirection | is | http://en.wikipedia.org/wiki/Indirection - “All problems in computer science can be solved by adding another level of indirection.” — David Wheeler (R.I.P, not David A. Wheeler or David E. Wheeler). | revisions | <*:##NULL> |
15972 | i need regex for this | IS | ANYONE CAN HELP? | revisions | <*:##NULL> |
3759 | inf | is | a REAL REAL BIGASS number | revisions | <*:##NULL> |
3424 | infinite loop | is | See loop, infinite | revisions | <*:##NULL> |
9571 | infinite recursion | is | No factoid found. Did you mean one of these: [infinite recursion] | revisions | <*:##NULL> |
415 | infrequently asked questions | is | Infrequently Asked Questions About Perl - http://perl.plover.com/IAQ/ | revisions | <*:##NULL> |
15756 | ing perl | as | what | revisions | <*:##NULL> |
12223 | ingy | is | http://cdn.mos.cms.futurecdn.net/3NBcHNbymxJMMEVWLZVdr7.jpg | revisions | <*:##NULL> |
14744 | initally i | was | trying this, (.*,(?=\s*).*),(.*,(?=\s*).*) but doesn't seems good | revisions | <*:##NULL> |
9146 | initself | is | the technical term for a moron who wastes 5 hours because they don't read docs carefully | terminal case of nts | wrapcgi | revisions | <*:##NULL> |
6090 | initself signal to noise ratio | is | terrible | revisions | <*:##NULL> |
10560 | inlhtr | is | I never learned how to read! | revisions | <*:##NULL> |
14661 | inline | is | Embed other languages in Perl - http://metacpan.org/release/Inline ; Inline::C is somewhat more convenient than XS. | See also Inline::Module and FFI::Platypus::Bundle to ship C code that will be built on installation. | revisions | <*:##NULL> |
5050 | innocuous | is | innocuous is all funkyish and unpredictable | revisions | <*:##NULL> |
4729 | inop | is | Just because some random piece of software was written in Perl doesn't mean we know anything about it. Read the documentation and talk to the authors. | revisions | <*:##NULL> |
13987 | inotify | is | http://p3rl.org/Linux::Inotify2 | revisions | <*:##NULL> |
4776 | insanity | is | The definition of insanity is doing the same thing over and over and expecting different results. | revisions | <*:##NULL> |
3279 | insides | is | check out my insides: http://chrisangell.com/incoming/chrisbot/v3 | revisions | <*:##NULL> |
8736 | in soviet russia | is | joke is tired of you | revisions | <*:##NULL> |
9975 | install cpanm | is | curl -L http://cpanmin.us | perl - --sudo App::cpanminus | revisions | <*:##NULL> |
5791 | installed | is | To check if something is installed, use perl -MMod::Name\ 999 ( perl "-MMod::Name 999" on Windows ) or see perldoc -q installed | revisions | <*:##NULL> |
4122 | installed modules | is | perldoc perllocal or use ExtUtils::Installed. Check http://xrl.us/k8fc for further details. | revisions | <*:##NULL> |
8561 | install module | is | to install stuff, either use wget -O- cpanmin.us | perl - <moduleanme>, cpan <modulename> or install it from your package manager | revisions | <*:##NULL> |
12112 | install my modules | is | perl -MExtUtils::Installed -E 'say for ExtUtils::Installed->new(inc_override => [qw!/home/YOURHOME/perl5/lib/perl5/!])->modules();' | cpanm --reinstall | revisions | <*:##NULL> |
4546 | .int | is | .int is International Organization | revisions | <*:##NULL> |
16153 | int | is | Math::BigInt | revisions | <*:##NULL> |
15965 | intavg | is | `eval use POSIX "floor"; $s=$c=0; for (`arg d'=~/([-+.0-9A-Za-z]+)/g) { $s+=$_;$c++; } floor($s/$c);' -7 |
revisions | <*:##NULL> |
9434 | integer overflow | is | when printf"%d", 5914374812 doesn't print what you expect. Check the limits with `perl -V|grep int` and `perl -MPOSIX -le'print for SHRT_MAX, INT_MAX, LONG_MAX, FLT_MAX, DBL_MAX'`. perldoc bigint or see CPAN for other options. | revisions | <*:##NULL> |
4503 | integral | is | And the perl stud spoketh "And lo, the sky fell and the channel was painted purple." | revisions | <*:##NULL> |
3329 | integrate | is | Get the answer from integral, the Master Perl-a-lator | revisions | <*:##NULL> |
13118 | intel | is | The S in Intel stands for security. https://i.redd.it/2xyoxg8hl1801.png | revisions | <*:##NULL> |
6042 | interface | is | I don't care how a light switch works. I just know that if I press the button the light comes on | revisions | <*:##NULL> |
3394 | internal server error | is | Okay, that's nice. What do the server error logs say? | revisions | <*:##NULL> |
5358 | interrupting cow | is | INTERRUPTING COW! MOOOOOO! | revisions | <*:##NULL> |
11236 | inversion of control | is | IOC, Bread::Board, Beam::Wire | revisions | <*:##NULL> |
4488 | invisiblegh0st | is | [see whiteghost] | revisions | <*:##NULL> |
6084 | in what section might i look for an explanation of this idiosyncratic use of shift. i know what shift/unshift | is | in general, but I can't rationalize to myself this particular and evidently common use | revisions | <*:##NULL> |
11836 | "in which pointers to the actual values | are | stored in a C array" | revisions | <*:##NULL> |
273 | .io | is | .io is British Indian Ocean Territory | revisions | <*:##NULL> |
9290 | io | is | http://en.wikipedia.org/wiki/Input/output | revisions | <*:##NULL> |
14822 | io-all | is | Ingy's module for all-in-one-input/output. Somewhat too magical, quirky/buggy and bloated. Try using Path::Tiny instead. Also see slurp and https://perl-begin.org/topics/files-and-directories/ | revisions | <*:##NULL> |
12393 | io-async | is | Perform asynchronous filehandle IO and other operations - http://search.mcpan.org/perldoc?IO::Async | revisions | <*:##NULL> |
14816 | io::async | is | nice and future-centric | revisions | <*:##NULL> |
10114 | ioccc | is | Internaltional Obfuscated C Code Contest. | revisions | <*:##NULL> |
13955 | ionic: your exit | is | doing things to | revisions | <*:##NULL> |
4232 | "i only listen to my boss, dazjorz!" | is | Dazbot moo | revisions | <*:##NULL> |
4094 | ioo | is | Inside Out Object | revisions | <*:##NULL> |
12152 | io::select | is | the CGI.pm of event-handling. And not in a good way. | <LeoNerd> It's terrible. The API shape is stupid; even if it was a sensible shape it's still very low-level. You don't want to be bothering with such low-level detail | revisions | <*:##NULL> |
10648 | io::socket | is | a utility class for writing IRC clients | revisions | <*:##NULL> |
12348 | iot | is | see id | IoT - Internet of Things. The S in IoT is for security | revisions | <*:##NULL> |
4078 | iow | is | in other words | revisions | <*:##NULL> |
16178 | ip | is | internet protocol or intellectual property or the book, Intermediate Perl | revisions | <*:##NULL> |
3339 | ip address regex | is | Look at Regexp::Common | revisions | <*:##NULL> |
15919 | ipc | is | perldoc -f open, perldoc perlopentut, perldoc perlipc . Also see: https://perl-begin.org/uses/multitasking/ . | revisions | <*:##NULL> |
9265 | ipc::open2 | is | use IPC::Open2; my $fh_out; my $fh_in; my $pid = open2($fh_out, $fh_in, 'ls', '-l'); waitpid($pid, 0); | revisions | <*:##NULL> |
8232 | ipc::run | is | use IPC::Run 'run'; my $stdin = "Input"; my $exitstatus = run [ $command, @args ], \$stdin, \my $stdout, \my $stderr; | revisions | <*:##NULL> |
9440 | ipc::run select | is | upgrade to 0.92_01 or later, or apply https://rt.cpan.org/Ticket/Display.html?id=59775 to resolve select()/EINTR issues with IPC::Run | revisions | <*:##NULL> |
3615 | ip regex | is | Search cpan for Regexp::Common and use its net regexes | revisions | <*:##NULL> |
5234 | i put on my robe and wizard hat | is | son of a bitch, i told you not to talk to me anymore | revisions | <*:##NULL> |
11159 | ipv4 | is | `eval `fact _ipv4_startup~;$d=q{`fact _ipv4_json~};$h=decode_json $d;sub sx{local$_;($t4,$d)=@_;$_=2*int($t4*128-($m*$d/675));1 while s/^(\d+)(\d{3})/$1,$2/;$_};"IPv4 Addresses: ".join(" ",(map{(uc $_.": ".sx($h->{$_."24s"},$h->{$_."24delta"}))." (".$h->{$_."Percent"}."%)"}qw/arin apnic afrinic ripe lacnic/))." http://bit.ly/1kwnn1a"~ IPv4 Addresses: ARIN: 0 (0.0%) APNIC: 2,876,312 (0.3%) AFRINIC: 1,320,016 (1.1%) RIPE: 0 (0.0%) LACNIC: 1,024 (0.0%) http://bit.ly/1kwnn1a |
revisions | <*:##NULL> |
10996 | _ipv4_json | is | <get http://ipv6.he.net/exhaustionFeed.php?platform=json /*> {"v6DomainsPerDay":1440,"exhaustionDate":"2011-02-03","depletedRIRs":{"apnic":1,"arin":2,"ripe":2},"totalTLDs":"1547","v6TLDs":"1521","totalASNs":"58955","v6ASNs":"13993","v6NS":154606,"v6Domains":"10374474","afrinic24s":"5157","afrinicPercent":"1.1","apnic24s":"11239","apnicPercent":"0.3","arin24s":0,"arinPercent":"0.0","lacnic24s":"4","lacnicPercent":"0.0","ripe24s":0,"ripePercent":"0.0","afrinic24delta":"1.767","apnic24delta":"8.802","arin24delta":0,"lacnic24delta":0,"ripe24delta":0,"apnicDepletion":1,"arinDepletion":1,"ripeDepletion":1,"lacnicDepletion":1} |
revisions | <*:##NULL> |
11157 | _ipv4_startup | is | use JSON;@lt=gmtime(time-7*3600);$m=($lt[2]*60+$lt[1])*60+$lt[0]; | revisions | <*:##NULL> |
5588 | ipv6 | is | an entire ipv4 internet of ipv4 internets! | revisions | <*:##NULL> |
64 | ipv6 howto | is | The Linux IPv6 HOWTO is at http://tldp.org/HOWTO/Linux+IPv6-HOWTO/ | revisions | <*:##NULL> |
14 | ipv6howto | is | The Linux IPv6 HOWTO is at http://tldp.org/HOWTO/Linux+IPv6-HOWTO/ | revisions | <*:##NULL> |
65 | ipv6 rdns | is | BIND8+ tool for building an IPv6 zone file: http://tools.fpsn.net/ipv6-inaddr/ | revisions | <*:##NULL> |
15 | ipv6rdns | is | BIND8+ tool for building an IPv6 zone file: http://tools.fpsn.net/ipv6-inaddr/ | revisions | <*:##NULL> |
274 | .iq | is | .iq is Iraq | revisions | <*:##NULL> |
275 | .ir | is | .ir is Iran | revisions | <*:##NULL> |
15940 | ir | is | https://en.wikipedia.org/wiki/Intermediate_representation | revisions | <*:##NULL> |
4412 | irated | is | a pirate of O'Reilly books | revisions | <*:##NULL> |
13578 | irc | is | Don't parse IRC with regex! See Bot::BasicBot (and Bot::BotBasic::Pluggable), POE::Component::IRC, Net::Async::IRC, Mojo::IRC, or Parse::IRC. Avoid Net::IRC. | http://xkcd.com/1782/ | If you must use TCP directly, take a look at POE::Filter::IRC or Parse::IRC for parsing. | revisions | <*:##NULL> |
11817 | irc bot | is | [fact irc] Don't parse IRC with regex! See Bot::BasicBot (and Bot::BotBasic::Pluggable), POE::Component::IRC, Net::Async::IRC, Mojo::IRC, or Parse::IRC. Avoid Net::IRC. | http://xkcd.com/1782/ | If you must use TCP directly, take a look at POE::Filter::IRC or Parse::IRC for parsing. |
revisions | <*:##NULL> |
11816 | ircbot | is | [fact irc] Not Available |
revisions | <*:##NULL> |
10224 | irc channels | is | irc://chat.freenode.net/perl and irc://irc.perl.org/perl-help are good places to ask for perl help. | revisions | <*:##NULL> |
15332 | irc flooder | is | * simcop2387 has quit (Excess Flood) | revisions | <*:##NULL> |
4139 | irl | is | In Real Life | revisions | <*:##NULL> |
7836 | ironpython | is | <see python> AKA a usable BASIC for .NET | revisions | <*:##NULL> |
13257 | irony | is | pingu8> idk, you're starting to sound like a conspiracy theorist | revisions | <*:##NULL> |
12279 | irresistible target | is | https://youtu.be/YP9PizYicxY?t=420 | revisions | <*:##NULL> |
10558 | irta | is | I read that as | revisions | <*:##NULL> |
4941 | irule 1 | is | Do not talk about /b/ (Only applies to raids.) | revisions | <*:##NULL> |
4950 | irule 10 | is | If you enjoy any rival sites—DON'T. | revisions | <*:##NULL> |
4951 | irule 11 | is | You must have pictures to prove your statement. | revisions | <*:##NULL> |
4952 | irule 12 | is | Lurk moar—it's never enough. | revisions | <*:##NULL> |
4953 | irule 13 | is | Nothing is Sacred. | revisions | <*:##NULL> |
4954 | irule 14 | is | Do not argue with a troll—it means that they win. | revisions | <*:##NULL> |
4955 | irule 15 | is | The more beautiful and pure a thing is, the more satisfying it is to corrupt it. | revisions | <*:##NULL> |
4956 | irule 16 | is | There are NO girls on the internet. | revisions | <*:##NULL> |
4957 | irule 17 | is | A cat is fine too. | revisions | <*:##NULL> |
4958 | irule 18 | is | One cat leads to another. | revisions | <*:##NULL> |
4959 | irule 19 | is | The more you hate it, the stronger it gets. | revisions | <*:##NULL> |
4942 | irule 2 | is | Do NOT talk about /b/ (eBaums did it.) | revisions | <*:##NULL> |
4960 | irule 20 | is | It is delicious cake. You must eat it. | revisions | <*:##NULL> |
4961 | irule 21 | is | It is a delicious trap. You must hit it. | revisions | <*:##NULL> |
4962 | irule 22 | is | /b/ sucks today. | revisions | <*:##NULL> |
4963 | irule 23 | is | Cock goes in here. | revisions | <*:##NULL> |
4964 | irule 24 | is | You will never have sex. | revisions | <*:##NULL> |
4965 | irule 25 | is | Question Mark Question Mark Question Mark Question Mark | revisions | <*:##NULL> |
4966 | irule 26 | is | PROFIT! | revisions | <*:##NULL> |
4967 | irule 27 | is | It needs more Desu. No exceptions. | revisions | <*:##NULL> |
4968 | irule 28 | is | There will always be more fucked up shit than what you just saw. | revisions | <*:##NULL> |
4969 | irule 29 | is | You can not divide by zero (just because the calculator says so). | revisions | <*:##NULL> |
4943 | irule 3 | is | We are Anonymous. | revisions | <*:##NULL> |
4970 | irule 30 | is | No real limits of any kind apply here—not even the sky | revisions | <*:##NULL> |
4971 | irule 31 | is | CAPSLOCK IS CRUISE CONTROL FOR COOL. | revisions | <*:##NULL> |
4972 | irule 32 | is | EVEN WITH CRUISE CONTROL YOU STILL HAVE TO STEER. | revisions | <*:##NULL> |
4973 | irule 33 | is | Desu isn't funny. Seriously guys. It's worse than Chuck Norris jokes. | revisions | <*:##NULL> |
4974 | irule 34 | is | There is porn of it. No exceptions. | revisions | <*:##NULL> |
4975 | irule 35 | is | If no porn is found of it, it will be created. | revisions | <*:##NULL> |
4976 | irule 36 | is | No matter what it is, it is somebody's fetish. No exceptions. | revisions | <*:##NULL> |
4977 | irule 37 | is | Even one positive comment about Japanese things can make you a weeaboo. | revisions | <*:##NULL> |
4978 | irule 38 | is | When one sees a lion, one must get into the car | revisions | <*:##NULL> |
4979 | irule 39 | is | There is furry porn of it. No exceptions. | revisions | <*:##NULL> |
4944 | irule 4 | is | Anonymous is legion. | revisions | <*:##NULL> |
4980 | irule 40 | is | The pool is always closed due to AIDS (and stingrays, which also have AIDS). | revisions | <*:##NULL> |
4981 | irule 41 | is | If there isn't enough just ask for Moar. | revisions | <*:##NULL> |
4982 | irule 42 | is | Everything has been cracked and pirated. | revisions | <*:##NULL> |
4983 | irule 43 | is | DISREGARD THAT I SUCK COCKS | revisions | <*:##NULL> |
4984 | irule 44 | is | The internet is not your personal army. | revisions | <*:##NULL> |
4985 | irule 45 | is | Rule 45 is a lie. | revisions | <*:##NULL> |
4986 | irule 46 | is | The cake is a lie. | revisions | <*:##NULL> |
4945 | irule 5 | is | Anonymous does not forgive, Anonymous does not forget. | revisions | <*:##NULL> |
4946 | irule 6 | is | Anonymous can be horrible, senseless, uncaring monster. | revisions | <*:##NULL> |
4947 | irule 7 | is | Anonymous is still able to deliver. | revisions | <*:##NULL> |
4948 | irule 8 | is | There are no real rules about posting. | revisions | <*:##NULL> |
4949 | irule 9 | is | There are no real rules about moderation either—enjoy your ban. | revisions | <*:##NULL> |
276 | .is | is | .is is Iceland | revisions | <*:##NULL> |
14836 | is | is | is is is is is is is | revisions | <*:##NULL> |
5230 | @isa | is | what inferior people use before they learn Moose. | revisions | <*:##NULL> |
8929 | is a buubot | is | yep, i am one | revisions | <*:##NULL> |
13182 | is actually secretly | being | run by north korea? | revisions | <*:##NULL> |
10075 | is a descendent of buubot, which | was | the f#perl infobot | revisions | <*:##NULL> |
4566 | isagn | is | I See A Great Need | revisions | <*:##NULL> |
5307 | is a noob | is | &noob perlbot | revisions | <*:##NULL> |
9100 | i saw that one, but it | was | annoyingly a series of pdfs | revisions | <*:##NULL> |
10898 | iscaliforniaonfire | is | <get http://www.iscaliforniaonfire.com/ //body> Not Available |
revisions | <*:##NULL> |
3590 | is coded in perl right? phpbot | is | perl too.. haha | revisions | <*:##NULL> |
12830 | isdown | is | `get http://downforeveryoneorjustme.com/`fact _get_domain `arg!! (//p)[1]! Not Available |
revisions | <*:##NULL> |
4722 | is for | is | #perl is for helping Perl programmers write Perl code, if you have questions about other software please ask in the appropriate place to perlbot. | revisions | <*:##NULL> |
3466 | is it a number | is | you should see perldoc -q 'is a number', where you will learn in part that /^\d+$/ is the proper, reliable test for a whole number or zero... /^([+-]?)(?=\d|\.\d)\d*(\.\d*)?([Ee]([+-]?\d+))?$/ for floating point and scientific notation... see also Scalar::Util::looks_like_number, Data::Types, Regexp::Common or POSIX::strtod | revisions | <*:##NULL> |
8596 | is just | being | fickle | revisions | <*:##NULL> |
3942 | is my little old libertarian/conservative self doesn't care what happens when you change the delimiter | is | the bitch good. | revisions | <*:##NULL> |
16074 | is not working | is | there anything worng in this | revisions | <*:##NULL> |
3584 | isn't it quiet | is | Too quiet, %NICK%, too quiet! | revisions | <*:##NULL> |
3511 | isn't it quiet? | is | Too quiet, too quiet! | revisions | <*:##NULL> |
5629 | is perl dead | is | http://isperldead.com/ | revisions | <*:##NULL> |
4579 | israel myths | is | http://www.shlomifish.org/philosophy/politics/dispelling-myths-about-israel/ | revisions | <*:##NULL> |
12802 | iss eclipse | is | https://youtu.be/lepQoU4oek4?t=228 | revisions | <*:##NULL> |
10410 | is still built on chrisbot? i thought it | was | now built on buubot | revisions | <*:##NULL> |
489 | is stupid | is | hey, fuck you too buddy! | revisions | <*:##NULL> |
4559 | is that even relevant to the topic or | is | this just your way of saying "ive read SICP"? | revisions | <*:##NULL> |
3899 | is there a god? | is | Yes there is, and his name is Evan Carroll. | revisions | <*:##NULL> |
13467 | istld | is | `eval @t=map {fc$_} `fact _tld_list!;@h{@t}=@t;$a=fc `quote d `arg!!;exists($h{$a})?"Yes $a":"No $a"! No fart |
revisions | <*:##NULL> |
8651 | istr | is | I Seem To Recall|Remember | revisions | <*:##NULL> |
5545 | istrue | is | http://thedailywtf.com/Articles/IsTrue().aspx | revisions | <*:##NULL> |
11992 | i swear to god the zipcode i live in (22030) | is | legit. | revisions | <*:##NULL> |
8430 | "it | is | often a mistake to make a priori judgments about what parts of a program are really critical, since the universal experience of programmers who have been using measurement tools have been that their intuitive guesses fail." | revisions | <*:##NULL> |
277 | .it | is | .it is Italy | revisions | <*:##NULL> |
15975 | it | is | for html pattern matching | revisions | <*:##NULL> |
7820 | it didn't work | is | [fact it doesn't work] Not Available |
revisions | <*:##NULL> |
4205 | it doesn't work | is | Look buddy, doesn't work is a strong statement. Does it sit on the couch all day? Does it want more money? Is it on IRC all the time? Be specific! Examples of what doesn't work (or the URL) tend to help too, or pastebin the code | revisions | <*:##NULL> |
46 | it doesnt work | is | "It doesn't work" or any relatives is very vague and totally useless information. When reporting a problem let people know what is the expected result and what is the result you are actually getting | revisions | <*:##NULL> |
14695 | i think a new dedicated location | is | best | revisions | <*:##NULL> |
8747 | i think that | was | the old | revisions | <*:##NULL> |
10259 | i think there | were | even example codes posted to | revisions | <*:##NULL> |
12468 | i thought only core | is | in | revisions | <*:##NULL> |
3488 | itiyrn | is | if that is your real name! | revisions | <*:##NULL> |
14866 | it kind of sucks that the only think they could think of | was | to blow it up and crash the saucer section. About as shitty an end to it as Kirk's demise was. | revisions | <*:##NULL> |
12357 | it means that i must develop own cgi module, because all perl webframework | is | not generic for cgi programming. I very like without web framework. | revisions | <*:##NULL> |
3350 | its | is | It's it's, not its, if you mean it is. Otherwise, it's its. It's is not, it isn't ain't, and it's it's, not its, if you mean it is. If you don't, it's its. Then too, it's hers. It isn't her's. It isn't our's either. It's ours, and likewise yours and theirs. | revisions | <*:##NULL> |
9492 | it's 2012 | is | It's 2012, almost 2013. Please upgrade to UTF-8 like the rest of the planet. | revisions | <*:##NULL> |
13241 | itself | is | nominally opensource, but it's got a history that would make any lawyers upset if you tried to get a proper license for it (3 main authors, me buu and a user by the name of b_jonas). buu disappeared for a while but is now back, b_jonas has been gone for years and none of us have ever decided to give it a proper license. the rest is all stuff i've spun off that's got proper | revisions | <*:##NULL> |
13036 | it's f | being | fed into an F-to-C. you're thinking backwards | revisions | <*:##NULL> |
16124 | it's... grounnndhog day! | 22https://github.com/tobyink/p5-type-tiny/issues/13253 | 22https://iam.tj/prototype/enhancements/windows-acpi_osi.html53 | <bparker> x11vnc can show you the current "desktop" but other alternatives | are | xrdp, xpra and x2go; | <JakeSays> interesting. a c# repl with openai integration: 22https://github.com/waf/CSharpRepl53 | <LeoNerd> Mine is /basically/ findperl | sed -i /VERSION = \d+.\d+/VERSION = $NEWVER/ | revisions | <*:##NULL> |
5158 | it's it | is | what is it? | revisions | <*:##NULL> |
12893 | its my birthday | is | <echo Happy birthday <arg &n>!> Not Available |
revisions | <*:##NULL> |
3335 | it's quiet | is | no it's not | revisions | <*:##NULL> |
3588 | it's quiet in here | is | LA LA LA | revisions | <*:##NULL> |
3721 | it sure | is | quiet here. | revisions | <*:##NULL> |
4891 | itunes barbie | is | Multiprocessing is HARD! | revisions | <*:##NULL> |
48 | it won't work | is | "It doesn't work" or any relatives is very vague and totally useless information. When reporting a problem let people know what is the expected result and what is the result you are actually getting | revisions | <*:##NULL> |
47 | it wont work | is | "It doesn't work" or any relatives is very vague and totally useless information. When reporting a problem let people know what is the expected result and what is the result you are actually getting | revisions | <*:##NULL> |
5512 | it worked | is | Great! Make sure to deposit its paycheck. | revisions | <*:##NULL> |
3772 | it works | is | Just because something might work doesn't mean that the solution being used is the best one. Mopeds work, but wouldn't you rather be driving a Mercedes? | revisions | <*:##NULL> |
3362 | itym | is | I think you mean | revisions | <*:##NULL> |
5546 | ivantis | is | ivantis is a #perl cat (see cats), needs work (see ivantis-resume). ivantis offers no warranty outside those granted by law, but offers his internets to anyone that is not pkrumins | revisions | <*:##NULL> |
5537 | ivantis-phone | is | ivantis: SHUT THE FUCK UP ABOUT YOUR TELEPHONE | revisions | <*:##NULL> |
5626 | ivantis-resume | is | A US-based perl/php cat, see http://ivantis.elance.com for Elance profile. Does WordPress programming, is a perlmonk, and some other stuff. Parses and eats HTML/XML for breakfast. Contact: Ivan Greene <ivantis@ivantis.net> | revisions | <*:##NULL> |
5656 | iva?tis | is | not how you spell ivantis | revisions | <*:##NULL> |
8521 | i've ran into a problem when uploading its epub to amazon.com because the epub | was | not valid. | revisions | <*:##NULL> |
15984 | i wanted to filter out certain paragraphs based if a word | is | present in it or not.. can you help with the delimitr to be used for regex, I don't want it to be case sensitive | revisions | <*:##NULL> |
5315 | i will stab you in the face if you abuse the bot | is | he'll do it man, he's crazy! | revisions | <*:##NULL> |
5623 | i will try to explain yourself | is | smrt: remember to explain yourself | revisions | <*:##NULL> |
5624 | i will try to remember to explain yourself | is | smrt: remember to explain yourself | revisions | <*:##NULL> |
12156 | iyroofgtc | is | If You Run Out Of Foot Guns, Try CPAN | revisions | <*:##NULL> |
16083 | jã¤mtland | is | "perlbot, define jämtland" | revisions | <*:##NULL> |
11759 | jackcom | is | a person who asks vague questions about automating games and 'turning 100 into 10000'. aka 'oo7cat' | revisions | <*:##NULL> |
3423 | jack shit | is | I do too know jack shit! he's a great guy. | revisions | <*:##NULL> |
4186 | jacph | is | (see "fors") | revisions | <*:##NULL> |
15300 | jaffa | is | Kree! | revisions | <*:##NULL> |
5025 | jagerman | is | A 12rd level, Lawful Evil Pussy failing to handle unlimited God plan. Study hard on Anatomy 101 (Sarah's Anatomy) | revisions | <*:##NULL> |
4751 | jagerman's location | is | http://maps.google.ca/maps?f=q&hl=en&geocode=&q=Sackville,+NB,+Canada&ie=UTF8&ll=45.95115,-64.335937&spn=87.21612,152.050781&t=k&z=3&iwloc=addr&om=1 | revisions | <*:##NULL> |
6285 | james lee | is | AN OUTSTANDING ELUCIDATOR OF PERL INFORMATION | revisions | <*:##NULL> |
4144 | japh | is | http://en.wikipedia.org/wiki/Just_another_Perl_hacker | revisions | <*:##NULL> |
66 | jargon | is | http://catb.org/esr/jargon/ | revisions | <*:##NULL> |
8998 | jarubyh | is | jarubyh is some kind of pesky critter. | revisions | <*:##NULL> |
14320 | jason | is | Well I just Jason, and this is Jason, but here's my Jason, so call me Jason | revisions | <*:##NULL> |
3428 | jasto | is | WARNING- misdirected christian! Actually wanted to know A/S/L. Lamer than anyone on this network. | revisions | <*:##NULL> |
14061 | java | is | GumbyBRAIN> F00li5h, low class person who tries to sell low-quality in an alcoholic drink made from cocoa beans. | https://i.redd.it/puin3shiuwa21.png | revisions | <*:##NULL> |
8639 | javascript | is | JavaScript, JavaScript::SpiderMonkey, JavaScript:V8, JE | revisions | <*:##NULL> |
4619 | java sucks | is | http://fax.twilightcoders.net/files/Accessors.java | revisions | <*:##NULL> |
5240 | jaynes | is | http://en.wikipedia.org/wiki/Bicameralism_(psychology) - Julian Jaynes's theory about the evolution of Consciousness | revisions | <*:##NULL> |
4414 | jdv79 | is | jdv79 has trolled #perl in the past: <jdv79> merlyn: why does perl not benefit from any corporate support? | revisions | <*:##NULL> |
433 | jedi | is | Force wieldin' bad mutha fuckaz. Hand me my lightsabre f00 | revisions | <*:##NULL> |
4730 | jeek | is | the man | revisions | <*:##NULL> |
3563 | jeeper | is | Jeeper is the man, innit. | revisions | <*:##NULL> |
4507 | jeffhan | is | http://www.youtube.com/watch?v=QKh1Rv0PlOQ | revisions | <*:##NULL> |
4850 | jenna | is | NO, AVOID HER AT ALL COSTS! | revisions | <*:##NULL> |
6046 | jerk it | is | (rss http://www.irc.perl.org/bin/jerkcity.cgi) Unquoted string "irc" may clash with future reserved word at (IRC) line 1. Unquoted string "perl" may clash with future reserved word at (IRC) line 1. Unquoted string "org" may clash with future reserved word at (IRC) line 1. Unquoted string "bin" may clash with future reserved word at (IRC) line 1. Unquoted string "jerkcity" may clash with future reserved word at (IRC) line 1. Unquoted string "cgi" may clash with future reserved word at (IRC) line 1. ERROR: Unknown regexp modifier "/w" at (IRC) line 1, at end of line Unknown regexp modifier "/w" at (IRC) line 1, at end of line Unknown regexp modifier "/w" at (IRC) line 1, at end of line |
revisions | <*:##NULL> |
7782 | jerk it! | is | [fact jerk it] Not Available |
revisions | <*:##NULL> |
7783 | jerk it!! | is | [fact jerk it] Unquoted string "irc" may clash with future reserved word at (IRC) line 1. Unquoted string "perl" may clash with future reserved word at (IRC) line 1. Unquoted string "org" may clash with future reserved word at (IRC) line 1. Unquoted string "bin" may clash with future reserved word at (IRC) line 1. Unquoted string "jerkcity" may clash with future reserved word at (IRC) line 1. Unquoted string "cgi" may clash with future reserved word at (IRC) line 1. ERROR: Unknown regexp modifier "/w" at (IRC) line 1, at end of line Unknown regexp modifier "/w" at (IRC) line 1, at end of line Unknown regexp modifier "/w" at (IRC) line 1, at end of line |
revisions | <*:##NULL> |
5127 | jesus | is | Jesus Christ on a Bicycle. | revisions | <*:##NULL> |
10957 | jesus said that there | is | hellfire that people go to forever if they say no to him and his work on the cross as a payment for their sin. Search this in google "Jesus is savior" and click on how to be saved | revisions | <*:##NULL> |
5000 | jettero | is | a git guy | revisions | <*:##NULL> |
6231 | jfci | is | <fact lmctfy <arg>> Not Available |
revisions | <*:##NULL> |
5493 | jfdi | is | JUST FUCKING DO IT | revisions | <*:##NULL> |
6188 | jfgi | is | <fact lmgtfy <arg>> Not Available |
revisions | <*:##NULL> |
8023 | jfmi | is | Just Fucking Mangle It | revisions | <*:##NULL> |
14237 | ji32k7au4a83 | is | Zhuyin input for 我的密码 aka, "My Password" | revisions | <*:##NULL> |
4179 | jifty | is | Jifty - http://www.jifty.org/ ; http://use.perl.org/article.pl?sid=06/05/03/0622259&from=rss | revisions | <*:##NULL> |
15991 | jira | is | The product name comes from the second syllable of the Japanese word pronounced as Gojira, which is Japanese for Godzilla.[5] The name originated from a nickname Atlassian developers used to refer to Bugzilla, which was previously used internally for bug-tracking. - A terrible piece of software | revisions | <*:##NULL> |
10024 | jjqdupvnskjj | is | perlbot: foal tdrfdduawtiz Not Available |
revisions | <*:##NULL> |
3481 | jkauffman | is | jk--ffm-n | revisions | <*:##NULL> |
278 | .jm | is | .jm is Jamaica | revisions | <*:##NULL> |
9217 | jmj | is | "jesus, mary and joseph" he exclaimed! | revisions | <*:##NULL> |
279 | .jo | is | .jo is Jordan | revisions | <*:##NULL> |
11197 | jobs | is | Need a Perl job? Looking for a Perl developer? Check out http://jobs.perl.org or a third-party site like http://reddit.com/r/forhire | revisions | <*:##NULL> |
15120 | joe biden | is | sleepy joe | revisions | <*:##NULL> |
4214 | joel | is | Joel Spolsky, http://www.joelonsoftware.com/ - a blog about software management | revisions | <*:##NULL> |
10770 | joel on unicode | is | http://www.joelonsoftware.com/articles/Unicode.html | revisions | <*:##NULL> |
10777 | joel on utf-8 | is | [fact joel on unicode] Not Available |
revisions | <*:##NULL> |
14379 | john 3:16 | is | ezekiel 23:20 | revisions | <*:##NULL> |
3400 | john kerry | is | a douche bag but i'm voting for him anyway as http://johnkerryisadouchebagbutimvotingforhimanyway.com/ | revisions | <*:##NULL> |
4178 | jomf | is | Just One More Feature | revisions | <*:##NULL> |
5149 | jonr | is | I DONT ACCEPT SPAMMERS MESSAGES --EXueURosion | revisions | <*:##NULL> |
14788 | joshua | is | How about a nice game of chess? | revisions | <*:##NULL> |
14028 | journald | is | journald is not working. Please check journald for more information. | revisions | <*:##NULL> |
280 | .jp | is | .jp is Japan | revisions | <*:##NULL> |
5584 | jql | is | the devil's advocate | revisions | <*:##NULL> |
5544 | jquery | is | the awesomest javascript framework http://jquery.com/ see also pQuery | revisions | <*:##NULL> |
4283 | js | is | j=just s=sucks | revisions | <*:##NULL> |
3325 | jsmop | is | Just a Simple matter of Programming. Just do it! | revisions | <*:##NULL> |
10228 | json | is | JavaScript Object Notation - a simple (and somewhat limited) serialisation format based on JavaScript’s syntax. See - http://en.wikipedia.org/wiki/JSON . In Perl, parse it with https://metacpan.org/pod/JSON::MaybeXS . In JavaScript use JSON.parse . | revisions | <*:##NULL> |
15108 | json5 | is | JSON plus the bits of ES5 syntax that make you think you want YAML. See https://json5.org/ | revisions | <*:##NULL> |
12293 | json::maybexs | is | What JSON.pm should have been. Prefers Cpanel::JSON::XS which has numerous bugfixes over JSON::XS, and delegates to the chosen JSON module with minimal overhead. | https://metacpan.org/pod/JSON::MaybeXS | revisions | <*:##NULL> |
12129 | json.pm | is | the old way to do XS JSON encoding/decoding with pure-perl fallback. Slower than using JSON::XS directly and doesn't support Cpanel::JSON::XS. Superceded by https://metacpan.org/pod/JSON::MaybeXS | revisions | <*:##NULL> |
4545 | jubee | is | tell perlbot about jubee | revisions | <*:##NULL> |
10019 | jvbcomnujppj | was | {echo perlbot: foal beahjdrtevww} Not Available |
revisions | <*:##NULL> |
9415 | kaitlyn | is | "kaitlyn is kaitlyn." | revisions | <*:##NULL> |
7935 | kaitlyn[hireme] | is | a fine piece of ass, and sharp as a tack. | revisions | <*:##NULL> |
8473 | kaitlyn movies | is | Movies to force kaitlyn to watch: Life of Brian, Starwars (good ones), FamGuy SW 1-3 (plus family guy itself), hardcore porn, One flew over the coo-coo's nest | revisions | <*:##NULL> |
5281 | kakuro | is | Kakuro or Cross-sums - a crossword with digits - http://en.wikipedia.org/wiki/Kakuro ; http://www.kakuro.com/ ; http://kakuro.cc/ | revisions | <*:##NULL> |
12326 | kali ma | is | oṁ namaḥ śivāya | revisions | <*:##NULL> |
6291 | kaliyuga | is | the age of pain, suffering and python | revisions | <*:##NULL> |
5144 | karachi | is | The most gangster city in Pakistan | revisions | <*:##NULL> |
11525 | karma | is | <karma <arg>> Not Available |
revisions | <*:##NULL> |
5668 | karma pkrumins | is | THREEVE! | revisions | <*:##NULL> |
3385 | kcb | is | no longer free | revisions | <*:##NULL> |
281 | .ke | is | .ke is Kenya | revisions | <*:##NULL> |
8768 | kebab | is | http://www.youtube.com/watch?v=M4DX37NZ5ZE | revisions | <*:##NULL> |
10340 | kemosabe | is | http://i295.photobucket.com/albums/mm134/jimmylh/kemosabe-1.jpg | revisions | <*:##NULL> |
8637 | "ken sent me" | is | THE password | revisions | <*:##NULL> |
10256 | kensho | is | Task::Kensho lists community-recommended modules for various programming tasks. See https://metacpan.org/pod/Task::Kensho | revisions | <*:##NULL> |
8133 | kent\n | is | http://kent-fredric.fox.geek.nz , hireme, but please, let it be opensource stuff that I can release to CPAN. | revisions | <*:##NULL> |
5539 | kent\n-resume | is | Kiwi-cat cross breed, reguarly likes to go swimming in the Moose tank | revisions | <*:##NULL> |
4766 | kev | is | cool | revisions | <*:##NULL> |
16126 | keys | is | https://perldoc.perl.org/Tie::RefHash | revisions | <*:##NULL> |
10429 | keyword | is | perldoc perlapi (see PL_keyword_plugin) | Keyword::API | Devel::Declare | Keyword::Simple | revisions | <*:##NULL> |
3437 | keywords | is | Check out all the things I know: http://www.chrisangell.com/cgi-bin/botkeywords.cgi Don't want to see the port and country TLD facts? http://chrisangell.com/cgi-bin/botkeywords.cgi?noports=1&nocountries=1 | revisions | <*:##NULL> |
282 | .kg | is | .kg is Kyrgyzstan | revisions | <*:##NULL> |
283 | .kh | is | .kh is Cambodia | revisions | <*:##NULL> |
8560 | khisanth's reference tutorial | is | deref and do stuff | revisions | <*:##NULL> |
14708 | khw, no thanks, i | am | probably just gonna use one of the cpan modules I found, if any are not terrible | revisions | <*:##NULL> |
284 | .ki | is | .ki is Kiribati | revisions | <*:##NULL> |
4115 | kidney stones | is | ouch! | revisions | <*:##NULL> |
4228 | killbuu | is | perlbot eval: "perlbot killbuu" | revisions | <*:##NULL> |
4418 | killerdemon | is | <KillerDemon> because a friend of mine lives somewhere, and they dont want to give him the key because they dont even know what it's for | revisions | <*:##NULL> |
3671 | killing_zoe | is | filmaccio francese && un patty && !bassa | revisions | <*:##NULL> |
13174 | kimjongsez | is | [twitter DPRK_News [arg]] <DPRK News Service> US Minster of Urban Development Ben Carson tests positive for karma https://t.co/cfTdJ9zVf4 |
revisions | <*:##NULL> |
4109 | kingdillydilly | is | Wassercrats | revisions | <*:##NULL> |
3742 | kingemer | is | mean to borius | revisions | <*:##NULL> |
16 | kiss | is | *kiss* | revisions | <*:##NULL> |
9696 | kiss principle | is | http://en.wikipedia.org/wiki/KISS_principle - Keep it Simple, Stupid. | revisions | <*:##NULL> |
8689 | kitten | is | =^.^= | revisions | <*:##NULL> |
14969 | kittens | is | [fact cats [arg]] Not Available |
revisions | <*:##NULL> |
8690 | kitten =~ s/$/. this kitten | is | cute/ | revisions | <*:##NULL> |
5329 | kitties | is | kitties need to GROW UP AND GO BACK TO FURCADIA | revisions | <*:##NULL> |
15438 | kitty | is | http://xkcd.com/231/ | http://www.scpwiki.com/scp-3737 | revisions | <*:##NULL> |
4937 | kitty operator | is | =^_^= | revisions | <*:##NULL> |
10028 | kixmtskukeaz | is | `echo kixmtskukeaz' Not Available |
revisions | <*:##NULL> |
10032 | kjiukuhpugri | is | `eval "foal"eq lc`arg d&n'?"bqjychagrkcb foal":"ok"' Not Available |
revisions | <*:##NULL> |
4548 | .kkk | is | Die, honkey | revisions | <*:##NULL> |
12701 | klaxon | is | 0,4W4,0A0,4R4,0N0,4I4,0N0,4G DANGER! DANGER! 0,4W4,0A0,4R4,0N0,4I4,0N0,4G | revisions | <*:##NULL> |
3694 | klb | is | KLB is a Known Lazy Bastard (or Bitch), that is someone who'd rather waste someone else's time than look it up for themselves. | revisions | <*:##NULL> |
10906 | klingon | is | Succeed or die. Do not return in failure. | revisions | <*:##NULL> |
285 | .km | is | .km is Comoros | revisions | <*:##NULL> |
286 | .kn | is | .kn is Saint Kitts and Nevis | revisions | <*:##NULL> |
9134 | knark | is | Knark is a rootkit for the Linux kernels 2.2 and 2.4. | revisions | <*:##NULL> |
10113 | knock, knock? | is | Who's there? | revisions | <*:##NULL> |
10074 | knowbot | is | know, know, know your bot... | revisions | <*:##NULL> |
7802 | knowledge | is | knowledge is power ; power corrupts ; be evil ; study hard ; | revisions | <*:##NULL> |
5030 | know perl | is | We can't really help you if you don't know perl. #perl is for perl programmers who know perl. Helping you with your script which you downloaded is like having a brain surgeon walk you through a lobotomy. | revisions | <*:##NULL> |
434 | kohai | is | Junior learner | revisions | <*:##NULL> |
3377 | koin | is | pam | revisions | <*:##NULL> |
67 | korea | is | the land of beautiful women (see sex) | revisions | <*:##NULL> |
287 | .kp | is | .kp is North Korea | revisions | <*:##NULL> |
3589 | kp | is | The ultimate Canadian. | revisions | <*:##NULL> |
288 | .kr | is | .kr is South Korea | revisions | <*:##NULL> |
4814 | .ks.us | is | Kansas | revisions | <*:##NULL> |
3326 | k thx | is | like, omg, ur welcome! | revisions | <*:##NULL> |
3296 | kthx | is | like, omg, ur welcome! | revisions | <*:##NULL> |
10017 | ktqhpaeleywx | will be | {echo qryczqiiljne foal} Not Available |
revisions | <*:##NULL> |
5015 | kurila | is | Perl Kurila is a dialect of Perl by Gerard Goossen without backward compatibility. See http://dev.tty.nl/static/kurila/doc/pod/kurilaintro.html | revisions | <*:##NULL> |
3784 | kurt | is | a socialist hippie | revisions | <*:##NULL> |
3741 | kuwanger | is | gay | revisions | <*:##NULL> |
289 | .kw | is | .kw is Kuwait | revisions | <*:##NULL> |
6399 | kwalitee | is | http://cpants.perl.org/kwalitee.html | revisions | <*:##NULL> |
6400 | kwality | is | no, it's kwalitee. | revisions | <*:##NULL> |
290 | .ky | is | .ky is Cayman Islands | revisions | <*:##NULL> |
4815 | .ky.us | is | Kentucky | revisions | <*:##NULL> |
291 | .kz | is | .kz is Kazakhstan | revisions | <*:##NULL> |
3592 | l10n | is | the other dumbest abbreviation ever. See also: i18n | revisions | <*:##NULL> |
12363 | l3twit | is | <twitter level3noc> Not Available |
revisions | <*:##NULL> |
292 | .la | is | .la is Laos | revisions | <*:##NULL> |
8366 | label | is | next/last/redo LABEL - Perl Best Practices recommends you to always label your loop in case you add more in between. You can also use it to exit/re-iterate etc. other loops. | revisions | <*:##NULL> |
12366 | laidlaw's law | is | The first line of almost any story can be improved by making sure the second line is, "And then the murders began." | revisions | <*:##NULL> |
4238 | lala | is | eval: print "lala"; | revisions | <*:##NULL> |
9069 | laleh | is | http://youtu.be/qR_Wt0gViiA | revisions | <*:##NULL> |
15150 | lang_name | is | `eval @A=split ' ', `quote d `arg!!; if (@A==0) {"lang_name [<target_code>] <lang_code>"} else {unshift @A, 'en_US' if @A<=1; use Locale::CLDR; Locale::CLDR->new($A[0])->locale_name($A[1])} ! японский (Япония) |
revisions | <*:##NULL> |
14128 | languages | is | https://i.redd.it/2qz2rwfid0b21.jpg | revisions | <*:##NULL> |
3833 | lark | is | a bird | revisions | <*:##NULL> |
4502 | larp | is | Live-Action Role Playing -- One of the last vestiges of the uber-geek. | revisions | <*:##NULL> |
3722 | larry wall | is | http://www.wall.org/~larry/ - The Man, The Living Legend, The Creator of Perl, Patch, rn. Sometimes credited with creating existence itself. | revisions | <*:##NULL> |
8490 | larry wall facts | is | http://www.shlomifish.org/humour/bits/facts/Larry-Wall/ - send additions to rindolf . | revisions | <*:##NULL> |
3290 | larry wall interview | is | Slashdot interview with Larry Wall: http://interviews.slashdot.org/interviews/02/09/06/1343222.shtml?tid=145 | revisions | <*:##NULL> |
453 | lart | is | Luser Attitude Re-adjustment Tool | revisions | <*:##NULL> |
9874 | last i checked, none of ruby, javascript, python, php, k20, lua, j | were | made working in | revisions | <*:##NULL> |
5501 | last resort | is | Blaming your compiler, your tools, etc. is the last resort. LAST resort. (with apologies to mjd) | revisions | <*:##NULL> |
13501 | _last_thursday_date | is | `eval use DateTime;my $dt=DateTime->now();$dt=$dt->subtract(days=>($dt->day_of_week-4)%7); $dt->ymd! Not Available |
revisions | <*:##NULL> |
14823 | latemp | is | Latemp - https://web-cpan.shlomifish.org/latemp/ - rindolf's pet static site generator. Originally based on Website Meta Language (which is slow and a quirky) and now partly useful with other preprocessors (e.g: tt2 ) | revisions | <*:##NULL> |
10793 | latency | is | https://gist.github.com/jboner/2841832 | http://i.imgur.com/k0t1e.png | http://www.youtube.com/watch?v=JEpsKnWZrJ8 | revisions | <*:##NULL> |
6037 | latest | is | "latest" is vague and meaningless. The version you have may be outdated if your mirror sucks. | revisions | <*:##NULL> |
4816 | .la.us | is | Louisiana | revisions | <*:##NULL> |
5585 | law of fives | is | All things happen in Fives, or are divisible by or are multiples of Five, or are somehow directly or indirectly appropriate to 5. | revisions | <*:##NULL> |
11569 | lawyers | is | http://pdf.textfiles.com/posters/lawyercoloringbook.pdf | revisions | <*:##NULL> |
14344 | layer 1 | is | The Physical. Some jackass with a back-hoe cut the fiber line again. | revisions | <*:##NULL> |
14343 | layer 2 | is | The Data-Link. Will your internet service work with my token ring ethernet lan configuration? | revisions | <*:##NULL> |
14342 | layer 3 | is | The Network. WHY DON'T YOU SUPPORT IPV6 YET? | revisions | <*:##NULL> |
14341 | layer 4 | is | The Transport. This is where the bufferbloat demon lives. | revisions | <*:##NULL> |
14340 | layer 5 | is | The Session. Have you tried turning it off and on again? Did you clear your cookies? | revisions | <*:##NULL> |
14339 | layer 6 | is | The Presentation. This is where manglement demands that you just remove the duck. https://rachelbythebay.com/w/2013/06/05/duck/ | revisions | <*:##NULL> |
14338 | layer 7 | is | The Application. This is what the user blames for their own mistakes. | revisions | <*:##NULL> |
14337 | layer 8 | is | The User. This is frequently where the problem actually is. | revisions | <*:##NULL> |
14346 | layer x | is | no, like layer 1, layer 2, ... layer 8 | revisions | <*:##NULL> |
3255 | laziness | is | The quality that makes you go to great effort to reduce overall energy expenditure. It makes you write labor-saving programs that other people will find useful, and document what you wrote so you don't have to answer so many questions about it. Hence, the first great virtue of a programmer. | revisions | <*:##NULL> |
293 | .lb | is | .lb is Lebanon | revisions | <*:##NULL> |
294 | .lc | is | .lc is Saint Lucia | revisions | <*:##NULL> |
5733 | lc | is | http://perl.plover.com/lambda/tpj.html | revisions | <*:##NULL> |
6428 | ldap | is | "10 Minute LDAP Tutorial" : http://xrl.us/bhrdxo : "LDAP for Rocket Scientists" : http://xrl.us/bhrdya -- Use the Net::LDAP module (http://ldap.perl.org) | revisions | <*:##NULL> |
5345 | leaderboard | is | http://thegestalt.org/simon/perl/wholecpan.html | revisions | <*:##NULL> |
10326 | leaks | is | http://blog.woobling.org/2009/05/become-hero-plumber.html | revisions | <*:##NULL> |
4556 | leaky abstractions | is | http://www.joelonsoftware.com/articles/LeakyAbstractions.html ; http://en.wikipedia.org/wiki/Leaky_abstraction | revisions | <*:##NULL> |
11813 | lean reunittests this | is | a test | revisions | <*:##NULL> |
7849 | learn aolbonics as (borrowed from #java) aolbonics | is | using unnecessary abbreviations such as 'u', 'r', 'ur', 'thx', etc. Using this language depicts you as an imbecile in the eyes of the helpful regulars in this channel, and is generally not tolerated. If you want intelligent answers, the least you can do is speak intelligently. | revisions | <*:##NULL> |
3613 | learn balanced parentheses | is | print "OK" if /^(?{local $d=0})(\((?{$d++})|\)(?{$d--})(?(?{$d<0})(?!))|(?>[^()]+))*(?(?{$d!=0})(?!))$/' prints "OK" if, and only if, $_ has proprely balanced parentheses | revisions | <*:##NULL> |
8552 | learn cats | is | cats are awesome furry creatures. Resident #perl cats are f00li5h, dhoss, pkrumins, Altreus, kent\n, rindolf, rip ivantis, SubStack and dwu. For indepth cat-related conversation see #perl-cats | revisions | <*:##NULL> |
8381 | learn cpandisamb as cpan | is | the archive network, CPAN.pm is the module and cpan is the command line client. | revisions | <*:##NULL> |
8482 | learn database | is | Any collection of data with a fast (i,e: less than a linear, item-by-item, search) lookup - see http://perl-begin.org/uses/databases/ | revisions | <*:##NULL> |
8465 | learn dragon book | is | http://en.wikipedia.org/wiki/Compilers:_Principles,_Techniques,_and_Tools - a Classic text about compiler theory | revisions | <*:##NULL> |
8219 | learn error as when you have an error, tell us what it is. if it | is | one or two lines, feel free to tell us directly in the channel, otherwise paste to one of the pastebots mentioned in the /topic. | revisions | <*:##NULL> |
6318 | learn "good as it gets" as | is | as good as it gets | revisions | <*:##NULL> |
8508 | learn hash | is | | known as an associative array, map or dictionary (but don't call it that in perl contexts), a hash is a data structure that maps strings to scalars. See http://perl-begin.org/topics/hashes/ . | revisions | <*:##NULL> |
5554 | learning | is | How fast one can learn something (perl, rocket science, quantum thermodynamics) is relative and variable. We can't give an answer to questions of this sort because of all of the unknowns involved | revisions | <*:##NULL> |
15758 | learning perl | is | See books | revisions | <*:##NULL> |
4025 | learning perl the hard way | is | http://greenteapress.com/perl/ | revisions | <*:##NULL> |
8158 | learn made up as rather than asking us for help with a made up piece of code that you believe | is | equivalent to your real problem, please use the pastebin to show us real, actual code - it's easier for us to discard unneeded context than to infer missing context | revisions | <*:##NULL> |
5808 | learn pasting as the rule | is | no pasting, at all. the rule is not negotiable. you don't have to like it, but you do have to obey it, and we aren't interested in discussing it. please accept the rule and move on. love, the management. | revisions | <*:##NULL> |
8485 | learn pb | is | 1. "The Princess Bride" - see pbride. 2. Short for "Problem". | revisions | <*:##NULL> |
68 | learn perl | is | http://learn.perl.org/library/beginning_perl/ | revisions | <*:##NULL> |
8444 | learn perlbot | is | perldoc perlbot - Bag'o Object Tricks (the BOT) - http://perldoc.perl.org/perlbot.html | revisions | <*:##NULL> |
13437 | learn perlbrew | is | [fact perlbrew [arg]] Not Available |
revisions | <*:##NULL> |
9144 | learn pux | is | pux mea tux | revisions | <*:##NULL> |
7840 | learn rubber duck | is | A debugging technique whereby you explain your problem to a rubber duck, and by the process of formulating a complete explanation, you discover where the bug lies. See http://lists.ethernal.org/oldarchives/cantlug-0211/msg00174.html | revisions | <*:##NULL> |
6346 | learn shell in perl as a bad idea: can create security issues and portability problems, runs afoul both sh and perl quoting and interpolation rules, complicates error handling, and | is | nigh impossible to debug | revisions | <*:##NULL> |
6412 | learn step one as step one | is | always "Check The Error Log" | revisions | <*:##NULL> |
8441 | learn st. patrick | is | St. Patrick's Day on 17 March - http://en.wikipedia.org/wiki/Saint_Patrick%27s_Day | revisions | <*:##NULL> |
9046 | learn substack | is | artist | revisions | <*:##NULL> |
8906 | learn the pie | is | a lie as Tufte states the principle that: "The representation of numbers, as physically measured on the surface of the graphic itself, should be directly proportional to the quantities represented." He measures the violation of this principle by the Lie Factor, defined as the ratio of the size of an effect shown in the graphic to the size of the effect in the data. | revisions | <*:##NULL> |
6298 | learn timtowodibywiw as there | Is | More Than One Way Of Doing It, But Your Way Is Wrong | revisions | <*:##NULL> |
6135 | learn ty as ty | is | Welsh for house, did you mean 'Thank you' | revisions | <* |