devlopr 0.2.9 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE.txt +21 -21
- data/README.md +58 -154
- data/_includes/activity.html +8 -8
- data/_includes/footer.html +6 -6
- data/_includes/head.html +43 -43
- data/_includes/header.html +59 -59
- data/_includes/newsletter.html +15 -15
- data/_includes/share.html +12 -12
- data/_layouts/{home.html → about.html} +104 -104
- data/_layouts/blog.html +58 -58
- data/_layouts/default.html +21 -21
- data/_layouts/page.html +8 -8
- data/_layouts/post.html +101 -101
- data/_sass/devlog.scss +133 -133
- data/assets/css/main.scss +4 -4
- data/assets/img/projects/Music.png +0 -0
- data/assets/img/projects/blogmapia.png +0 -0
- data/assets/img/projects/frutzi.png +0 -0
- data/assets/img/projects/klj.png +0 -0
- data/assets/img/projects/musifier.png +0 -0
- data/assets/img/projects/peb.png +0 -0
- data/assets/img/projects/programmingebooks_frnt.png +0 -0
- data/assets/img/projects/screencapture-file-C-Users-Sujay-20Kundu-Downloads-Co.png +0 -0
- data/assets/img/projects/screenshotmy.png +0 -0
- data/assets/img/projects/snap2.jpg +0 -0
- data/assets/img/projects/snap3.jpg +0 -0
- metadata +3 -10
- data/_posts/2017-11-19-welcome-to-jekyll.markdown +0 -15
- data/_posts/2017-11-23-using-git-like-pro.md +0 -60
- data/_posts/2017-12-17-useful-tools-for-web-developers.md +0 -245
- data/categories/all.md +0 -28
- data/categories/git.md +0 -12
- data/categories/jekyll.md +0 -12
- data/categories/web-development.md +0 -12
data/_sass/devlog.scss
CHANGED
|
@@ -1,134 +1,134 @@
|
|
|
1
|
-
body {
|
|
2
|
-
background-color: #D6DDE1 !important;
|
|
3
|
-
font-family: 'Quicksand', sans-serif !important;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
header {
|
|
7
|
-
background-color: #F5F5F5;
|
|
8
|
-
box-shadow: 10px 0px 8px;
|
|
9
|
-
height: 200px;
|
|
10
|
-
width: 100%;
|
|
11
|
-
padding: 11px;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.container-fluid {
|
|
15
|
-
margin: 0px !important;
|
|
16
|
-
padding: 0px !important;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.profile-img {
|
|
20
|
-
width: 150px;
|
|
21
|
-
height: 150px;
|
|
22
|
-
margin-left: 20px;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.profile-name {
|
|
26
|
-
margin-top: 20px;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.profile-bio,
|
|
30
|
-
.profile-links {
|
|
31
|
-
margin-top: 5px;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.border {
|
|
35
|
-
border: 1px solid #000;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
.center {
|
|
39
|
-
text-align: center;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.card {
|
|
43
|
-
margin: 20px !important;
|
|
44
|
-
padding: 20px !important;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.social-link {
|
|
48
|
-
color: #262222;
|
|
49
|
-
font-size: 15px;
|
|
50
|
-
padding: 5px;
|
|
51
|
-
margin: 2px;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
#navigation {
|
|
55
|
-
margin-top: 50px;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
.nav-link {
|
|
59
|
-
font-size: 24px !important;
|
|
60
|
-
color: #000;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
footer {
|
|
64
|
-
width: 100%;
|
|
65
|
-
height: 70px;
|
|
66
|
-
text-align: center;
|
|
67
|
-
padding: 20px;
|
|
68
|
-
background-color: #F5F5F5;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
.company-logo {
|
|
72
|
-
width: 100px;
|
|
73
|
-
height: 100px;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
.project-img {
|
|
77
|
-
width: 300px;
|
|
78
|
-
height: 200px;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.author-profile-img {
|
|
82
|
-
width: 50px;
|
|
83
|
-
height: 50px;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
.project-desc {
|
|
87
|
-
float: left;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
.project-link {
|
|
91
|
-
color: gray;
|
|
92
|
-
font-size: 15px;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
.card-header {
|
|
96
|
-
border-radius: 0% !important;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
.blog-post {
|
|
100
|
-
width: 350px;
|
|
101
|
-
height: auto;
|
|
102
|
-
margin: 20px !important;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
.responsive-table {
|
|
106
|
-
display: block;
|
|
107
|
-
width: 100%;
|
|
108
|
-
overflow-x: auto;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
pre,
|
|
112
|
-
code {
|
|
113
|
-
overflow: auto;
|
|
114
|
-
white-space: pre-wrap;
|
|
115
|
-
word-wrap: break-word;
|
|
116
|
-
word-break: break-all;
|
|
117
|
-
font-family: Courier, monospace;
|
|
118
|
-
font-size: 16px;
|
|
119
|
-
background-color: #F4F6F8;
|
|
120
|
-
padding: 5px;
|
|
121
|
-
display: block;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
@media (min-width: 320px) and (max-width: 780px) {
|
|
125
|
-
header {
|
|
126
|
-
height: auto;
|
|
127
|
-
text-align: center;
|
|
128
|
-
}
|
|
129
|
-
.blog-post {
|
|
130
|
-
width: 300px;
|
|
131
|
-
height: auto;
|
|
132
|
-
margin-left: -20px !important;
|
|
133
|
-
}
|
|
1
|
+
body {
|
|
2
|
+
background-color: #D6DDE1 !important;
|
|
3
|
+
font-family: 'Quicksand', sans-serif !important;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
header {
|
|
7
|
+
background-color: #F5F5F5;
|
|
8
|
+
box-shadow: 10px 0px 8px;
|
|
9
|
+
height: 200px;
|
|
10
|
+
width: 100%;
|
|
11
|
+
padding: 11px;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.container-fluid {
|
|
15
|
+
margin: 0px !important;
|
|
16
|
+
padding: 0px !important;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.profile-img {
|
|
20
|
+
width: 150px;
|
|
21
|
+
height: 150px;
|
|
22
|
+
margin-left: 20px;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.profile-name {
|
|
26
|
+
margin-top: 20px;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.profile-bio,
|
|
30
|
+
.profile-links {
|
|
31
|
+
margin-top: 5px;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.border {
|
|
35
|
+
border: 1px solid #000;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.center {
|
|
39
|
+
text-align: center;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.card {
|
|
43
|
+
margin: 20px !important;
|
|
44
|
+
padding: 20px !important;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.social-link {
|
|
48
|
+
color: #262222;
|
|
49
|
+
font-size: 15px;
|
|
50
|
+
padding: 5px;
|
|
51
|
+
margin: 2px;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
#navigation {
|
|
55
|
+
margin-top: 50px;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.nav-link {
|
|
59
|
+
font-size: 24px !important;
|
|
60
|
+
color: #000;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
footer {
|
|
64
|
+
width: 100%;
|
|
65
|
+
height: 70px;
|
|
66
|
+
text-align: center;
|
|
67
|
+
padding: 20px;
|
|
68
|
+
background-color: #F5F5F5;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.company-logo {
|
|
72
|
+
width: 100px;
|
|
73
|
+
height: 100px;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.project-img {
|
|
77
|
+
width: 300px;
|
|
78
|
+
height: 200px;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.author-profile-img {
|
|
82
|
+
width: 50px;
|
|
83
|
+
height: 50px;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.project-desc {
|
|
87
|
+
float: left;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.project-link {
|
|
91
|
+
color: gray;
|
|
92
|
+
font-size: 15px;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.card-header {
|
|
96
|
+
border-radius: 0% !important;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.blog-post {
|
|
100
|
+
width: 350px;
|
|
101
|
+
height: auto;
|
|
102
|
+
margin: 20px !important;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.responsive-table {
|
|
106
|
+
display: block;
|
|
107
|
+
width: 100%;
|
|
108
|
+
overflow-x: auto;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
pre,
|
|
112
|
+
code {
|
|
113
|
+
overflow: auto;
|
|
114
|
+
white-space: pre-wrap;
|
|
115
|
+
word-wrap: break-word;
|
|
116
|
+
word-break: break-all;
|
|
117
|
+
font-family: Courier, monospace;
|
|
118
|
+
font-size: 16px;
|
|
119
|
+
background-color: #F4F6F8;
|
|
120
|
+
padding: 5px;
|
|
121
|
+
display: block;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
@media (min-width: 320px) and (max-width: 780px) {
|
|
125
|
+
header {
|
|
126
|
+
height: auto;
|
|
127
|
+
text-align: center;
|
|
128
|
+
}
|
|
129
|
+
.blog-post {
|
|
130
|
+
width: 300px;
|
|
131
|
+
height: auto;
|
|
132
|
+
margin-left: -20px !important;
|
|
133
|
+
}
|
|
134
134
|
}
|
data/assets/css/main.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
---
|
|
2
|
-
# style
|
|
3
|
-
---
|
|
4
|
-
|
|
1
|
+
---
|
|
2
|
+
# style
|
|
3
|
+
---
|
|
4
|
+
|
|
5
5
|
@import "devlog";
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/assets/img/projects/klj.png
CHANGED
|
File without changes
|
|
File without changes
|
data/assets/img/projects/peb.png
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: devlopr
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sujay Kundu
|
|
@@ -134,14 +134,11 @@ files:
|
|
|
134
134
|
- _includes/newsletter.html
|
|
135
135
|
- _includes/share.html
|
|
136
136
|
- _includes/sidebar.html
|
|
137
|
+
- _layouts/about.html
|
|
137
138
|
- _layouts/blog.html
|
|
138
139
|
- _layouts/default.html
|
|
139
|
-
- _layouts/home.html
|
|
140
140
|
- _layouts/page.html
|
|
141
141
|
- _layouts/post.html
|
|
142
|
-
- _posts/2017-11-19-welcome-to-jekyll.markdown
|
|
143
|
-
- _posts/2017-11-23-using-git-like-pro.md
|
|
144
|
-
- _posts/2017-12-17-useful-tools-for-web-developers.md
|
|
145
142
|
- _sass/devlog.scss
|
|
146
143
|
- assets/css/main.scss
|
|
147
144
|
- assets/img/favicon.ico
|
|
@@ -174,10 +171,6 @@ files:
|
|
|
174
171
|
- assets/img/work/microsoft.png
|
|
175
172
|
- assets/img/work/skillenza.png
|
|
176
173
|
- assets/img/zoom.jpg
|
|
177
|
-
- categories/all.md
|
|
178
|
-
- categories/git.md
|
|
179
|
-
- categories/jekyll.md
|
|
180
|
-
- categories/web-development.md
|
|
181
174
|
homepage: https://github.com/sujaykundu777/devlopr-jekyll
|
|
182
175
|
licenses:
|
|
183
176
|
- MIT
|
|
@@ -198,7 +191,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
198
191
|
version: '0'
|
|
199
192
|
requirements: []
|
|
200
193
|
rubyforge_project:
|
|
201
|
-
rubygems_version: 2.7.6
|
|
194
|
+
rubygems_version: 2.7.6.2
|
|
202
195
|
signing_key:
|
|
203
196
|
specification_version: 4
|
|
204
197
|
summary: A Theme built for developers
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
layout: post
|
|
3
|
-
title: Welcome to my Blog!
|
|
4
|
-
author: Sujay Kundu
|
|
5
|
-
date: '2017-11-19 14:35:23 +0530'
|
|
6
|
-
category: web-development
|
|
7
|
-
summary: My First Post
|
|
8
|
-
thumbnail: posts/hello.jpg
|
|
9
|
-
---
|
|
10
|
-
|
|
11
|
-
I will be posting here, tutorials on web development and stuff that interests me related to design and coding.
|
|
12
|
-
|
|
13
|
-
Mostly I document my process while building something, which helps me in future development.
|
|
14
|
-
|
|
15
|
-
Thanks ! Keep in touch
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
title: Using Git Like Pro
|
|
3
|
-
layout: post
|
|
4
|
-
summary: Learn how to use all git commands
|
|
5
|
-
categories:
|
|
6
|
-
- git
|
|
7
|
-
- web-development
|
|
8
|
-
thumbnail: posts/gitflow-workflow.png
|
|
9
|
-
author: Sujay Kundu
|
|
10
|
-
---
|
|
11
|
-
|
|
12
|
-
# Useful git commands
|
|
13
|
-
|
|
14
|
-
Remove a remote origin for the project
|
|
15
|
-
|
|
16
|
-
```
|
|
17
|
-
$ git remote -v
|
|
18
|
-
```
|
|
19
|
-
|
|
20
|
-
View current remotes
|
|
21
|
-
|
|
22
|
-
```
|
|
23
|
-
origin https://github.com/OWNER/REPOSITORY.git (fetch)
|
|
24
|
-
origin https://github.com/OWNER/REPOSITORY.git (push)
|
|
25
|
-
destination https://github.com/FORKER/REPOSITORY.git (fetch)
|
|
26
|
-
destination https://github.com/FORKER/REPOSITORY.git (push)
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
```
|
|
30
|
-
$ git remote rm origin
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
`$ git remote rm destination`
|
|
34
|
-
|
|
35
|
-
Add a remote origin for the project
|
|
36
|
-
|
|
37
|
-
`$ git remote add origin https://github.com/OWNER/REPOSITORY.git`
|
|
38
|
-
|
|
39
|
-
Check current remotes
|
|
40
|
-
|
|
41
|
-
```
|
|
42
|
-
origin https://github.com/OWNER/REPOSITORY.git (fetch)
|
|
43
|
-
origin https://github.com/OWNER/REPOSITORY.git (push)
|
|
44
|
-
```
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
Push a new local branch to a remote Git repository and track it too
|
|
48
|
-
|
|
49
|
-
Create a new branch:
|
|
50
|
-
```
|
|
51
|
-
git checkout -b feature_branch_name
|
|
52
|
-
```
|
|
53
|
-
|
|
54
|
-
Edit, add and commit your files.
|
|
55
|
-
|
|
56
|
-
Push your branch to the remote repository:
|
|
57
|
-
|
|
58
|
-
```
|
|
59
|
-
git push -u origin feature_branch_name
|
|
60
|
-
```
|
|
@@ -1,245 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
title: Useful Tools For Developers
|
|
3
|
-
layout: post
|
|
4
|
-
author: Sujay Kundu
|
|
5
|
-
categories:
|
|
6
|
-
- web-development
|
|
7
|
-
- productivity
|
|
8
|
-
summary: List of tools useful for Web Developers and Designers
|
|
9
|
-
thumbnail: posts/useful-tools.jpg
|
|
10
|
-
---
|
|
11
|
-
|
|
12
|
-
#### CSS Frameworks
|
|
13
|
-
|
|
14
|
-
- [Bootstrap](http://getbootstrap.com/)
|
|
15
|
-
- [Foundation App Framework](https://foundation.zurb.com/)
|
|
16
|
-
- [Bulma](https://bulma.io/)
|
|
17
|
-
- [UIKit](https://getuikit.com)
|
|
18
|
-
- [Semantic UI](https://semantic-ui.com/)
|
|
19
|
-
- [Materialize](http://materializecss.com/)
|
|
20
|
-
- [Carbon Design](http://carbondesignsystem.com/)
|
|
21
|
-
|
|
22
|
-
#### Bootstrap
|
|
23
|
-
|
|
24
|
-
- [Bootswatch](http://bootswatch.com)
|
|
25
|
-
- [Bootsnip](http://bootsnip.com)
|
|
26
|
-
- [Bootsnav](http://bootsnav.com)
|
|
27
|
-
|
|
28
|
-
#### Editors and IDE
|
|
29
|
-
|
|
30
|
-
- [Atom Editor](http://atom.io)
|
|
31
|
-
- Visual Studio Code
|
|
32
|
-
- Sublime Text
|
|
33
|
-
- Notepad++
|
|
34
|
-
- Webstorm IDE
|
|
35
|
-
- Adobe Dreamweaver
|
|
36
|
-
- Brackets
|
|
37
|
-
|
|
38
|
-
#### Image Manipulation and UI
|
|
39
|
-
|
|
40
|
-
- Adobe Photoshop
|
|
41
|
-
- Inkscape
|
|
42
|
-
- Adobe Illustrator
|
|
43
|
-
- Sketch
|
|
44
|
-
- [Macaw Scarlet](http://scarlet.macaw.co/)
|
|
45
|
-
- Inkscape
|
|
46
|
-
- Gravit Designer
|
|
47
|
-
|
|
48
|
-
#### Stock Photos and images
|
|
49
|
-
|
|
50
|
-
- [Magdeleine](https://magdeleine.co/)
|
|
51
|
-
- [Pexels](http://pixels.com)
|
|
52
|
-
- [A Hoard of Pixels](http://www.ahoardofpixels.com/)
|
|
53
|
-
- [Unsplash](https://unsplash.com/)
|
|
54
|
-
- [Pixabay](https://pixabay.com/)
|
|
55
|
-
- [Stocksnap](https://stocksnap.io/)
|
|
56
|
-
|
|
57
|
-
#### Servers
|
|
58
|
-
|
|
59
|
-
- [Caddy](https://caddyserver.com/)
|
|
60
|
-
|
|
61
|
-
#### Local Servers
|
|
62
|
-
|
|
63
|
-
- [ngrok](https://ngrok.com/)
|
|
64
|
-
|
|
65
|
-
#### Prototyping and Mockups
|
|
66
|
-
|
|
67
|
-
- [Invision App](https://www.invisionapp.com/)
|
|
68
|
-
- [Origami Design](https://origami.design/)
|
|
69
|
-
- [Moqups](https://moqups.com/)
|
|
70
|
-
|
|
71
|
-
#### Graphics Design
|
|
72
|
-
|
|
73
|
-
- [Dribbble](http://dribbble.com)
|
|
74
|
-
|
|
75
|
-
#### Image Compression and Optimization
|
|
76
|
-
|
|
77
|
-
- [Kraken](https://kraken.io/)
|
|
78
|
-
|
|
79
|
-
#### Themes and Templates
|
|
80
|
-
|
|
81
|
-
- [Best of Themes](https://www.bestofthemes.com/)
|
|
82
|
-
- [Devitems](https://devitems.com/)
|
|
83
|
-
|
|
84
|
-
#### Sounds (Productivity)
|
|
85
|
-
|
|
86
|
-
- [Hipstersound](https://hipstersound.com/)
|
|
87
|
-
- [Noisli](https://www.noisli.com/)
|
|
88
|
-
|
|
89
|
-
#### Code Management
|
|
90
|
-
|
|
91
|
-
- [Github](http://github.com)
|
|
92
|
-
- [Gitlab](http://gitlab.com)
|
|
93
|
-
- [Bitbucket](http://bitbucket.com)
|
|
94
|
-
|
|
95
|
-
#### Code Quality and Testing
|
|
96
|
-
|
|
97
|
-
- [Codacy](http://codacy.com)
|
|
98
|
-
- [Bettercodehub](https://bettercodehub.com/)
|
|
99
|
-
|
|
100
|
-
#### CI/CD
|
|
101
|
-
|
|
102
|
-
- [Buddybuild](https://www.buddybuild.com)
|
|
103
|
-
- [Travis](https://travis-ci.org/)
|
|
104
|
-
- [Bitrise](https://www.bitrise.io/)
|
|
105
|
-
- [Jenkins](https://jenkins.io/)
|
|
106
|
-
- [Gitlab](http://gitlab.com)
|
|
107
|
-
- [CircleCI](https://circleci.com/)
|
|
108
|
-
- [Codeship](http://codeship.com)
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
#### Team Chat
|
|
112
|
-
|
|
113
|
-
- Slack
|
|
114
|
-
- Telegram
|
|
115
|
-
- Flock
|
|
116
|
-
|
|
117
|
-
#### Task Management
|
|
118
|
-
|
|
119
|
-
- Trello
|
|
120
|
-
|
|
121
|
-
#### Automation
|
|
122
|
-
|
|
123
|
-
- [Zapier](https://zapier.com/)
|
|
124
|
-
|
|
125
|
-
#### Sales CRM
|
|
126
|
-
|
|
127
|
-
- [Close](http://close.io)
|
|
128
|
-
- [Pipedrive](https://www.pipedrive.com/)
|
|
129
|
-
- [Salesforce](http://salesforce.com/)
|
|
130
|
-
- [Drip](https://www.drip.com/)
|
|
131
|
-
- [Reply](https://reply.io)
|
|
132
|
-
|
|
133
|
-
#### Virtualization and Containerization
|
|
134
|
-
|
|
135
|
-
- [Docker](https://www.docker.com/)
|
|
136
|
-
|
|
137
|
-
#### Email Automation and Marketing
|
|
138
|
-
|
|
139
|
-
- [Mailchimp](http://bigrock.in)
|
|
140
|
-
- [Sendgrid](https://app.sendgrid.com)
|
|
141
|
-
- Amazon SES
|
|
142
|
-
- [Mailinator](https://www.mailinator.com/)
|
|
143
|
-
- [Mailgun](https://mailgun.com) - Email Automation Api
|
|
144
|
-
|
|
145
|
-
#### Fonts and Icons
|
|
146
|
-
|
|
147
|
-
- [Font Awesome](http://fontawesome.io/icons)
|
|
148
|
-
- [Iconic](https://useiconic.com/)
|
|
149
|
-
- [Open Iconic](https://useiconic.com/open/)
|
|
150
|
-
- [Iconjar](https://geticonjar.com/)
|
|
151
|
-
- [Icomoon](https://icomoon.io/)
|
|
152
|
-
- [Foundation Icons](https://zurb.com/playground/foundation-icon-fonts-3)
|
|
153
|
-
|
|
154
|
-
#### Boilerplates
|
|
155
|
-
|
|
156
|
-
- [HTML5](http://html5boilerplate.com)
|
|
157
|
-
- [Yeoman](http://yeoman.io)
|
|
158
|
-
|
|
159
|
-
#### Templates
|
|
160
|
-
|
|
161
|
-
- [HTML5UP](http://html5up.net)
|
|
162
|
-
|
|
163
|
-
#### Domain Search
|
|
164
|
-
|
|
165
|
-
- [Domainr](https://domainr.com)
|
|
166
|
-
- [Godaddy](http://in.godaddy.com)
|
|
167
|
-
- [Bigrock](http://bigrock.in)
|
|
168
|
-
- [Dot.tk](http://dot.tk)
|
|
169
|
-
|
|
170
|
-
#### Analytics
|
|
171
|
-
|
|
172
|
-
- [Google Analaytics](http://analytics.google.com)
|
|
173
|
-
|
|
174
|
-
#### Cloud Application Hosting
|
|
175
|
-
|
|
176
|
-
- [Digitalocean](https://digitalocean.com/)
|
|
177
|
-
- [Heroku](http://www.heroku.com/)
|
|
178
|
-
- [OpenShift](https://www.openshift.com/)
|
|
179
|
-
- [Cloud9](https://c9.io/)
|
|
180
|
-
- [Code Anywhere](http://codeanywhere.com/)
|
|
181
|
-
|
|
182
|
-
#### Hackathons and Events
|
|
183
|
-
|
|
184
|
-
- [Devpost](https://devpost.com/)
|
|
185
|
-
- [Hackerearth](http://hackerearth.com)
|
|
186
|
-
- [Hackerrank](http://hackerrank.com)
|
|
187
|
-
- [Skillenza](http://skillenza.com)
|
|
188
|
-
- [Major League Hacking](https://mlh.io/)
|
|
189
|
-
|
|
190
|
-
#### CSS Frameworks
|
|
191
|
-
|
|
192
|
-
- [Bootstrap](http://getbootstrap.com)
|
|
193
|
-
- [Foundation For App Framework](http://foundation.zurb.com)
|
|
194
|
-
|
|
195
|
-
#### Payments
|
|
196
|
-
|
|
197
|
-
- [PayuMoney](https://www.payumoney.com/)
|
|
198
|
-
|
|
199
|
-
#### Tutorials
|
|
200
|
-
|
|
201
|
-
- [Hackr.io](https://hackr.io/)
|
|
202
|
-
- [Instructy](https://design.instructy.io/)
|
|
203
|
-
|
|
204
|
-
#### Courses
|
|
205
|
-
|
|
206
|
-
- [Eduonix](http://eduonix.com)
|
|
207
|
-
- [edx](http://edx.org)
|
|
208
|
-
|
|
209
|
-
#### Url Shortners
|
|
210
|
-
|
|
211
|
-
- [Git.io](https://git.io/)
|
|
212
|
-
- [is.gd](https://is.gd)
|
|
213
|
-
- [bit.ly](https:/bit.ly)
|
|
214
|
-
|
|
215
|
-
#### Freebies
|
|
216
|
-
|
|
217
|
-
- [Freebies Bug](https://freebiesbug.com/)
|
|
218
|
-
|
|
219
|
-
#### Bug Tracking and Reporting
|
|
220
|
-
|
|
221
|
-
- [Usersnap](https://usersnap.com/)
|
|
222
|
-
- [Zipboard](https://www.zipBoard.co)
|
|
223
|
-
|
|
224
|
-
#### API development documentation and testing
|
|
225
|
-
- [Api Blueprint](https://apiblueprint.org/)
|
|
226
|
-
- [Apiary](https://apiary.io)
|
|
227
|
-
- [Postman](https://www.getpostman.com/)
|
|
228
|
-
- [httpbin](https://httpbin.org)
|
|
229
|
-
- [Hurl](https://www.hurl.it/)
|
|
230
|
-
|
|
231
|
-
#### Free API's
|
|
232
|
-
|
|
233
|
-
- [NewsApi](https://newsapi.org/)
|
|
234
|
-
- [Json Placeholder](http://jsonplaceholder.typicode.com/)
|
|
235
|
-
- [Email Lookup and Verification](https://www.voilanorbert.com/)
|
|
236
|
-
|
|
237
|
-
#### Email Campaign Management
|
|
238
|
-
|
|
239
|
-
- [Mailchimp](http://mailchimp.com)
|
|
240
|
-
- [Zoho](http://zoho.com)
|
|
241
|
-
|
|
242
|
-
#### Other Useful Tools
|
|
243
|
-
|
|
244
|
-
- [Hilite](http://hilite.me/) - Source Code Beautifier
|
|
245
|
-
- [builtwith](https://builtwith.com/) - Know the technologies companies are using
|
data/categories/all.md
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
layout: page
|
|
3
|
-
permalink: /blog/categories/
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
<h3> {{ page.title }} </h3>
|
|
8
|
-
|
|
9
|
-
<div id="categories">
|
|
10
|
-
{% for tag in site.categories %}
|
|
11
|
-
<div class="category-box" >
|
|
12
|
-
{% capture tag_name %}{{ tag | first }}{% endcapture %}
|
|
13
|
-
<div id="#{{ tag_name | slugize }}"></div>
|
|
14
|
-
<h4 class="tag-head"><a href="{{ site.baseurl }}/blog/categories/{{ tag_name }}">{{ tag_name }}</a></h4>
|
|
15
|
-
<a name="{{ tag_name | slugize }}"></a>
|
|
16
|
-
{% for post in site.tags[tag_name] %}
|
|
17
|
-
<article class="center">
|
|
18
|
-
<h6 ><a href="{{ site.baseurl }}{{ post.url }}">{{post.title}}</a></h6>
|
|
19
|
-
</article>
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
{% endfor %}
|
|
23
|
-
|
|
24
|
-
</div>
|
|
25
|
-
{% endfor %}
|
|
26
|
-
</div>
|
|
27
|
-
|
|
28
|
-
|