Skip to content

Commit 1c203f7

Browse files
committed
first commit
0 parents  commit 1c203f7

32 files changed

+2116
-0
lines changed
Binary file not shown.
Binary file not shown.

LICENSE.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2016 Hemang Kumar
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+88
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
If there's any issue you are facing in setting up DevJournal theme, I'm there for you. Just create an issue in this repository (http://github.com/hemangsk/DevJournal), (https://help.github.com/articles/creating-an-issue/) and I'll get back to you asap. :smile: :+1:<br>
2+
3+
![alt-tag](https://farm8.staticflickr.com/7062/26385542743_1c7e6b8d9e_o.png)
4+
5+
![alt-tag](https://farm8.staticflickr.com/7320/26385629583_eac6861c48_o.png)
6+
7+
8+
![alt-tag](https://farm8.staticflickr.com/7300/26895705412_d6365b9a14_o.png)
9+
10+
11+
12+
![alt-tag](https://farm8.staticflickr.com/7370/26956762406_cbfa7a2139_o.png)
13+
14+
#### To create a new post :sunglasses:
15+
16+
- Create a .markdown file inside _posts folder.
17+
- Name the file according to the standard jekyll format.
18+
```
19+
2016-03-30-i-love-design.markdown
20+
```
21+
- Write the Front Matter and content in the file.
22+
```
23+
---
24+
layout: post | default | page
25+
title: String Post Title
26+
date: Time Stamp
27+
categories: String | Array of Strings Category / Categories
28+
---
29+
```
30+
31+
```
32+
---
33+
layout: post
34+
title: "The One with the Blackout"
35+
date: 2016-03-30 19:45:31 +0530
36+
categories: ["life", "friends"]
37+
---
38+
```
39+
40+
41+
![alt-tag](https://farm8.staticflickr.com/7660/26895189602_170af0a783_o.png)
42+
![alt-tag](https://farm8.staticflickr.com/7594/26385450183_37116c6d32_o.png)
43+
44+
45+
####Create new pages, such a breeze! :smile:
46+
- Create a .md file in the root directory.
47+
- Name the file with the desired page link name.
48+
```
49+
about.md
50+
```
51+
```
52+
design.md
53+
```
54+
- Write the Front Matter and content in the file.
55+
```
56+
---
57+
layout: page
58+
title: String Title of the webpage
59+
permalink: / String / Permalink for the webpage
60+
tagline: String Optional DevJournal Feature : Tagline for the page
61+
---
62+
```
63+
```
64+
---
65+
layout: page
66+
title: "Science"
67+
permalink: /science/
68+
tagline : "Humanity is overrated."
69+
---
70+
```
71+
72+
![alt-tag](https://farm8.staticflickr.com/7124/26895188812_65218d8652_o.png)
73+
74+
75+
That's all folks.
76+
77+
>Super Flexible, Minimal, Text Based jekyll theme for the kickass geek :sunglasses:
78+
79+
####It'd be really cool if you,<br>
80+
1. Create some new feature and would like to integrate in DevJournal. Pull requests are most invited.
81+
2. Open issues if you find bugs.
82+
3. Just so you know, the license type is MIT.
83+
84+
85+
>Its' all about being community driven. :bus: :bus: :dash:
86+
87+
Have a great day! :smile: :smile: :smiley:
88+

_config.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Welcome to Jekyll!
2+
#
3+
# This config file is meant for settings that affect your whole blog, values
4+
# which you are expected to set up once and rarely need to edit after that.
5+
# For technical reasons, this file is *NOT* reloaded automatically when you use
6+
# 'jekyll serve'. If you change this file, please restart the server process.
7+
8+
# Site settings
9+
title: A collection of curated cool things
10+
11+
12+
#write html inside the double quotes to display in jumbotron
13+
description: "<h1>DannyG's Cool Stuff</h1>"
14+
15+
16+
17+
baseurl: "" # the subpath of your site, e.g. /blog
18+
url: "http://securityscorecard.github.io" # the base hostname & protocol for your site
19+
twitter_username: dannygnc
20+
github_username: radius314
21+
22+
# Build settings
23+
markdown: kramdown

_includes/footer.html

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<nav class="navbar navbar-default navbar-fixed-bottom">
2+
<div class="container footer-content">
3+
&copy; 2016 <a href="https://securityscorecard.com">Security Scorecard</a>
4+
</div>
5+
</nav>

_includes/head.html

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
<head>
2+
<meta charset="utf-8">
3+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
4+
<meta name="viewport" content="width=device-width, initial-scale=1">
5+
<meta content="{{ site.title }}" property="og:site_name">
6+
{% if page.title %}
7+
<meta content="{{ page.title }}" property="og:title">
8+
{% else %}
9+
<meta content="{{ site.title }}" property="og:title">
10+
{% endif %}
11+
{% if page.title %}
12+
<meta content="article" property="og:type">
13+
{% else %}
14+
<meta content="website" property="og:type">
15+
{% endif %}
16+
{% if page.description %}
17+
<meta content="{{ page.description }}" property="og:description">
18+
{% else %}
19+
<meta content="{{ site.description }}" property="og:description">
20+
{% endif %}
21+
{% if page.url %}
22+
<meta content="{{ site.url }}{{ page.url }}" property="og:url">
23+
{% endif %}
24+
{% if page.date %}
25+
<meta content="{{ page.date | date_to_xmlschema }}" property="article:published_time">
26+
<meta content="{{ site.url }}/about/" property="article:author">
27+
{% endif %}
28+
29+
<meta property="og:image" content="">
30+
31+
{% if page.categories %}
32+
{% for category in page.categories limit:1 %}
33+
<meta content="{{ category }}" property="article:section">
34+
{% endfor %}
35+
{% endif %}
36+
{% if page.tags %}
37+
{% for tag in page.tags %}
38+
<meta content="{{ tag }}" property="article:tag">
39+
{% endfor %}
40+
{% endif %}
41+
<title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
42+
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
43+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
44+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
45+
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}">
46+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
47+
48+
<link href='https://fonts.googleapis.com/css?family=PT+Sans' rel='stylesheet' type='text/css'>
49+
<link href='https://fonts.googleapis.com/css?family=Fira+Mono' rel='stylesheet' type='text/css'>
50+
<link href='https://fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet' type='text/css'>
51+
<link href='https://fonts.googleapis.com/css?family=Source+Code+Pro:400,200,300,500,600,700,900' rel='stylesheet' type='text/css'>
52+
<link href='https://fonts.googleapis.com/css?family=Gentium+Basic:400,700' rel='stylesheet' type='text/css'>
53+
<link href='https://fonts.googleapis.com/css?family=Alegreya:400,400italic,700' rel='stylesheet' type='text/css'>
54+
<link href='https://fonts.googleapis.com/css?family=Lora:400,400italic,700' rel='stylesheet' type='text/css'>
55+
<link href='https://fonts.googleapis.com/css?family=Fira+Sans:400,300,500,700' rel='stylesheet' type='text/css'>
56+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
57+
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
58+
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
59+
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-hQpvDQiCJaD2H465dQfA717v7lu5qHWtDbWNPvaTJ0ID5xnPUlVXnKzq7b8YUkbN" crossorigin="anonymous">
60+
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
61+
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}">
62+
</head>

_includes/header.html

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
2+
<section>
3+
<nav class="navbar navbar-default navbar-fixed-top">
4+
5+
<div class="container">
6+
<!-- Brand and toggle get grouped for better mobile display -->
7+
<div class="navbar-header">
8+
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
9+
<span class="sr-only">Toggle navigation</span>
10+
<span class="icon-bar"></span>
11+
<span class="icon-bar"></span>
12+
<span class="icon-bar"></span>
13+
</button>
14+
<a class="navbar-brand" href="{{site.baseurl}}/">{{site.title}}</a>
15+
</div>
16+
17+
18+
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
19+
<ul class="nav navbar-nav">
20+
{% for page in site.pages %}
21+
{% if page.title %}
22+
<li><a href="{{page.permalink | prepend: site.baseurl }}">{{page.title}}</a></li>
23+
24+
{% endif %}
25+
26+
{% endfor %}
27+
28+
29+
</ul>
30+
31+
<ul class="nav navbar-nav navbar-right">
32+
<li>{% include icon-github.html %}</li>
33+
<li>{% include icon-twitter.html %}</li>
34+
</ul>
35+
</div><!-- /.navbar-collapse -->
36+
</div><!-- /.container-fluid -->
37+
</nav>
38+
</section>

_includes/icon-github.html

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<a href="https://github.com/{{ site.github_username }}"><div class="icon icon--github">{% include icon-github.svg %}</div></a>

_includes/icon-github.svg

+1
Loading

_includes/icon-twitter.html

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<a href="https://twitter.com/{{ site.twitter_username }}"><div class="icon icon--twitter">{% include icon-twitter.svg %}</div></a>

_includes/icon-twitter.svg

+1
Loading

_layouts/default.html

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
{% include head.html %}
5+
6+
<body>
7+
{% include header.html %}
8+
<section>
9+
{{content}}
10+
</section>
11+
{% include footer.html %}
12+
</body>
13+
14+
</html>

_layouts/page.html

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
layout: default
3+
---
4+
<div class="jumbotron">
5+
<div class="container">
6+
<h1 class="post-title-main" itemprop="name headline">{{ page.title }}</h1>
7+
<center> <h4 class="post-title-main" itemprop="name headline">{{ page.tagline}}</h4></center>
8+
</div>
9+
</div>
10+
11+
<div class="container page-stuff">
12+
13+
{{ content }}
14+
</div>

_layouts/post.html

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
layout: default
3+
---
4+
<article class="post" itemscope itemtype="http://schema.org/BlogPosting">
5+
<div class="jumbotron">
6+
<div class="container">
7+
<h1 class="post-title-main" itemprop="name headline">{{ page.title }}</h1>
8+
<p class="post-meta"><time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">{{ page.date | date: "%b %-d, %Y" }}</time>{% if page.author %} • <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">{{ page.author }}</span></span>{% endif %}</p>
9+
10+
</div>
11+
12+
</div>
13+
14+
15+
<div class="post-content container" itemprop="articleBody">
16+
{{ content }}
17+
</div>
18+
19+
</article>

_posts/2016-08-09-volume1.markdown

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
layout: post
3+
title: "Volume I"
4+
date: 2016-08-09 11:26 -0400
5+
categories: links
6+
author: dannyg
7+
---
8+
- CommandlineFu - a collection of commands to accomplish various tasks, based off a rating system <http://www.commandlinefu.com>
9+
10+
- ASCII Art/Banner Creator - <http://patorjk.com/software/taag/#p=display&f=Patorjk-HeX&t=Type%20Something%20>
11+
12+
- First person engine in 265 lines of code - <http://www.playfuljs.com/a-first-person-engine-in-265-lines>
13+
14+
- Tool to comparing several popular languages side-by-side reference - <http://hyperpolyglot.org/scripting>
15+
16+
- Code on your phone - <http://forum.xda-developers.com/android/software/app-dcoder-mobile-coding-platform-t3433877>
17+
18+
- A-Z index of Bash commands - <http://ss64.com/bash/>
19+
20+
- Using aliases for command-line functions for speed - <https://www.eriwen.com/productivity/aliases-and-functions/>
21+
22+
- I’ve actually shared mine here for zsh- <https://gist.github.com/radius314/6a84ea8274129381cc3bcdc70cd5932f>
23+
24+
- [@Seanstoppable](https://github.com/Seanstoppable) has some of his accessible as well - <https://github.com/Seanstoppable/dotfiles>

_posts/2016-08-17-volume2.markdown

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
layout: post
3+
title: "Volume II"
4+
date: 2016-08-17 22:39 -0400
5+
categories: links
6+
author: dannyg
7+
---
8+
- Schedule appointments with people you don’t know - <https://calendly.com>
9+
10+
- [@Seanstoppable](https://github.com/Seanstoppable) asked about what tool I use to organize and plan, I run Kanban on myself and create columns for all my work using - <https://trello.com>
11+
12+
- On that same topic, there are a lot of resources on this topic - <http://lifehacker.com/productivity-101-how-to-use-personal-kanban-to-visuali-1687948640>
13+
14+
- MIT has tons of free online courses (called Open Courseware), I’ve highlighted the Computer Science ones - <http://ocw.mit.edu/courses/find-by-topic/#cat=business&subcat=computerscience>
15+
16+
- On that (learning) note, some free & legal books - <http://www.techiestuffs.com/free-computer-programming-ebooks-free-and-legal-download/>
17+
18+
- We sent this around in the Platform Engineering channel, but I thought I’d reshare it. This talk at Dockercon 2015 outlines dockerizing desktop applications - <https://www.youtube.com/watch?v=1qlLUf7KtAw>
19+
20+
- Here is some additional resources for that - <https://blog.jessfraz.com/post/docker-containers-on-the-desktop/>

_posts/2016-09-08-volume3.markdown

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
layout: post
3+
title: "Volume III"
4+
date: 2016-09-08 00:51 -0400
5+
categories: links
6+
author: dannyg
7+
---
8+
- As a follow up to shell scripting aliases, [@benjamine](https://github.com/benjamine) has shared his as well - <https://github.com/benjamine/paracas/tree/master/git#using-shell-aliases>
9+
10+
- Another text editor called Light Table <http://lighttable.com/>, has a tighter integration with live editing and the browser.
11+
12+
- A catalog of programming tasks (some you’ve probably seen on a interview somewhere, or in school) <http://rosettacode.org/wiki/Category:Programming_Tasks>
13+
14+
- Nice collection of programming anti-patterns - <http://sahandsaba.com/nine-anti-patterns-every-programmer-should-be-aware-of-with-examples.html>
15+
16+
- Bizarre programming languages - <http://listverse.com/2011/02/17/top-10-truly-bizarre-programming-languages/>
17+
18+
- Machine learning video library - <http://work.caltech.edu/library/>
19+
20+
- Container Security Analyzer - <https://coreos.com/blog/clair-v1.html>

_posts/2016-09-20-volume4.markdown

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
layout: post
3+
title: "Volume IV"
4+
date: 2016-09-20 12:56 -0400
5+
categories: links
6+
author: dannyg
7+
---
8+
- How to be a Google power user - <http://imgur.com/gallery/2qmYyQy>
9+
10+
- Periodic table of DevOps - <https://xebialabs.com/periodic-table-of-devops-tools/>
11+
12+
- Find a JS package to do something - <http://microjs.com/#>
13+
14+
- Turn an old android phone into a server - <http://lifehacker.com/5936339/servers-ultimate-turns-your-old-android-phone-into-a-tiny-multipurpose-server>
15+
16+
- ASCII Painter - <http://asciipaint.com/>
17+
18+
- More Educational Resources - <http://www.computerscienceonline.org/courses/>
19+
20+
- Exokernels - <https://en.wikipedia.org/wiki/Exokernel>
21+
22+
- Funny - <http://qdb.us/53151>

0 commit comments

Comments
 (0)