devlopr 0.2.7 → 0.2.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e66c4be9a678465ff49cfdfc301a69c4a17f4c393aa2d93f24edae473be838db
4
- data.tar.gz: 883e32c7a93bfea65d9162abb6715808303b85b4cdd423e0c72e1444371e2e4b
3
+ metadata.gz: 3f2efa51f202e56c7462a3d08b50e7b96f41d759b32bfd2ad80401075b461699
4
+ data.tar.gz: 8e49bfb975c413c5e30f6c1a8b828263dbb21a6b3373282998770826b83d571f
5
5
  SHA512:
6
- metadata.gz: 992960ad560aca3ad50839fe95505fd323e0fa32597ea08baee500cae08fb644a4ad1af12cf4a706ae802649cd48134d5bc093e433848ce715785f32291452fd
7
- data.tar.gz: e4759b72303779b63cd6f0f53be9267369e33d65bafa9be0b9d0acbf58540b61c879362d8a62b706419c929a679a0cdb605d485e8ee1c657c124bfb9d3c6b966
6
+ metadata.gz: 2ec46d0451a509af764b1fc14b1904264380fe2ceb789b012959fab197b8b31d63bae8b2861eb0ef402067122f8e2f7d0753dcb5a6add927222c5253b46e89f4
7
+ data.tar.gz: 7d2811ce0ab532065bcd0cd1f55387ce094bf87e1ef6af13efccf5d855a15a3215e29647ff6f9487b1919a32371c9bd8c47aba409e7dd34e0bc525e6b9c01a64
@@ -0,0 +1,15 @@
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
@@ -0,0 +1,60 @@
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
+ ```
@@ -0,0 +1,245 @@
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 ADDED
@@ -0,0 +1,28 @@
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
+
data/categories/git.md ADDED
@@ -0,0 +1,12 @@
1
+ ---
2
+ layout: page
3
+ permalink: /blog/categories/git
4
+ ---
5
+
6
+ <h3> Posts by Category : {{ page.title }} </h3>
7
+
8
+ <div class="card">
9
+ {% for post in site.categories.git %}
10
+ <li class="category-posts"><span>{{ post.date | date_to_string }}</span> &nbsp; <a href="{{ post.url }}">{{ post.title }}</a></li>
11
+ {% endfor %}
12
+ </div>
@@ -0,0 +1,12 @@
1
+ ---
2
+ layout: page
3
+ permalink: /blog/categories/jekyll
4
+ ---
5
+
6
+ <h3> Posts by Category : {{ page.title }} </h3>
7
+
8
+ <div class="card">
9
+ {% for post in site.categories.jekyll %}
10
+ <li class="category-posts"><span>{{ post.date | date_to_string }}</span> &nbsp; <a href="{{ post.url }}">{{ post.title }}</a></li>
11
+ {% endfor %}
12
+ </div>
@@ -0,0 +1,12 @@
1
+ ---
2
+ layout: page
3
+ permalink: /blog/categories/web-development
4
+ ---
5
+
6
+ <h3> Posts by Category : {{ page.title }} </h3>
7
+
8
+ <div class="card">
9
+ {% for post in site.categories.web-development %}
10
+ <li class="category-posts"><span>{{ post.date | date_to_string }}</span> &nbsp; <a href="{{ post.url }}">{{ post.title }}</a></li>
11
+ {% endfor %}
12
+ </div>
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.2.7
4
+ version: 0.2.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sujay Kundu
@@ -139,6 +139,9 @@ files:
139
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
142
145
  - _sass/devlog.scss
143
146
  - assets/css/main.scss
144
147
  - assets/img/favicon.ico
@@ -171,6 +174,10 @@ files:
171
174
  - assets/img/work/microsoft.png
172
175
  - assets/img/work/skillenza.png
173
176
  - assets/img/zoom.jpg
177
+ - categories/all.md
178
+ - categories/git.md
179
+ - categories/jekyll.md
180
+ - categories/web-development.md
174
181
  homepage: https://github.com/sujaykundu777/devlopr-jekyll
175
182
  licenses:
176
183
  - MIT