devlopr 0.3.6 → 0.3.7
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/README.md +9 -0
- data/_includes/blog_sidebar.html +0 -6
- data/_includes/blog_tags.html +1 -1
- data/_includes/coding_activity.html +2 -2
- data/_includes/footer.html +0 -4
- data/_includes/head.html +18 -31
- data/_includes/header.html +24 -21
- data/_layouts/about_me.html +81 -15
- data/_layouts/blog.html +57 -9
- data/_layouts/default.html +1 -2
- data/_sass/devlog.scss +12 -4
- data/assets/img/{projects/gamershub.png → gamershub.png} +0 -0
- data/assets/img/{work/google.png → google.png} +0 -0
- data/assets/img/{education/iit.jpeg → iit.jpeg} +0 -0
- data/assets/img/{work/microsoft.png → microsoft.png} +0 -0
- data/assets/img/{education/mit.png → mit.png} +0 -0
- data/assets/img/{education/oxford.png → oxford.png} +0 -0
- data/assets/img/programmingebooks.png +0 -0
- metadata +15 -83
- data/_includes/algolia_search.html +0 -63
- data/_includes/author_bio.html +0 -2
- data/_includes/author_education.html +0 -37
- data/_includes/author_projects.html +0 -23
- data/_includes/author_work_experience.html +0 -24
- data/_includes/blog_newsletters.html +0 -17
- data/_includes/blog_posts.html +0 -32
- data/_layouts/my_projects.html +0 -11
- data/assets/img/projects/hackify.png +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ed22c3a6d147a280eb894cf95340f74c5e0b0727f7b2af31c3c3a8e50f977841
|
|
4
|
+
data.tar.gz: f8b7349959fbda6ff3ffd69ff0495c1237df5d4f9c72890c2b91d16334b1590f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c9a85cde929c39c6269c941689713ededdbceada8541bbf90e9e097ba72e3334020a364d179379377d81631ba478abb9b08e602102b38cc8b6d2efb847de9f57
|
|
7
|
+
data.tar.gz: 40416d16c1021277452bf5ef8c87784b9634d2af6f478ef0f078e1ab403ef1c37cadf83e88c1223f3f8abca7dd5b3e5edd3dbb91d79be99a0cc09caf1c5ceea5
|
data/README.md
CHANGED
|
@@ -25,6 +25,15 @@
|
|
|
25
25
|

