File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,6 +12,6 @@ Just an IT man portfolio
1212* [ Emoji CSS] [ gh-emoji ]
1313* [ Web Counter] [ hitwebcounter ]
1414
15- [ ogl-resume ] : < https://onepagelove.com/minimal-resume >
16- [ gh-emoji ] : < https://afeld.github.io/emoji-css/ >
17- [ hitwebcounter ] : < http://www.hitwebcounter.com >
15+ [ ogl-resume ] : https://onepagelove.com/minimal-resume
16+ [ gh-emoji ] : https://afeld.github.io/emoji-css/
17+ [ hitwebcounter ] : http://www.hitwebcounter.com
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ defaults:
7373 layout : page_md
7474 # posts
7575 - scope :
76- path : " collections/_posts/ "
76+ path : " collections/_posts"
7777 type : " posts"
7878 values :
7979 layout : post
Original file line number Diff line number Diff line change 5555
5656 - name : " RubyGems"
5757 url : " https://rubygems.org/"
58- desc : " Used to interact with 3rd-party Python packages "
58+ desc : " A tool designed to easily manage of gems, which are standardized Ruby programs and libraries "
5959
6060 - name : " pip"
6161 url : " https://pip.pypa.io/"
62- desc : " A tool designed to easily manage of gems, mean standardized Ruby programs and libraries "
62+ desc : " Used to interact with 3rd-party Python packages "
6363
6464- group : Remote Control
6565 tools :
9898
9999- group : Console
100100 tools :
101+ - name : " rake"
102+ url : " https://ruby.github.io/rake"
103+ desc : " Lightweight but powerful automation tool programmed by Ruby"
104+
101105 - name : " glances"
102106 url : " https://github.com/nicolargo/glances"
103107 desc : " Cross-platform curses-based system monitoring tool"
Original file line number Diff line number Diff line change 1717
1818 - name : " Vim"
1919 url : " https://www.vim.org/download.php"
20- desc : " Improved version of Unix default editor 'Vi', most common and fit editor to use in the terminal"
20+ desc : " Improved version of Unix default editor 'Vi', most common and fittest editor to use in the terminal"
2121
2222 - name : " Atom"
2323 url : " https://atom.io/"
24- desc : " Published by GitHub, a cross-platform editor providing clean project collaboration and organization tools"
24+ desc : " Published by GitHub, a cross-platform editor providing good project collaboration and organization tools"
2525
2626- group : Terminal
2727 tools :
Original file line number Diff line number Diff line change 11---
22title : " Happy Palindrome Day with Jekyll notes"
33tags : [web, jekyll, ruby]
4- category :
4+ category : " "
55comment : true
66---
77
Original file line number Diff line number Diff line change 1010
1111class String
1212 def formatted
13- !( self . end_with? ( '.' ) || self . end_with? ( '?' ) || self . end_with? ( '!' ) ) ? ( self . strip + "." ) : self . strip
13+ self . strip!
14+ !self . match? ( /[[:punct:]]/ ) ? ( self + "." ) : self
1415 end
1516end
1617
You can’t perform that action at this time.
0 commit comments