Skip to content

Commit ee20ba3

Browse files
updated resources
1 parent 9f7f604 commit ee20ba3

2 files changed

Lines changed: 14 additions & 17 deletions

File tree

Linux_curated_resources.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Collection of resources for Linux command line, shell scripting (mostly `bash`)
7070
* [stackoverflow: Command line tricks](https://stackoverflow.com/q/68372/4082052)
7171
* [commandlinefu](https://www.commandlinefu.com/commands/browse/sort-by-votes) — command-line gems, includes a handy search feature
7272
* [Bash-Oneliner](https://github.com/onceupon/Bash-Oneliner) — collection of handy Bash One-Liners and terminal tricks for data processing and Linux system maintenance
73-
* [bash Idioms](https://www.oreilly.com/library/view/bash-idioms/9781492094746/) — decipher old bash code and write new code that's as clear and readable as possible
73+
* [Bash Idioms](https://www.oreilly.com/library/view/bash-idioms/9781492094746/) — decipher old bash code and write new code that's as clear and readable as possible
7474

7575
## Cheatsheets
7676

@@ -134,3 +134,4 @@ Read instructions provided by respective forums before asking a question. Try so
134134
* [/r/linux](https://old.reddit.com/r/linux/) — general linux discussion
135135
* [askubuntu](https://askubuntu.com/questions/tagged/command-line?sort=votes&pageSize=15) — Ubuntu and general Linux topics
136136
* [TuxURLs](https://tuxurls.com/) — Linux news aggregator
137+

Perl_curated_resources.md

Lines changed: 12 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,14 @@ You can use `perldoc` command to access documentation from the command line. You
1414

1515
## Tutorials and Books
1616

17-
* [Learning Perl, 7th Edition](https://www.oreilly.com/library/view/learning-perl-7th/9781491954317/) — getting started with Perl, whether you're a programmer, system administrator, or web hacker
18-
* Perl Maven — basics of the Perl programming language. You'll be able to write simple scripts, analyze log files and read and write CSV files. Just to name a few common tasks
19-
* [text tutorial](https://perlmaven.com/perl-tutorial)
20-
* [video course](https://perlmaven.com/beginner-perl-maven-video-course)
21-
* Modern Perl — teaches you how Perl really works, from its philosophical roots to the pragmatic decisions that help you solve real problems and keep them solved
22-
* [online text](http://modernperlbooks.com/books/modern_perl_2016/)
23-
* [book and pdf(free) versions](http://onyxneon.com/books/modern_perl/)
17+
* [Learning Perl, 8th Edition](https://www.oreilly.com/library/view/learning-perl-8th/9781492094944/) — getting started with Perl, whether you're a programmer, system administrator, or web hacker
18+
* [Perl Maven](https://perlmaven.com/perl-tutorial) — basics of the Perl programming language. You'll be able to write simple scripts, analyze log files and read and write CSV files. Just to name a few common tasks
19+
* [Modern Perl](http://modernperlbooks.com/books/modern_perl_2016/) — teaches you how Perl really works, from its philosophical roots to the pragmatic decisions that help you solve real problems and keep them solved
2420
* [Effective Perl Programming](https://www.effectiveperlprogramming.com/about/) — write better, more idiomatic Perl
2521
* [Perl for newbies](https://perl-begin.org/tutorials/perl-for-newbies/) — provide Perl newcomers with the most high-quality and accessible material and references for learning the Perl programming language as easily, as accurately, and as efficiently, as possible
2622
* [perlmeme](http://perlmeme.org/start_here/index.html) — FAQs, HOWTOs and TUTORIALs (working example code of various tasks in Perl like parsing CSV/HTML, creating web form, connecting to database, etc)
2723

28-
I wrote an ebook specifically for [Perl one-liners](https://learnbyexample.github.io/learn_perl_oneliners/), which is free to read online.
24+
I wrote an ebook specifically for [Perl One-Liners](https://learnbyexample.github.io/learn_perl_oneliners/), which is free to read online.
2925

3026
## Code snippets, articles and exercises
3127

@@ -38,9 +34,9 @@ I wrote an ebook specifically for [Perl one-liners](https://learnbyexample.githu
3834
* [learnxinyminutes: cheatsheet with descriptions](https://learnxinyminutes.com/docs/perl/)
3935
* [Hyperpolyglot](https://perl-begin.org/tutorials/hyperpolyglot/sheet1.html) — side-by-side reference sheet for PHP, Perl, Python, Ruby
4036
* Practice and Coding Challenges
41-
* [perlweeklychallenge](https://perlweeklychallenge.org/)
42-
* [exercism](https://exercism.io/tracks/perl5)
43-
* [/r/dailyprogrammer](https://www.reddit.com/r/dailyprogrammer)
37+
* [The Weekly Challenge - Perl & Raku](https://theweeklychallenge.org/)
38+
* [exercism](https://exercism.org/tracks/perl5)
39+
* [/r/dailyprogrammer](https://old.reddit.com/r/dailyprogrammer)
4440

4541
## Regular Expressions
4642

@@ -50,10 +46,10 @@ I wrote an ebook specifically for [Perl one-liners](https://learnbyexample.githu
5046
* [syntax of regular expressions](https://perldoc.perl.org/perlre)
5147
* [FAQ on regular expressions](https://perldoc.perl.org/perlfaq#perlfaq6:-Regular-Expressions)
5248
* Practice and general regexp tutorials (i.e they may not be Perl specific)
53-
* [regex101](https://regex101.com/) — online regex tester, has an option for [PCRE](https://www.pcre.org/), shows explanations, has reference guides and ability to save and share regex
54-
* [debuggex](https://www.debuggex.com) — railroad diagrams for regular expressions, select flavor as PCRE before use
49+
* [regex101](https://regex101.com/) — online regex tester, shows explanations, has reference guides and ability to save and share regex
50+
* [debuggex](https://www.debuggex.com) — railroad diagrams for regular expressions
5551
* [stackoverflow: what does this regex mean?](https://stackoverflow.com/q/22937618/4082052)
56-
* [regexcrossword](https://regexcrossword.com/) — practice by solving crosswords, read 'How to play' section before you start, only support JS flavor
52+
* [regexcrossword](https://regexcrossword.com/) — practice by solving crosswords, read 'How to play' section before you start, only supports JS flavor
5753

5854
## Reading lists
5955

@@ -75,8 +71,8 @@ Formerly known as *Perl 6*
7571

7672
## Forums, Blogs, Newsletters
7773

78-
* [/r/perl/](https://www.reddit.com/r/perl/)
79-
* [/r/rakulang/](https://www.reddit.com/r/rakulang/)
74+
* [/r/perl/](https://old.reddit.com/r/perl/)
75+
* [/r/rakulang/](https://old.reddit.com/r/rakulang/)
8076
* [stackoverflow: perl](https://stackoverflow.com/tags/perl)
8177
* [stackoverflow: raku](https://stackoverflow.com/tags/raku)
8278
* [perlmonks](https://perlmonks.org/)

0 commit comments

Comments
 (0)