Skip to content

Commit cf37a33

Browse files
committed
Linked more TILs, so their a listed in README
1 parent 0d4457b commit cf37a33

10 files changed

+63
-8
lines changed

.wordlist.txt

+3
Original file line numberDiff line numberDiff line change
@@ -2018,3 +2018,6 @@ postMessage
20182018
slackbot
20192019
SwaggerUI
20202020
Cybercitizen
2021+
shogo
2022+
ANSIScreen
2023+
Getopt

README.md

+15-2
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
- [JSON - see also XML and YAML](#json---see-also-xml-and-yaml)
6161
- [Kali](#kali)
6262
- [Liquid Prompt - see also Starship](#liquid-prompt---see-also-starship)
63+
- [macOS - see OSX](#macos---see-osx)
6364
- [Mail.app](#mailapp)
6465
- [Markdown](#markdown)
6566
- [markdownlint](#markdownlint)
@@ -492,10 +493,13 @@
492493
<a id="javascript"></a>
493494
### JavaScript
494495

496+
- [Use JavaScript](javascript/use_javascript.md)
497+
- [Learn JavaScript](javascript/learn_javascript.md)
495498
- [Use a styleguide](javascript/use_a_style_guide.md)
496499
- [Beware of eval](javascript/beware_of_eval.md)
497500
- [Default Parameters for Functions](javascript/function_default_parameters.md)
498-
- [Learn JavaScript](javascript/learn_javascript.md)
501+
- [Console.log](javascript/console_log.md)
502+
- [Dynamic properties](javascript/dynamic_properties.md)
499503

500504
<a id="jenkins"></a>
501505
### Jenkins
@@ -532,6 +536,9 @@
532536

533537
- [Install Liquid Prompt](liquidprompt/install_liquidprompt.md)
534538

539+
<a id="macos"></a>
540+
### macOS - see OSX
541+
535542
<a id="mailapp"></a>
536543
### Mail.app
537544

@@ -633,6 +640,7 @@
633640
<a id="perl"></a>
634641
### Perl
635642

643+
- [Use Perl](perl/use_perl.md)
636644
- [View generated SQL when using DBIx::Class](perl/view_generated_sql_when_using_dbix-class.md)
637645
- [Create Test Coverage Report Using Dist::Zilla](perl/create_test_coverage_report_uzing_dist-zilla.md)
638646
- [Avoid issues with META.yml with Module::Install](perl/avoid_issues_with_metayml_with_module_install.md)
@@ -642,6 +650,7 @@
642650
- [Read Input via Pipe](perl/read_input_via_pipe.md)
643651
- [Find out if a given Perl distribution is included in core](perl/find_out_if_a_given_perl_distribution_is_included_in_core.md)
644652
- [Find out what your perl minimum version requirement is](perl/find_out_what_your_perl_minimum_version_requirement_is.md)
653+
- [Use cpm](perl/use_cpm.md)
645654

646655
<a id="perlbrew"></a>
647656
### Perlbrew
@@ -693,7 +702,7 @@
693702
<a id="regexp></a>
694703
### Regexp
695704

696-
- [Regex Posix](regexp/regex_posix.md)
705+
- [Regex Posix](regexp/posix.md)
697706

698707
<a id="renovate"></a>
699708
### Renovate
@@ -719,6 +728,10 @@
719728
### Ruby
720729

721730
- [Dump objects attributes](ruby/dump_object_attributes.md)
731+
- [Use rbenv](ruby/use_rbenv.md)
732+
- [Use rvm](ruby/use_rvm.md)
733+
- [Use bundler](ruby/use_bundler.md)
734+
- [ignore in Git](ruby/ignore_in_git.md)
722735

723736
<a id="rust"></a>
724737
### Rust

javascript/use_javascript.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Use JavaScript
2+
3+
## Learn JavaScript
4+
5+
- [Exercism](https://exercism.org/tracks/javascript)
6+
7+
## Resources and References
8+
9+
- [Mozilla Developer Network: JavaScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript)

node/use_node.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Use Node
2+
3+
See my TIL [use JavaScript](javascript/use_javascript.md) for more information.
4+
5+
## Resources and References
6+
7+
- [Node website](https://nodejs.org/en)

osx/use_javascript.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ This script list all unfinished reminders from the default list.
4444

4545
Do note that this script is _incredibly slow_, I have no idea, whether this is my implementation, since I am a **JavaScript** n00b, or whether it is the integration.
4646

47-
## References
47+
## Resources and References
4848

4949
- [Apple: Introduction to JavaScript for Automation Release Notes](https://developer.apple.com/library/archive/releasenotes/InterapplicationCommunication/RN-JavaScriptForAutomation/Articles/Introduction.html)
5050
- [Ars Technica: "OS X 10.10 Yosemite: The Ars Technica Review"](https://arstechnica.com/gadgets/2014/10/os-x-10-10/24/#javascript-automation)

perl/use_cpm.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Use cpm
2+
3+
See the separate [TIL](../cpm/use_cpm.md) on `cpm`.

perl/use_perl.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Use perl
2+
3+
Perl is the original _Swiss army knife_ - many has claimed this title, but Perl is the original.
4+
5+
## Learn Perl
6+
7+
- [Exercism](https://exercism.org/tracks/perl5)
8+
9+
## Resources and References
10+
11+
- [Perl website](https://www.perl.org/)

ruby/use_rbenv.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Use rbenv
22

3-
Alternative to `rvm`.
4-
53
List all available versions
64

75
```shell
@@ -38,6 +36,8 @@ Set local version
3836
rbenv local 2.2.1
3937
```
4038

39+
An alternative is `rvm`.
40+
4141
## Resources and References
4242

4343
- [rbenv cheatsheet](https://devhints.io/rbenv)

ruby/use_ruby.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# use ruby
2+
3+
## Learn Ruby
4+
5+
Check out the free curriculum at [Exercism](https://exercism.org/tracks/ruby).
6+
7+
## Resources and References
8+
9+
- [Ruby website](https://www.ruby-lang.org/en/)

ruby/use_rvm.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Use rvm
22

3-
Alternative to rbenv
3+
Alternative to **rbenv**.
44

5-
TODO
5+
Currently I use **rbenv**, but this is worth a look.
66

7-
## References
7+
## Resources and References
88

99
- [use rbenv](use_rbenv.md)
1010
- [rvm.io](https://rvm.io/)

0 commit comments

Comments
 (0)