File tree Expand file tree Collapse file tree 6 files changed +15
-10
lines changed Expand file tree Collapse file tree 6 files changed +15
-10
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,6 @@ Just an IT man portfolio
12
12
* [ Emoji CSS] [ gh-emoji ]
13
13
* [ Web Counter] [ hitwebcounter ]
14
14
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:
73
73
layout : page_md
74
74
# posts
75
75
- scope :
76
- path : " collections/_posts/ "
76
+ path : " collections/_posts"
77
77
type : " posts"
78
78
values :
79
79
layout : post
Original file line number Diff line number Diff line change 55
55
56
56
- name : " RubyGems"
57
57
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 "
59
59
60
60
- name : " pip"
61
61
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 "
63
63
64
64
- group : Remote Control
65
65
tools :
98
98
99
99
- group : Console
100
100
tools :
101
+ - name : " rake"
102
+ url : " https://ruby.github.io/rake"
103
+ desc : " Lightweight but powerful automation tool programmed by Ruby"
104
+
101
105
- name : " glances"
102
106
url : " https://github.com/nicolargo/glances"
103
107
desc : " Cross-platform curses-based system monitoring tool"
Original file line number Diff line number Diff line change 17
17
18
18
- name : " Vim"
19
19
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"
21
21
22
22
- name : " Atom"
23
23
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"
25
25
26
26
- group : Terminal
27
27
tools :
Original file line number Diff line number Diff line change 1
1
---
2
2
title : " Happy Palindrome Day with Jekyll notes"
3
3
tags : [web, jekyll, ruby]
4
- category :
4
+ category : " "
5
5
comment : true
6
6
---
7
7
Original file line number Diff line number Diff line change 10
10
11
11
class String
12
12
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
14
15
end
15
16
end
16
17
You can’t perform that action at this time.
0 commit comments