|
|
26
26
|
|
|
27
27
|
|
|
28
|
+
# Run using Docker
|
|
29
|
+
|
|
30
|
+
```
|
|
31
|
+
$ git clone
|
|
32
|
+
$ cd repo
|
|
33
|
+
$ export JEKYLL_VERSION=3.8
|
|
34
|
+
$ docker run --rm --volume="$PWD" -it jekyll/jekyll:$JEKYLL_VERSION jekyll build
|
|
35
|
+
$ jekyll serve
|
|
36
|
+
```
|
|
28
37
|
|
|
29
38
|
## Licence
|
|
30
39
|
|
data/_includes/blog_sidebar.html
CHANGED
data/_includes/blog_tags.html
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{% for tag in site.tags %} {% capture tag_name %}{{ tag | first }}{% endcapture %}
|
|
2
2
|
<div id="#{{ tag_name | slugize }}"></div>
|
|
3
3
|
<li class="tag-head">
|
|
4
|
-
<a href="{{ site.baseurl }}/blog/
|
|
4
|
+
<a href="{{ site.baseurl }}/blog/tags/{{ tag_name }}">{{ tag_name }}</a>
|
|
5
5
|
</li>
|
|
6
6
|
<a name="{{ tag_name | slugize }}"></a>
|
|
7
7
|
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
<!-- Pie Chart -->
|
|
4
4
|
<figure>
|
|
5
|
-
<embed src="https://wakatime.com/share/@
|
|
5
|
+
<embed src="https://wakatime.com/share/@{{site.wakatime_username }}/f540df00-f2d1-46e2-a360-da7e13ed8a66.svg"></embed>
|
|
6
6
|
</figure>
|
|
7
7
|
|
|
8
8
|
<!-- Hours Coded -->
|
|
9
9
|
<figure>
|
|
10
|
-
<embed src="https://wakatime.com/share/@
|
|
10
|
+
<embed src="https://wakatime.com/share/@{{site.wakatime_username }}/1550a9f1-d41a-4745-92a0-181a6fbb2456.svg"></embed>
|
|
11
11
|
</figure>
|
data/_includes/footer.html
CHANGED
data/_includes/head.html
CHANGED
|
@@ -1,18 +1,14 @@
|
|
|
1
1
|
<head>
|
|
2
2
|
<meta charset="utf-8">
|
|
3
|
-
|
|
3
|
+
|
|
4
4
|
<title>{{ site.title }} - {{ site.subtitle }}</title>
|
|
5
5
|
|
|
6
6
|
<meta http-equip="X-UA-Compatible" content="IE=edge">
|
|
7
7
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
8
8
|
|
|
9
|
-
<!-- Site Description -->
|
|
10
9
|
<meta name="description" content="{{ site.description }}">
|
|
11
|
-
|
|
12
|
-
<!-- Stylesheets goes here -->
|
|
10
|
+
|
|
13
11
|
<link rel="stylesheet" href="/assets/css/main.css" />
|
|
14
|
-
|
|
15
|
-
<!-- Favicon -->
|
|
16
12
|
<link rel="icon" href="/assets/img/favicon.ico" type="image/gif" sizes="16x16">
|
|
17
13
|
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
|
|
18
14
|
crossorigin="anonymous"></script>
|
|
@@ -24,29 +20,20 @@
|
|
|
24
20
|
crossorigin="anonymous">
|
|
25
21
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.0/css/all.css" integrity="sha384-lKuwvrZot6UHsBSfcMvOkWwlCMgc0TaWr+30HWe3a4ltaBwTZhyTEggF5tJv8tbt"
|
|
26
22
|
crossorigin="anonymous">
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
<
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
})};
|
|
44
|
-
js.src = "https://makerwidget.com/js/embed.js";
|
|
45
|
-
fjs.parentNode.insertBefore(js, fjs)
|
|
46
|
-
}(document, "script", "dhm"))
|
|
47
|
-
</script>
|
|
48
|
-
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
|
|
49
|
-
<!--[if lt IE 9]>
|
|
50
|
-
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
|
|
51
|
-
<![endif]-->
|
|
23
|
+
|
|
24
|
+
{% if jekyll.environment == "production" %}
|
|
25
|
+
|
|
26
|
+
<script>
|
|
27
|
+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
28
|
+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
29
|
+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
30
|
+
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
|
31
|
+
|
|
32
|
+
ga('create', '{{ site.google_analytics }}', 'auto');
|
|
33
|
+
ga('send', 'pageview');
|
|
34
|
+
</script>
|
|
35
|
+
{% endif %}
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
52
39
|
</head>
|
data/_includes/header.html
CHANGED
|
@@ -8,60 +8,63 @@
|
|
|
8
8
|
</a>
|
|
9
9
|
</div>
|
|
10
10
|
|
|
11
|
-
<div class="col-md-4">
|
|
11
|
+
<div class="col-md-4" id="author_details">
|
|
12
12
|
<h1 class="profile-name"> {{ site.title }}</h1>
|
|
13
13
|
<p class="profile-bio"> {{ site.subtitle }}</p>
|
|
14
14
|
<p class="profile-links">
|
|
15
|
+
{% if site.twitter_username %}
|
|
15
16
|
<a class="social-link" href="http://twitter.com/{{ site.twitter_username }}">
|
|
16
17
|
<i class="fab fa-twitter"></i>
|
|
17
18
|
</a>
|
|
19
|
+
{% endif %}
|
|
20
|
+
{% if site.facebook_username %}
|
|
18
21
|
<a class="social-link" href="http://facebook.com/{{ site.facebook_username }}">
|
|
19
22
|
<i class="fab fa-facebook-f"></i>
|
|
20
23
|
</a>
|
|
24
|
+
{% endif %}
|
|
25
|
+
{% if site.instagram_username %}
|
|
21
26
|
<a class="social-link" href="http://instagram.com/{{ site.instagram_username }}">
|
|
22
27
|
<i class="fab fa-instagram"></i>
|
|
23
28
|
</a>
|
|
29
|
+
{% endif %}
|
|
30
|
+
{% if site.medium_username %}
|
|
24
31
|
<a class="social-link" href="http://medium.com/@{{ site.medium_username }}">
|
|
25
32
|
<i class="fab fa-medium-m"></i>
|
|
26
33
|
</a>
|
|
34
|
+
{% endif %}
|
|
35
|
+
{% if site.github_username %}
|
|
27
36
|
<a class="social-link" href="http://github.com/{{ site.github_username }}">
|
|
28
37
|
<i class="fab fa-github"></i>
|
|
29
38
|
</a>
|
|
39
|
+
{% endif %}
|
|
40
|
+
{% if site.behance_username %}
|
|
30
41
|
<a class="social-link" href="http://behance.net/{{ site.behance_username }}">
|
|
31
42
|
<i class="fab fa-behance"></i>
|
|
32
43
|
</a>
|
|
44
|
+
{% endif %}
|
|
45
|
+
{% if site.linkedin_username %}
|
|
33
46
|
<a class="social-link" href="http://linkedin.com/in/{{ site.linkedin_username }}">
|
|
34
47
|
<i class="fab fa-linkedin-in"></i>
|
|
35
48
|
</a>
|
|
49
|
+
{% endif %}
|
|
50
|
+
{% if site.telegram_username %}
|
|
36
51
|
<a class="social-link" href="http://t.me/{{ site.telegram_username }}">
|
|
37
52
|
<i class="fab fa-telegram-plane"></i>
|
|
38
53
|
</a>
|
|
54
|
+
{% endif %}
|
|
39
55
|
</p>
|
|
40
56
|
|
|
41
57
|
</div>
|
|
42
58
|
<div class="col-md-6 center">
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
{% for
|
|
46
|
-
<li class="nav-item menu-item-{{ loop.index }}">
|
|
47
|
-
<a class="nav-link" href="{{ item.url }}" title="Go to {{ item.title }}">{{ item.title }}</a>
|
|
48
|
-
</li>
|
|
49
|
-
{% endfor %}
|
|
50
|
-
</ul>
|
|
51
|
-
|
|
52
|
-
<!-- <ul class="nav justify-content-end" id="navigation">
|
|
53
|
-
{%- assign default_paths = site.pages | map: "path" -%} {%- assign page_paths = site.header_pages | default: default_paths-%}
|
|
54
|
-
{%- if page_paths -%} {%- for path in page_paths -%} {%- assign my_page = site.pages | where: "path",path
|
|
55
|
-
| first -%} {%- if my_page.title -%}
|
|
59
|
+
|
|
60
|
+
<ul class="nav justify-content-end" id="navigation">
|
|
61
|
+
{% for i in site.urls %}
|
|
56
62
|
<li class="nav-item">
|
|
57
|
-
<a class="nav-link" href="{{
|
|
63
|
+
<a class="nav-link" href="{{ i.url }}">{{ i.text }}</a>
|
|
58
64
|
</li>
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
{%- endif -%}
|
|
64
|
-
|
|
65
|
+
{% endfor %}
|
|
66
|
+
</ul>
|
|
67
|
+
|
|
65
68
|
</div>
|
|
66
69
|
</div>
|
|
67
70
|
</div>
|
data/_layouts/about_me.html
CHANGED
|
@@ -4,38 +4,102 @@ layout: default
|
|
|
4
4
|
|
|
5
5
|
<div class="row">
|
|
6
6
|
<div class="col-lg-8">
|
|
7
|
+
|
|
8
|
+
{% if site.author_bio %}
|
|
7
9
|
<div class="card">
|
|
8
10
|
<h1 class="card-title">About</h1>
|
|
9
|
-
|
|
11
|
+
<p> {{ site.author_bio }}</p>
|
|
12
|
+
</div>
|
|
13
|
+
{% endif %}
|
|
14
|
+
|
|
10
15
|
|
|
11
|
-
|
|
16
|
+
{% if site.show_author_project_details == true %}
|
|
17
|
+
<div class="card">
|
|
18
|
+
<h1 class="card-title">Projects</h1>
|
|
19
|
+
<br />
|
|
20
|
+
{% for project in site.author_project_details %}
|
|
21
|
+
{% if project.visibility == true %}
|
|
22
|
+
<div class="row">
|
|
23
|
+
<div class="col-md-2">
|
|
24
|
+
<img src="/assets/img/{{project.project_thumbnail}}" class="company-logo" />
|
|
25
|
+
</div>
|
|
26
|
+
<div class="col-md-6">
|
|
27
|
+
<h4 class="experience-title"> {{ project.project_title }}</h4>
|
|
28
|
+
<h6 class="experience-info"> {{ project.project_info}}</h6>
|
|
29
|
+
<p class="experience-desc"> {{ project.project_description }} </p>
|
|
30
|
+
<p><a href="{{exp.company_url}}">{{ project.project_url}}</a></p>
|
|
31
|
+
</div>
|
|
32
|
+
</div>
|
|
33
|
+
{% endif %}
|
|
34
|
+
|
|
35
|
+
{% endfor %}
|
|
12
36
|
</div>
|
|
13
|
-
|
|
37
|
+
{% endif %}
|
|
38
|
+
|
|
39
|
+
{% if site.show_author_work_experiences == true %}
|
|
14
40
|
<div class="card">
|
|
15
41
|
<h1 class="card-title"> Work Experience</h1>
|
|
16
42
|
<br />
|
|
17
|
-
|
|
43
|
+
{% for exp in site.author_work_experiences %}
|
|
44
|
+
{% if exp.visibility == true %}
|
|
45
|
+
<div class="row">
|
|
46
|
+
<div class="col-md-2">
|
|
47
|
+
<img src="/assets/img/{{ exp.company_logo }}" class="company-logo" />
|
|
48
|
+
</div>
|
|
49
|
+
<div class="col-md-6">
|
|
50
|
+
<h4 class="experience-title"> {{ exp.designation }}</h4>
|
|
51
|
+
<h6 class="experience-info"> {{ exp.company_name}}</h6>
|
|
52
|
+
<p class="experience-desc"> {{ exp.description }} </p>
|
|
53
|
+
<p><a href="{{exp.company_url}}">{{ exp.company_url}}</a></p>
|
|
54
|
+
</div>
|
|
55
|
+
</div>
|
|
56
|
+
{% endif %}
|
|
57
|
+
|
|
58
|
+
{% endfor %}
|
|
18
59
|
</div>
|
|
60
|
+
{% endif %}
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
{% if site.show_author_education_details == true %}
|
|
19
64
|
<div class="card">
|
|
20
65
|
<h1 class="card-title"> Education </h1>
|
|
21
66
|
<br />
|
|
22
|
-
|
|
67
|
+
{% for detail in site.author_education_details %}
|
|
68
|
+
{% if detail.visibility == true %}
|
|
69
|
+
<div class="row">
|
|
70
|
+
<div class="col-md-2">
|
|
71
|
+
<img src="/assets/img/{{ detail.college_logo}}" class="company-logo" />
|
|
72
|
+
</div>
|
|
73
|
+
<div class="col-md-6">
|
|
74
|
+
<h4 class="experience-title"> {{detail.college_degree }}</h4>
|
|
75
|
+
<h6 class="experience-info">{{detail.college_name}}</h6>
|
|
76
|
+
<p class="experience-desc"> {{detail.description}} </p>
|
|
77
|
+
<p><a href="{{detail.college_url}}">{{ detail.college_url}}</a></p>
|
|
78
|
+
</div>
|
|
79
|
+
</div>
|
|
80
|
+
{% endif %}
|
|
81
|
+
|
|
82
|
+
{% endfor %}
|
|
23
83
|
</div>
|
|
84
|
+
{% endif %}
|
|
85
|
+
|
|
24
86
|
</div>
|
|
25
87
|
<div class="col-lg-4">
|
|
26
88
|
|
|
27
89
|
<div class="card">
|
|
28
|
-
|
|
29
|
-
<h6>
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
90
|
+
{% if site.author_location %}
|
|
91
|
+
<h6> <i class="fas fa-map-marker-alt"></i> {{ site.author_location }}</h6>
|
|
92
|
+
{% endif %}
|
|
93
|
+
{% if site.author_email %}
|
|
94
|
+
<h6><i class="fas fa-envelope"></i> {{ site.author_email }}</h6>
|
|
95
|
+
{% endif %}
|
|
96
|
+
{% if site.author_website_url %}
|
|
97
|
+
<h6> <i class="fas fa-link"></i> {{ site.author_website_url }} </h6>
|
|
98
|
+
{% endif %}
|
|
99
|
+
<!--
|
|
36
100
|
{%- include github_follow_button.html -%}
|
|
37
101
|
|
|
38
|
-
{%- include twitter_follow_button.html -%}
|
|
102
|
+
{%- include twitter_follow_button.html -%} -->
|
|
39
103
|
|
|
40
104
|
|
|
41
105
|
</div>
|
|
@@ -47,12 +111,14 @@ layout: default
|
|
|
47
111
|
|
|
48
112
|
</div>
|
|
49
113
|
|
|
114
|
+
{% if site.wakatime_username %}
|
|
50
115
|
<div class="card">
|
|
51
116
|
<h1> Coding Activity </h1>
|
|
52
|
-
|
|
117
|
+
|
|
53
118
|
{%- include coding_activity.html -%}
|
|
54
119
|
|
|
55
120
|
</div>
|
|
121
|
+
{% endif %}
|
|
56
122
|
|
|
57
123
|
</div>
|
|
58
124
|
</div>
|
data/_layouts/blog.html
CHANGED
|
@@ -1,23 +1,71 @@
|
|
|
1
1
|
---
|
|
2
2
|
layout: default
|
|
3
3
|
---
|
|
4
|
-
<div class="row">
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
</div>
|
|
8
4
|
|
|
9
5
|
<div class="row">
|
|
10
6
|
|
|
11
7
|
<div class="col-lg-8 col-md-4">
|
|
12
8
|
|
|
13
9
|
<!-- Blog Posts -->
|
|
14
|
-
|
|
15
|
-
|
|
10
|
+
<ul >
|
|
11
|
+
<div class="row">
|
|
12
|
+
{% for post in paginator.posts %}
|
|
13
|
+
<div class="card blog-post">
|
|
14
|
+
<img class="card-img-top" src="/assets/img/posts/{{ post.thumbnail }}" alt="{{ post.title }}">
|
|
15
|
+
<div class="card-body center">
|
|
16
|
+
<img src="/assets/img/{{ site.author_logo }}" class="author-profile-img">
|
|
17
|
+
<h4 class="card-title">{{ post.title }}</h4>
|
|
18
|
+
|
|
19
|
+
<h6 class="card-subtitle mb-2 text-muted">{{ post.date | date: "%b %-d, %Y" }}</h6>
|
|
20
|
+
<p class="card-text">{{ post.summary }} </p>
|
|
21
|
+
|
|
22
|
+
<a href="{{ post.url | prepend: site.baseurl }}" data-disqus-identifier="{{ post.url }}" class="btn btn-primary btn-lg">Read</a>
|
|
23
|
+
<span class="disqus-comment-count" data-disqus-identifier="{{ post.url }}"></span>
|
|
24
|
+
|
|
25
|
+
</div>
|
|
26
|
+
</div>
|
|
27
|
+
|
|
28
|
+
{% endfor %}
|
|
29
|
+
</div>
|
|
30
|
+
</ul>
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
<div class="row center">
|
|
34
|
+
<!-- Pagination links -->
|
|
35
|
+
{% if paginator.total_pages > 1 %}
|
|
36
|
+
<ul class="pagination pagination-sm">
|
|
37
|
+
{% if paginator.previous_page %}
|
|
38
|
+
<li><a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">«</a></li>
|
|
39
|
+
{% else %}
|
|
40
|
+
<li class="disabled"><span aria-hidden="true">«</span></li>
|
|
41
|
+
{% endif %}
|
|
42
|
+
|
|
43
|
+
<li><a href="/">First</a></li>
|
|
44
|
+
|
|
45
|
+
{% for page in (1..paginator.total_pages) %}
|
|
46
|
+
{% if page == paginator.page %}
|
|
47
|
+
<li class="active"><a>{{ page }}<span class="sr-only">(current)</span></a></li>
|
|
48
|
+
{% elsif page == 1 %}
|
|
49
|
+
<li><a href="/">{{ page }}</a></li>
|
|
50
|
+
{% else %}
|
|
51
|
+
<li><a href="{{ site.paginate_path | prepend: site.baseurl | replace: '//', '/' | replace: ':num', page }}">{{ page }}</a></li>
|
|
52
|
+
{% endif %}
|
|
53
|
+
{% endfor %}
|
|
54
|
+
|
|
55
|
+
<li><a href="/page/{{ paginator.total_pages }}/">Last</a></li>
|
|
56
|
+
|
|
57
|
+
{% if paginator.next_page %}
|
|
58
|
+
<li><a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">»</a></li>
|
|
59
|
+
{% else %}
|
|
60
|
+
<li class="disabled"><span>»</span></li>
|
|
61
|
+
{% endif %}
|
|
62
|
+
</ul>
|
|
63
|
+
{% endif %}
|
|
64
|
+
</div>
|
|
65
|
+
|
|
66
|
+
</div>
|
|
16
67
|
|
|
17
|
-
{%- include algolia_search.html -%}
|
|
18
|
-
</div>
|
|
19
68
|
|
|
20
|
-
|
|
21
69
|
{%- include blog_sidebar.html -%}
|
|
22
70
|
</div>
|
|
23
71
|
|
data/_layouts/default.html
CHANGED
data/_sass/devlog.scss
CHANGED
|
@@ -137,8 +137,7 @@ code {
|
|
|
137
137
|
#newsletter_footer{
|
|
138
138
|
background-color: #1e90ff;
|
|
139
139
|
color:#fff;
|
|
140
|
-
|
|
141
|
-
|
|
140
|
+
}
|
|
142
141
|
|
|
143
142
|
|
|
144
143
|
@media (min-width: 320px) and (max-width: 480px) {
|
|
@@ -174,6 +173,10 @@ code {
|
|
|
174
173
|
#mc-embedded-subscribe_footer{
|
|
175
174
|
margin-top: 30px;
|
|
176
175
|
}
|
|
176
|
+
|
|
177
|
+
#author_details{
|
|
178
|
+
text-align: center;
|
|
179
|
+
}
|
|
177
180
|
}
|
|
178
181
|
|
|
179
182
|
|
|
@@ -209,6 +212,10 @@ code {
|
|
|
209
212
|
margin-top: 30px;
|
|
210
213
|
}
|
|
211
214
|
|
|
215
|
+
#author_details{
|
|
216
|
+
text-align: center;
|
|
217
|
+
}
|
|
218
|
+
|
|
212
219
|
}
|
|
213
220
|
/*
|
|
214
221
|
##Device = Tablets, Ipads (portrait)
|
|
@@ -240,7 +247,9 @@ code {
|
|
|
240
247
|
#mc-embedded-subscribe_footer{
|
|
241
248
|
margin-top: 30px;
|
|
242
249
|
}
|
|
243
|
-
|
|
250
|
+
#author_details{
|
|
251
|
+
text-align: center;
|
|
252
|
+
}
|
|
244
253
|
}
|
|
245
254
|
/*
|
|
246
255
|
##Device = Tablets, Ipads (landscape)
|
|
@@ -440,4 +449,3 @@ code {
|
|
|
440
449
|
.highlight .vm { color: #aa0000 } /* Name.Variable.Magic */
|
|
441
450
|
.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
|
|
442
451
|
|
|
443
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: devlopr
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sujay Kundu
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-08-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll-sitemap
|
|
@@ -16,102 +16,42 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version:
|
|
20
|
-
- - ">="
|
|
21
|
-
- !ruby/object:Gem::Version
|
|
22
|
-
version: 1.3.1
|
|
19
|
+
version: 1.2.0
|
|
23
20
|
type: :runtime
|
|
24
21
|
prerelease: false
|
|
25
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
26
23
|
requirements:
|
|
27
24
|
- - "~>"
|
|
28
25
|
- !ruby/object:Gem::Version
|
|
29
|
-
version:
|
|
30
|
-
- - ">="
|
|
31
|
-
- !ruby/object:Gem::Version
|
|
32
|
-
version: 1.3.1
|
|
26
|
+
version: 1.2.0
|
|
33
27
|
- !ruby/object:Gem::Dependency
|
|
34
28
|
name: jekyll-feed
|
|
35
29
|
requirement: !ruby/object:Gem::Requirement
|
|
36
30
|
requirements:
|
|
37
31
|
- - "~>"
|
|
38
32
|
- !ruby/object:Gem::Version
|
|
39
|
-
version: 0.
|
|
33
|
+
version: 0.11.0
|
|
40
34
|
type: :runtime
|
|
41
35
|
prerelease: false
|
|
42
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
43
37
|
requirements:
|
|
44
38
|
- - "~>"
|
|
45
39
|
- !ruby/object:Gem::Version
|
|
46
|
-
version: 0.
|
|
40
|
+
version: 0.11.0
|
|
47
41
|
- !ruby/object:Gem::Dependency
|
|
48
42
|
name: jekyll-seo-tag
|
|
49
43
|
requirement: !ruby/object:Gem::Requirement
|
|
50
44
|
requirements:
|
|
51
45
|
- - "~>"
|
|
52
46
|
- !ruby/object:Gem::Version
|
|
53
|
-
version:
|
|
54
|
-
- - ">="
|
|
55
|
-
- !ruby/object:Gem::Version
|
|
56
|
-
version: 2.6.1
|
|
57
|
-
type: :runtime
|
|
58
|
-
prerelease: false
|
|
59
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
60
|
-
requirements:
|
|
61
|
-
- - "~>"
|
|
62
|
-
- !ruby/object:Gem::Version
|
|
63
|
-
version: '2.6'
|
|
64
|
-
- - ">="
|
|
65
|
-
- !ruby/object:Gem::Version
|
|
66
|
-
version: 2.6.1
|
|
67
|
-
- !ruby/object:Gem::Dependency
|
|
68
|
-
name: jekyll-analytics
|
|
69
|
-
requirement: !ruby/object:Gem::Requirement
|
|
70
|
-
requirements:
|
|
71
|
-
- - "~>"
|
|
72
|
-
- !ruby/object:Gem::Version
|
|
73
|
-
version: 0.1.11
|
|
74
|
-
type: :runtime
|
|
75
|
-
prerelease: false
|
|
76
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
77
|
-
requirements:
|
|
78
|
-
- - "~>"
|
|
79
|
-
- !ruby/object:Gem::Version
|
|
80
|
-
version: 0.1.11
|
|
81
|
-
- !ruby/object:Gem::Dependency
|
|
82
|
-
name: jekyll-algolia
|
|
83
|
-
requirement: !ruby/object:Gem::Requirement
|
|
84
|
-
requirements:
|
|
85
|
-
- - "~>"
|
|
86
|
-
- !ruby/object:Gem::Version
|
|
87
|
-
version: '1.4'
|
|
88
|
-
- - ">="
|
|
89
|
-
- !ruby/object:Gem::Version
|
|
90
|
-
version: 1.4.11
|
|
91
|
-
type: :runtime
|
|
92
|
-
prerelease: false
|
|
93
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
94
|
-
requirements:
|
|
95
|
-
- - "~>"
|
|
96
|
-
- !ruby/object:Gem::Version
|
|
97
|
-
version: '1.4'
|
|
98
|
-
- - ">="
|
|
99
|
-
- !ruby/object:Gem::Version
|
|
100
|
-
version: 1.4.11
|
|
101
|
-
- !ruby/object:Gem::Dependency
|
|
102
|
-
name: jekyll-menus
|
|
103
|
-
requirement: !ruby/object:Gem::Requirement
|
|
104
|
-
requirements:
|
|
105
|
-
- - "~>"
|
|
106
|
-
- !ruby/object:Gem::Version
|
|
107
|
-
version: 0.6.0
|
|
47
|
+
version: 2.5.0
|
|
108
48
|
type: :runtime
|
|
109
49
|
prerelease: false
|
|
110
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
111
51
|
requirements:
|
|
112
52
|
- - "~>"
|
|
113
53
|
- !ruby/object:Gem::Version
|
|
114
|
-
version:
|
|
54
|
+
version: 2.5.0
|
|
115
55
|
- !ruby/object:Gem::Dependency
|
|
116
56
|
name: jekyll
|
|
117
57
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -170,18 +110,11 @@ files:
|
|
|
170
110
|
- LICENSE.txt
|
|
171
111
|
- README.md
|
|
172
112
|
- _includes/ads.html
|
|
173
|
-
- _includes/algolia_search.html
|
|
174
|
-
- _includes/author_bio.html
|
|
175
|
-
- _includes/author_education.html
|
|
176
|
-
- _includes/author_projects.html
|
|
177
113
|
- _includes/author_skills.html
|
|
178
|
-
- _includes/author_work_experience.html
|
|
179
114
|
- _includes/blog_categories.html
|
|
180
|
-
- _includes/blog_newsletters.html
|
|
181
115
|
- _includes/blog_post_article.html
|
|
182
116
|
- _includes/blog_post_breadcrumb.html
|
|
183
117
|
- _includes/blog_post_comments.html
|
|
184
|
-
- _includes/blog_posts.html
|
|
185
118
|
- _includes/blog_sidebar.html
|
|
186
119
|
- _includes/blog_tags.html
|
|
187
120
|
- _includes/coding_activity.html
|
|
@@ -197,16 +130,18 @@ files:
|
|
|
197
130
|
- _layouts/compress.html
|
|
198
131
|
- _layouts/contact_me.html
|
|
199
132
|
- _layouts/default.html
|
|
200
|
-
- _layouts/my_projects.html
|
|
201
133
|
- _layouts/page.html
|
|
202
134
|
- _layouts/post.html
|
|
203
135
|
- _layouts/search.html
|
|
204
136
|
- _sass/devlog.scss
|
|
205
137
|
- assets/css/main.scss
|
|
206
|
-
- assets/img/education/iit.jpeg
|
|
207
|
-
- assets/img/education/mit.png
|
|
208
|
-
- assets/img/education/oxford.png
|
|
209
138
|
- assets/img/favicon.ico
|
|
139
|
+
- assets/img/gamershub.png
|
|
140
|
+
- assets/img/google.png
|
|
141
|
+
- assets/img/iit.jpeg
|
|
142
|
+
- assets/img/microsoft.png
|
|
143
|
+
- assets/img/mit.png
|
|
144
|
+
- assets/img/oxford.png
|
|
210
145
|
- assets/img/posts/1.png
|
|
211
146
|
- assets/img/posts/2.png
|
|
212
147
|
- assets/img/posts/3.png
|
|
@@ -224,11 +159,8 @@ files:
|
|
|
224
159
|
- assets/img/posts/devlopr.png
|
|
225
160
|
- assets/img/posts/hello.jpg
|
|
226
161
|
- assets/img/profile.png
|
|
227
|
-
- assets/img/
|
|
228
|
-
- assets/img/projects/hackify.png
|
|
162
|
+
- assets/img/programmingebooks.png
|
|
229
163
|
- assets/img/styleguide.png
|
|
230
|
-
- assets/img/work/google.png
|
|
231
|
-
- assets/img/work/microsoft.png
|
|
232
164
|
- assets/img/zoom.jpg
|
|
233
165
|
homepage: https://github.com/sujaykundu777/devlopr-jekyll
|
|
234
166
|
licenses:
|
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
<style>
|
|
2
|
-
#search-searchbar{
|
|
3
|
-
width: 100%;
|
|
4
|
-
text-align: center;
|
|
5
|
-
margin-top: 20px;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.ais-search-box {
|
|
9
|
-
margin-top: 15px;
|
|
10
|
-
margin-bottom: 15px;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.ais-hits--item{
|
|
14
|
-
float:left;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
</style>
|
|
18
|
-
|
|
19
|
-
<script>
|
|
20
|
-
/* Instanciating InstantSearch.js with Algolia credentials */
|
|
21
|
-
const search = instantsearch({
|
|
22
|
-
appId: '{{ site.algolia.application_id }}',
|
|
23
|
-
indexName: '{{ site.algolia.index_name }}',
|
|
24
|
-
apiKey: '{{ site.algolia.search_only_api_key }}'
|
|
25
|
-
});
|
|
26
|
-
|
|
27
|
-
search.addWidget(
|
|
28
|
-
instantsearch.widgets.searchBox({
|
|
29
|
-
container: '#search-searchbar',
|
|
30
|
-
placeholder: 'Search into posts...',
|
|
31
|
-
poweredBy: true
|
|
32
|
-
})
|
|
33
|
-
);
|
|
34
|
-
|
|
35
|
-
search.addWidget(
|
|
36
|
-
instantsearch.widgets.hits({
|
|
37
|
-
container: '#search-hits',
|
|
38
|
-
templates: {
|
|
39
|
-
item: function(hit) {
|
|
40
|
-
return `
|
|
41
|
-
<div class="card blog-post">
|
|
42
|
-
<img class="card-img-top" src="${ hit.thumbnail }" alt="${ hit.title }">
|
|
43
|
-
<div class="card-body center">
|
|
44
|
-
<img src="/assets/img/{{ site.author_logo }}" class="author-profile-img">
|
|
45
|
-
<h4 class="card-title">${ hit.title }</h4>
|
|
46
|
-
|
|
47
|
-
<h6 class="card-subtitle mb-2 text-muted">${moment.unix(hit.date).format('MMM D, YYYY')}</h6>
|
|
48
|
-
<p class="card-text">${hit.summary }</p>
|
|
49
|
-
|
|
50
|
-
<a href="${hit.url}" data-disqus-identifier="${hit.url}" class="btn btn-primary btn-sm">Read</a>
|
|
51
|
-
<span class="disqus-comment-count" data-disqus-identifier="${ hit.url }"></span>
|
|
52
|
-
|
|
53
|
-
</div>
|
|
54
|
-
</div>
|
|
55
|
-
`;
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
})
|
|
59
|
-
);
|
|
60
|
-
|
|
61
|
-
search.start();
|
|
62
|
-
|
|
63
|
-
</script>
|
data/_includes/author_bio.html
DELETED
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
<div class="row">
|
|
2
|
-
<div class="col-md-2">
|
|
3
|
-
<img src="/assets/img/education/mit.png" class="company-logo" />
|
|
4
|
-
</div>
|
|
5
|
-
<div class="col-md-6">
|
|
6
|
-
<h4 class="experience-title"> Post Graduate in CS </h4>
|
|
7
|
-
<h6 class="experience-info">MIT</h6>
|
|
8
|
-
<p class="experience-desc"> Computer Science Scholar </p>
|
|
9
|
-
|
|
10
|
-
</div>
|
|
11
|
-
</div>
|
|
12
|
-
|
|
13
|
-
<br />
|
|
14
|
-
<div class="row">
|
|
15
|
-
<div class="col-md-2">
|
|
16
|
-
<img src="/assets/img/education/iit.jpeg" class="company-logo" />
|
|
17
|
-
</div>
|
|
18
|
-
<div class="col-md-6">
|
|
19
|
-
<h4 class="experience-title"> BTECH in CS</h4>
|
|
20
|
-
<h6 class="experience-info">IIT Kharagpur</h6>
|
|
21
|
-
<p class="experience-desc"> Computer Science Graduate </p>
|
|
22
|
-
|
|
23
|
-
</div>
|
|
24
|
-
</div>
|
|
25
|
-
|
|
26
|
-
<br />
|
|
27
|
-
<div class="row">
|
|
28
|
-
<div class="col-md-2">
|
|
29
|
-
<img src="/assets/img/education/oxford.png" class="company-logo" />
|
|
30
|
-
</div>
|
|
31
|
-
<div class="col-md-6">
|
|
32
|
-
<h4 class="experience-title"> Computer Science </h4>
|
|
33
|
-
<h6 class="experience-info"> Oxford University </h6>
|
|
34
|
-
<p class="experience-desc"> High School </p>
|
|
35
|
-
|
|
36
|
-
</div>
|
|
37
|
-
</div>
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
<div class="row">
|
|
2
|
-
<div class="col-md-5">
|
|
3
|
-
<img src="/assets/img/projects/gamershub.png" class="project-img" />
|
|
4
|
-
</div>
|
|
5
|
-
<div class="col-md-5">
|
|
6
|
-
<h4 class="project-title"> Gamers Hub </h4>
|
|
7
|
-
<p class="project-desc"> A Platform built for Gamers and Game Developers</p>
|
|
8
|
-
|
|
9
|
-
<a class="project-link btn btn-success" href="https://gamershub.in"> https://gamershub.in</a>
|
|
10
|
-
</div>
|
|
11
|
-
</div>
|
|
12
|
-
|
|
13
|
-
<br />
|
|
14
|
-
<div class="row">
|
|
15
|
-
<div class="col-md-5">
|
|
16
|
-
<img src="/assets/img/projects/hackify.png" class="project-img" />
|
|
17
|
-
</div>
|
|
18
|
-
<div class="col-md-5">
|
|
19
|
-
<h4 class="project-title"> Hackify Theme for Atom Editor </h4>
|
|
20
|
-
<p class="project-desc"> A dark hacking theme for Atom Editor. You can modify it to make it your own</p>
|
|
21
|
-
<a class="project-link btn btn-success" href="http://atom.io/themes/hackify-ui">http://atom.io/themes/hackify-ui</a>
|
|
22
|
-
</div>
|
|
23
|
-
</div>
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
<div class="row">
|
|
2
|
-
<div class="col-md-2">
|
|
3
|
-
<img src="/assets/img/work/google.png" class="company-logo" />
|
|
4
|
-
</div>
|
|
5
|
-
<div class="col-md-6">
|
|
6
|
-
<h4 class="experience-title"> Full Stack Software Engineer</h4>
|
|
7
|
-
<h6 class="experience-info">Google ( Jan 2017 - Present )</h6>
|
|
8
|
-
<p class="experience-desc"> Worked on various technologies and built products which helps people globally </p>
|
|
9
|
-
|
|
10
|
-
</div>
|
|
11
|
-
</div>
|
|
12
|
-
|
|
13
|
-
<br />
|
|
14
|
-
<div class="row">
|
|
15
|
-
<div class="col-md-2">
|
|
16
|
-
<img src="/assets/img/work/microsoft.png" class="company-logo" />
|
|
17
|
-
</div>
|
|
18
|
-
<div class="col-md-6">
|
|
19
|
-
<h4 class="experience-title"> Front End Engineer</h4>
|
|
20
|
-
<h6 class="experience-info">Microsoft ( Mar 2015 - Dec 2016 )</h6>
|
|
21
|
-
<p class="experience-desc"> Worked on various technologies and built products which helps people globally </p>
|
|
22
|
-
|
|
23
|
-
</div>
|
|
24
|
-
</div>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
<!-- MailChimp Subscription Form -->
|
|
3
|
-
<!-- Replace the url with your mailchimp form url-->
|
|
4
|
-
<form action="https://programmingebooks.us10.list-manage.com/subscribe/post?u=50bab1c85eae24ecfb0f68361&id=3a2dd721d0"
|
|
5
|
-
method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
|
|
6
|
-
<div id="mc_embed_signup_scroll_footer">
|
|
7
|
-
<label for="mce-EMAIL_footer"> Signup for Weekly Email Newsletters :D</label>
|
|
8
|
-
<input type="email" value="" name="EMAIL" class="email" id="mce-EMAIL_footer" placeholder="email address" required>
|
|
9
|
-
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
|
|
10
|
-
<div style="position: absolute; left: -5000px;" aria-hidden="true">
|
|
11
|
-
<input type="text" name="b_50bab1c85eae24ecfb0f68361_3a2dd721d0" tabindex="-1" value="">
|
|
12
|
-
</div><br />
|
|
13
|
-
<div class="clear">
|
|
14
|
-
|
|
15
|
-
<input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe_footer" class="btn btn-lg btn-success">
|
|
16
|
-
</div>
|
|
17
|
-
</div>
|
data/_includes/blog_posts.html
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
<div class="row">
|
|
2
|
-
|
|
3
|
-
<div id="search-searchbar"></div>
|
|
4
|
-
|
|
5
|
-
</div>
|
|
6
|
-
<ul>
|
|
7
|
-
<div class="row">
|
|
8
|
-
<div id="search-hits"></div>
|
|
9
|
-
</div>
|
|
10
|
-
</ul>
|
|
11
|
-
<!--
|
|
12
|
-
<ul>
|
|
13
|
-
<div class="row">
|
|
14
|
-
{% for post in site.posts %}
|
|
15
|
-
<div class="card blog-post">
|
|
16
|
-
<img class="card-img-top" src="/assets/img/{{ post.thumbnail }}" alt="{{ post.title }}">
|
|
17
|
-
<div class="card-body center">
|
|
18
|
-
<img src="/assets/img/{{ site.author_logo }}" class="author-profile-img">
|
|
19
|
-
<h4 class="card-title">{{ post.title }}</h4>
|
|
20
|
-
|
|
21
|
-
<h6 class="card-subtitle mb-2 text-muted">{{ post.date | date: "%b %-d, %Y" }}</h6>
|
|
22
|
-
<p class="card-text">{{ post.summary }} </p>
|
|
23
|
-
|
|
24
|
-
<a href="{{ post.url | prepend: site.baseurl }}" data-disqus-identifier="{{ post.url }}" class="btn btn-primary btn-lg">Read</a>
|
|
25
|
-
<span class="disqus-comment-count" data-disqus-identifier="{{ post.url }}"></span>
|
|
26
|
-
|
|
27
|
-
</div>
|
|
28
|
-
</div>
|
|
29
|
-
|
|
30
|
-
{% endfor %}
|
|
31
|
-
</div>
|
|
32
|
-
</ul> -->
|
data/_layouts/my_projects.html
DELETED
|
Binary file
|