Create first commit of new concept hugoDocs (continued)

This commit is contained in:
Ryan Watters
2017-01-04 12:54:17 -06:00
parent a1c25beab4
commit b854438906
637 changed files with 2286 additions and 140 deletions
+2 -1
View File
@@ -1 +1,2 @@
themes/theme-starter/pipeline/node_modules
themes/hugodocs/pipeline/node_modules
my-notes.md
+5 -1
View File
@@ -1,2 +1,6 @@
## Hugo Theme Starter
# Hugo Docs
## Contributing to the Docs
## Suggestions for Improvements
+5 -5
View File
@@ -1,5 +1,5 @@
archetypedir = "archetypes"
baseurl = ""
baseurl = "/"
buildDrafts = false
buildFuture = false
canonifyurls = true
@@ -35,9 +35,9 @@ pygmentsUseClasses = true
relativeURLs = true
source = ""
# This is the top-level, global site title
title = ""
title = "Hugo Docs Concept"
# Change this once you've created your theme
theme = "theme-starter"
theme = "hugodocs"
# Set to true to convert mysite/section/ to mysite/section.html
uglyURLs = false
verbose = false
@@ -45,8 +45,8 @@ verboseLog = false
# Setting this to false will keep hugo from watching for changes during local development
watch = true
[permalinks]
singles = "/:title/"
# [permalinks]
# singles = "/:title/"
#CUSTOM PARAMS
[params]
+15
View File
@@ -0,0 +1,15 @@
---
title: About
linktitle:
description: A general introduction to Hugo, a powerful static site generator written in Golang.
date: 2016-11-01
publishdate: 2016-11-01
lastmod: 2016-11-01
weight: 40
draft: false
type:
layout:
slug:
aliases:
notes:
---
+65
View File
@@ -0,0 +1,65 @@
---
title: Hugo Features
linktitle:
description: Hugo is the fastest of all static site generators and includes features
qr_description:
qr_returns:
date: 2016-11-01
publishdate: 2016-11-01
lastmod: 2016-11-01
weight:
draft: false
type:
layout:
slug:
aliases: []
notes:
---
Hugo boasts the following features:
### General
* Extremely fast build times (≈1 ms per page)
* Completely cross platform: Runs on <i class="fa fa-apple"></i>&nbsp;Mac OS&nbsp;X, <i class="fa fa-linux"></i>&nbsp;Linux, <i class="fa fa-windows"></i>&nbsp;Windows, and more!
* Easy [installation](/overview/installing/)
* Render changes [on the fly](/overview/usage/) with [LiveReload](/extras/livereload/) as you develop
* [Powerful Theming][]
* Host your site anywhere
### Organization
* Straightforward [organization](/project-organization), including website sections
* Customizable [URLs](/extras/urls/)
* Support for configurable [taxonomies](/taxonomies/overview/) which includes categories and tags. Create your own custom organization of content
* Ability to [sort content](/content/ordering/) as you desire
* Automatic [table of contents](/extras/toc/) generation
* Dynamic menu creation
* [Pretty URLs](/extras/urls/) support
* [Permalink](/extras/permalinks/) pattern support
* [Aliases](/extras/aliases/) (redirects)
### Content
* Native [Markdown](/content/example/) support
* Support for other languages through _external helpers_, see [supported formats](/content/supported-formats)
* Support for TOML, YAML and JSON metadata in [frontmatter](/content/front-matter/)
* Customizable [homepage](/layout/homepage/)
* Multiple [content types](/content/types/)
* Automatic and user defined [summaries](/content/summaries/)
* [Shortcodes](/extras/shortcodes/) to enable rich content inside of Markdown
* ["Minutes to Read"](/layout/variables/) functionality
* ["Wordcount"](/layout/variables/) functionality
### Additional Features
* Integrated [Disqus](https://disqus.com/) comment support
* Integrated [Google Analytics](https://google-analytics.com/) support
* Automatic [RSS](/layout/rss/) creation
* Support for [Go](http://golang.org/pkg/html/template/), [Amber](https://github.com/eknkc/amber) and [Ace](https://github.com/yosssi/ace) HTML templates
* Syntax [highlighting](/extras/highlighting/) powered by [Pygments](http://pygments.org/)
See what's coming next in the [roadmap](/meta/roadmap/).
[Powerful Theming]: /themes
+133
View File
@@ -0,0 +1,133 @@
---
title: Introduction to Hugo
linktitle:
description: An introduction to Hugo and the impetus for its creation.
qr_description:
qr_returns:
date: 2016-11-01
publishdate: 2016-11-01
lastmod: 2016-11-01
weight: 10
draft: false
type:
layout:
slug:
aliases: [/overview/introduction]
notes:
---
## What is Hugo?
Hugo is a general-purpose website framework. Technically speaking, Hugo is
a static site generator. Unlike systems that dynamically build a page
with each visitor request, Hugo builds pages when you create
your content. Since websites are viewed far more often than they are
edited, Hugo is optimized for website viewing for the end users of your site and an ideal writing experience for authors.
Sites built with Hugo are extremely fast and secure. Hugo sites can
be hosted anywhere, including [Heroku][], [GoDaddy][], [DreamHost][],
[GitHub Pages][], [Surge][], [Aerobatic][], [Firebase Hosting][],
[Google Cloud Storage][], [Amazon S3][], and [CloudFront][], and work well
with CDNs. Hugo sites run without the need for a database or dependencies on expensive runtimes like Ruby, Python, or PHP.
We think of Hugo as the ideal website creation tool. With nearly instant
build times and the ability to rebuild whenever a change is made, Hugo
provides a very fast feedback loop. This is essential when you are
designing websites, but also very useful when creating content.
## Why a Static Site Generator?
Website generators render content into HTML files. Most are "dynamic site generators." That means the HTTP server (ie, the program that communicates with your end user's browser) runs the generator to create a new HTML file every time an end user requests a page.
Creating the page dynamically requires the HTTP server have enough memory and CPU to effectively run the generator around the clock. If not, your end user will wait in a queue for the page to be generated.
To prevent unnecessary delays in delivering pages to end users, dynamic site generators programmed their systems to cache the HTML files. A cached page is a copy that is temporarily stored on the computer. Sending a cached copy is faster than generating a new page at the time of request because the majority of the work is already done.
Hugo takes caching a step further. All HTML files are rendered on your
computer. You can review the files before you copy them to the computer
hosting the HTTP server. Since the HTML files aren't generated dynamically,
we say that Hugo is a "static site generator."
Not running a web site generator on your HTTP server has many benefits.
The most noticeable is performance - HTTP servers are very good at
sending files. So good that you can effectively serve the same number
of pages with a fraction of the memory and CPU needed for a dynamic site.
Hugo has two components to help you build and test your web site. The
one that you'll probably use most often is the built-in HTTP server.
When you run `hugo server`, Hugo renders all of your content into
HTML files and then runs an HTTP server on your computer so that you
can see what the pages look like.
The second component is used when you're ready to publish your web
site to the computer running your website. Running Hugo without any
actions will rebuild your entire web site using the `baseURL` setting
from your site's configuration file. That's required to have your page
links work properly with most hosting companies.
## How fast is Hugo?
{{% youtube CdiDYZ51a2o %}}
## What does Hugo do?
In technical terms, Hugo takes a source directory of files and
templates and uses these as input to create a complete website.
## Who should use Hugo?
Hugo is for people that prefer writing in a text editor over
a browser.
Hugo is for people who want to hand code their own website without
worrying about setting up complicated runtimes, dependencies and
databases.
Hugo is for people building a blog, company site, portfolio, tumblog,
documentation, single page site or a site with thousands of
pages.
## Why did you write Hugo?
I wrote Hugo ultimately for a few reasons. First, I was disappointed with
WordPress, my then website solution. With it, I couldn't create
content as efficiently as I wanted to.
It rendered slowly and required me to be online to write posts. Plus, its constant security updates and the horror stories of people's hacked blogs! I hated how content was only written in HTML instead of the much simpler Markdown. Overall, I felt like WordPress hindered more than helped. It kept me from writing great content.
I looked at existing static site generators like [Jekyll][], [Middleman][] and [Nanoc][]. All had complicated installation dependencies and an unacceptably long time to render my blog with hundreds of posts. I wanted a framework that would give me rapid feedback while making changes to the templates, and the 5-minute-plus render times were just too slow. In general, the static site generators were very blog-minded and didn't provide for other content types and flexible URLs.
I wanted to develop a fast and full-featured website framework without any
dependencies. The [Go language][] seemed to have all the features I needed
in a language. I began developing Hugo in Go and fell in love with the
language. I hope you will enjoy using Hugo (and contributing to it) as much
as I have writing it.
&mdash;Steve Francia ([@spf13][])
[@spf13]: https://twitter.com/spf13
[Aerobatic]: https://www.aerobatic.com/
[Amazon S3]: http://aws.amazon.com/s3/
[CloudFront]: http://aws.amazon.com/cloudfront/ "Amazon CloudFront"
[DreamHost]: http://www.dreamhost.com/
[Firebase Hosting]: https://firebase.google.com/docs/hosting/
[GitHub Pages]: https://pages.github.com/
[GitLab]: https://about.gitlab.com
[Go language]: http://golang.org/ "The Go Programming Language"
[GoDaddy]: https://www.godaddy.com/
[Google Cloud Storage]: http://cloud.google.com/storage/
[Heroku]: https://www.heroku.com/
[Jekyll]: http://jekyllrb.com/
[Middleman]: https://middlemanapp.com/
[Nanoc]: http://nanoc.ws/
[Surge]: https://surge.sh
## Next Steps
* [Install Hugo](/overview/installing/)
* [Quick start](/overview/quickstart/)
* [Join the Mailing List](/community/mailing-list/)
* [Star us on GitHub](https://github.com/spf13/hugo)
* [Discussion Forum](http://discuss.gohugo.io/)
+214
View File
@@ -0,0 +1,214 @@
---
title: License
linktitle:
description: Information on the Hugo license.
qr_description:
qr_returns:
date: 2016-11-01
publishdate: 2016-11-01
lastmod: 2016-11-01
weight: 20
draft: false
type:
layout:
slug:
aliases: [/meta/license]
notes:
---
Hugo v0.15 and later are released under the Apache 2.0 license.
Earlier releases were under the Simple Public License.
# Apache License
_Version 2.0, January 2004_
_&lt;<http://www.apache.org/licenses/>&gt;_
### Terms and Conditions for use, reproduction, and distribution
#### 1. Definitions
“License” shall mean the terms and conditions for use, reproduction, and
distribution as defined by Sections 1 through 9 of this document.
“Licensor” shall mean the copyright owner or entity authorized by the copyright
owner that is granting the License.
“Legal Entity” shall mean the union of the acting entity and all other entities
that control, are controlled by, or are under common control with that entity.
For the purposes of this definition, “control” means **(i)** the power, direct or
indirect, to cause the direction or management of such entity, whether by
contract or otherwise, or **(ii)** ownership of fifty percent (50%) or more of the
outstanding shares, or **(iii)** beneficial ownership of such entity.
“You” (or “Your”) shall mean an individual or Legal Entity exercising
permissions granted by this License.
“Source” form shall mean the preferred form for making modifications, including
but not limited to software source code, documentation source, and configuration
files.
“Object” form shall mean any form resulting from mechanical transformation or
translation of a Source form, including but not limited to compiled object code,
generated documentation, and conversions to other media types.
“Work” shall mean the work of authorship, whether in Source or Object form, made
available under the License, as indicated by a copyright notice that is included
in or attached to the work (an example is provided in the Appendix below).
“Derivative Works” shall mean any work, whether in Source or Object form, that
is based on (or derived from) the Work and for which the editorial revisions,
annotations, elaborations, or other modifications represent, as a whole, an
original work of authorship. For the purposes of this License, Derivative Works
shall not include works that remain separable from, or merely link (or bind by
name) to the interfaces of, the Work and Derivative Works thereof.
“Contribution” shall mean any work of authorship, including the original version
of the Work and any modifications or additions to that Work or Derivative Works
thereof, that is intentionally submitted to Licensor for inclusion in the Work
by the copyright owner or by an individual or Legal Entity authorized to submit
on behalf of the copyright owner. For the purposes of this definition,
“submitted” means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems, and
issue tracking systems that are managed by, or on behalf of, the Licensor for
the purpose of discussing and improving the Work, but excluding communication
that is conspicuously marked or otherwise designated in writing by the copyright
owner as “Not a Contribution.”
“Contributor” shall mean Licensor and any individual or Legal Entity on behalf
of whom a Contribution has been received by Licensor and subsequently
incorporated within the Work.
#### 2. Grant of Copyright License
Subject to the terms and conditions of this License, each Contributor hereby
grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
irrevocable copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the Work and such
Derivative Works in Source or Object form.
#### 3. Grant of Patent License
Subject to the terms and conditions of this License, each Contributor hereby
grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
irrevocable (except as stated in this section) patent license to make, have
made, use, offer to sell, sell, import, and otherwise transfer the Work, where
such license applies only to those patent claims licensable by such Contributor
that are necessarily infringed by their Contribution(s) alone or by combination
of their Contribution(s) with the Work to which such Contribution(s) was
submitted. If You institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work or a
Contribution incorporated within the Work constitutes direct or contributory
patent infringement, then any patent licenses granted to You under this License
for that Work shall terminate as of the date such litigation is filed.
#### 4. Redistribution
You may reproduce and distribute copies of the Work or Derivative Works thereof
in any medium, with or without modifications, and in Source or Object form,
provided that You meet the following conditions:
* **(a)** You must give any other recipients of the Work or Derivative Works a copy of
this License; and
* **(b)** You must cause any modified files to carry prominent notices stating that You
changed the files; and
* **(c)** You must retain, in the Source form of any Derivative Works that You distribute,
all copyright, patent, trademark, and attribution notices from the Source form
of the Work, excluding those notices that do not pertain to any part of the
Derivative Works; and
* **(d)** If the Work includes a “NOTICE” text file as part of its distribution, then any
Derivative Works that You distribute must include a readable copy of the
attribution notices contained within such NOTICE file, excluding those notices
that do not pertain to any part of the Derivative Works, in at least one of the
following places: within a NOTICE text file distributed as part of the
Derivative Works; within the Source form or documentation, if provided along
with the Derivative Works; or, within a display generated by the Derivative
Works, if and wherever such third-party notices normally appear. The contents of
the NOTICE file are for informational purposes only and do not modify the
License. You may add Your own attribution notices within Derivative Works that
You distribute, alongside or as an addendum to the NOTICE text from the Work,
provided that such additional attribution notices cannot be construed as
modifying the License.
You may add Your own copyright statement to Your modifications and may provide
additional or different license terms and conditions for use, reproduction, or
distribution of Your modifications, or for any such Derivative Works as a whole,
provided Your use, reproduction, and distribution of the Work otherwise complies
with the conditions stated in this License.
#### 5. Submission of Contributions
Unless You explicitly state otherwise, any Contribution intentionally submitted
for inclusion in the Work by You to the Licensor shall be under the terms and
conditions of this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify the terms of
any separate license agreement you may have executed with Licensor regarding
such Contributions.
#### 6. Trademarks
This License does not grant permission to use the trade names, trademarks,
service marks, or product names of the Licensor, except as required for
reasonable and customary use in describing the origin of the Work and
reproducing the content of the NOTICE file.
#### 7. Disclaimer of Warranty
Unless required by applicable law or agreed to in writing, Licensor provides the
Work (and each Contributor provides its Contributions) on an “AS IS” BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,
including, without limitation, any warranties or conditions of TITLE,
NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are
solely responsible for determining the appropriateness of using or
redistributing the Work and assume any risks associated with Your exercise of
permissions under this License.
#### 8. Limitation of Liability
In no event and under no legal theory, whether in tort (including negligence),
contract, or otherwise, unless required by applicable law (such as deliberate
and grossly negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special, incidental,
or consequential damages of any character arising as a result of this License or
out of the use or inability to use the Work (including but not limited to
damages for loss of goodwill, work stoppage, computer failure or malfunction, or
any and all other commercial damages or losses), even if such Contributor has
been advised of the possibility of such damages.
#### 9. Accepting Warranty or Additional Liability
While redistributing the Work or Derivative Works thereof, You may choose to
offer, and charge a fee for, acceptance of support, warranty, indemnity, or
other liability obligations and/or rights consistent with this License. However,
in accepting such obligations, You may act only on Your own behalf and on Your
sole responsibility, not on behalf of any other Contributor, and only if You
agree to indemnify, defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason of your
accepting any such warranty or additional liability.
_END OF TERMS AND CONDITIONS_
### APPENDIX: How to apply the Apache License to your work
To apply the Apache License to your work, attach the following boilerplate
notice, with the fields enclosed by brackets `[]` replaced with your own
identifying information. (Don't include the brackets!) The text should be
enclosed in the appropriate comment syntax for the file format. We also
recommend that a file or class name and description of purpose be included on
the same “printed page” as the copyright notice for easier identification within
third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
+18
View File
@@ -0,0 +1,18 @@
---
title: Roadmap
linktitle:
description: Information on the Hugo license.
date: 2016-11-01
publishdate: 2016-11-01
lastmod: 2016-11-01
tags: []
categories: []
weight: 40
draft: false
type:
layout:
slug:
aliases:
- /meta/roadmap
notes:
---
+33
View File
@@ -0,0 +1,33 @@
---
title: Why I Built Hugo
linktitle:
description: Hugo is the fastest of all static site generators and includes features
qr_description:
qr_returns:
date: 2016-11-01
publishdate: 2016-11-01
lastmod: 2016-11-01
weight:
draft: false
type:
layout:
slug:
aliases: []
notes:
---
I wrote Hugo ultimately for a few reasons. First, I was disappointed with
WordPress, my then website solution. With it, I couldn't create
content as efficiently as I wanted to.
WordPress sites rendered slowly and required I be online to write posts. WordPress is known for its constant security updates and horror stories of hacked blogs. I hated writing content in HTML instead of the much simpler Markdown. Overall, I felt like WordPress hindered more than helped. It kept me from writing great content.
I looked at existing static site generators like [Jekyll][], [Middleman][] and [Nanoc][]. All had complicated installation dependencies and an unacceptably long time to render my blog with hundreds of posts. I wanted a framework that would give me rapid feedback while making changes to the templates, and the 5-minute-plus render times were just too slow. In general, the static site generators were very blog-minded and didn't provide for other content types and flexible URLs.
I wanted to develop a fast and full-featured website framework without any
dependencies. The [Go language][] seemed to have all the features I needed
in a language. I began developing Hugo in Go and fell in love with the
language. I hope you will enjoy using Hugo (and contributing to it) as much
as I have writing it.
&mdash;Steve Francia ([@spf13][])
+16
View File
@@ -0,0 +1,16 @@
---
aliases: []
date: 2016-12-26T06:42:41-06:00
description: null
draft: false
lastmod: 2017-01-01
linktitle: null
notes: null
publishdate: 2017-01-01
qr_description: null
qr_returns: null
slug: null
title: _index
weight: 1
---
+16
View File
@@ -0,0 +1,16 @@
---
aliases: []
date: 2016-12-26T06:42:59-06:00
description: null
draft: false
lastmod: 2017-01-01
linktitle: null
notes: null
publishdate: 2017-01-01
qr_description: null
qr_returns: null
slug: null
title: _index
weight: 1
---
+16
View File
@@ -0,0 +1,16 @@
---
aliases: []
date: 2016-12-26T06:43:14-06:00
description: null
draft: false
lastmod: 2017-01-01
linktitle: null
notes: null
publishdate: 2017-01-01
qr_description: null
qr_returns: null
slug: null
title: _index
weight: 1
---
+15
View File
@@ -0,0 +1,15 @@
---
title: Download Hugo
linktitle:
description:
date: 2016-11-01
publishdate: 2016-11-01
lastmod: 2016-11-01
weight:
draft: false
type:
layout:
slug:
aliases: []
notes:
---
@@ -0,0 +1,15 @@
---
title: Installing from Source
linktitle:
description:
date: 2016-11-01
publishdate: 2016-11-01
lastmod: 2016-11-01
weight:
draft: false
type:
layout:
slug:
aliases: []
notes:
---
@@ -0,0 +1,15 @@
---
title:
linktitle:
description:
date: 2016-11-01
publishdate: 2016-11-01
lastmod: 2016-11-01
weight:
draft: false
type:
layout:
slug:
aliases: []
notes:
---
@@ -0,0 +1,17 @@
---
title:
linktitle:
description:
qr_description:
qr_returns:
date: 2016-11-01
publishdate: 2016-11-01
lastmod: 2016-11-01
weight:
draft: false
type:
layout:
slug:
aliases: []
notes:
---
@@ -0,0 +1,17 @@
---
title:
linktitle:
description:
qr_description:
qr_returns:
date: 2016-11-01
publishdate: 2016-11-01
lastmod: 2016-11-01
weight:
draft: false
type:
layout:
slug:
aliases: []
notes:
---
+16
View File
@@ -0,0 +1,16 @@
---
aliases: []
date: 2016-12-26T06:43:32-06:00
description: null
draft: false
lastmod: 2017-01-01
linktitle: null
notes: null
publishdate: 2017-01-01
qr_description: null
qr_returns: null
slug: null
title: _index
weight: 1
---
+16
View File
@@ -0,0 +1,16 @@
---
aliases: []
date: 2016-12-26T06:43:42-06:00
description: null
draft: false
lastmod: 2017-01-01
linktitle: null
notes: null
publishdate: 2017-01-01
qr_description: null
qr_returns: null
slug: null
title: _index
weight: 1
---
+16
View File
@@ -0,0 +1,16 @@
---
aliases: []
date: 2016-12-26T06:43:58-06:00
description: null
draft: false
lastmod: 2017-01-01
linktitle: null
notes: null
publishdate: 2017-01-01
qr_description: null
qr_returns: null
slug: null
title: _index
weight: 1
---
@@ -0,0 +1,17 @@
---
title: Release Notes
linktitle:
description: Information on the Hugo license.
qr_description:
qr_returns:
date: 2016-11-01
publishdate: 2016-11-01
lastmod: 2016-11-01
weight: 30
draft: false
type:
layout:
slug:
aliases: [/meta/release-notes]
notes:
---
+16
View File
@@ -0,0 +1,16 @@
---
aliases: []
date: 2016-12-26T06:45:06-06:00
description: null
draft: false
lastmod: 2017-01-01
linktitle: null
notes: null
publishdate: 2017-01-01
qr_description: null
qr_returns: null
slug: null
title: _index
weight: 1
---
+13
View File
@@ -0,0 +1,13 @@
---
date: 2016-05-03T17:20:59+09:00
description: "Personal blog of Masashi Tsuru"
license: ""
licenseLink: ""
sitelink: http://2626.info/
tags:
- personal
- blog
thumbnail: /img/2626info-tn.png
title: 2626.info
---
+16
View File
@@ -0,0 +1,16 @@
---
aliases: []
date: 2016-12-26T06:45:18-06:00
description: null
draft: false
lastmod: 2017-01-01
linktitle: null
notes: null
publishdate: 2017-01-01
qr_description: null
qr_returns: null
slug: null
title: _index
weight: 1
---
+16
View File
@@ -0,0 +1,16 @@
---
lastmod: 2015-01-27
date: 2014-02-03T20:00:00Z
description: Ant Zucaro's Blog
license: GPL
licenseLink: ""
sitelink: http://antzucaro.com/
sourceLink: https://github.com/antzucaro/az.com
tags:
- personal
- blog
- foundation
thumbnail: /img/antzucaro-tn.jpg
title: Ant Zucaro
---
+15
View File
@@ -0,0 +1,15 @@
---
lastmod: 2016-04-26
date: 2016-04-26T13:33:33Z
description: Appernetic.io blog
license: MIT
licenseLink: https://github.com/appernetic/hugo-bootstrap-premium/blob/master/LICENSE.md
sitelink: https://blog.appernetic.io/
sourceLink: https://github.com/appernetic/hugo-bootstrap-premium
tags:
- company
- blog
- bootstrap
thumbnail: /img/apperneticioblog.png
title: Appernetic
---
+14
View File
@@ -0,0 +1,14 @@
---
lastmod: 2015-11-20
date: 2015-11-20T01:46:33-06:00
description: "Arrested DevOps is a podcast focusing on trends in the DevOps space"
license: "apache2"
licenseLink: "https://github.com/arresteddevops/ado-hugo/blob/master/LICENSE.md"
sitelink: https://www.arresteddevops.com/
sourceLink: https://github.com/arresteddevops/ado-hugo
tags:
- podcast
- bootstrap
thumbnail: /img/arresteddevops-tn.png
title: arresteddevops
---
+15
View File
@@ -0,0 +1,15 @@
---
lastmod: 2015-01-27
date: 2014-01-22T07:32:00Z
description: ""
license: CC-BY-SA
licenseLink: ""
sitelink: http://andrewcodispoti.com/
sourceLink: https://gitlab.com/acodispo/andrewcodispoti-com
tags:
- personal
- bootstrap
thumbnail: /img/asc-tn.jpg
title: Andrew S Codispoti
---
+14
View File
@@ -0,0 +1,14 @@
---
date: 2016-07-31T11:22:32+03:00
description: "Personal website"
license: ""
licenseLink: ""
sitelink: http://romansilin.com/
sourceLink: https://github.com/astrochili/astrochili.github.io
tags:
- personal
- blog
thumbnail: /img/astrochili-tn.png
title: Roman Silin
---
+12
View File
@@ -0,0 +1,12 @@
---
date: 2016-04-23T13:23:00Z
description: "web applications"
license: ""
licenseLink: ""
sitelink: https://aydos.com/
tags:
- web applications
thumbnail: /img/aydoscom.png
title: aydos.com
---
+13
View File
@@ -0,0 +1,13 @@
---
date: 2016-04-15T14:14:28+01:00
description: "Barricade is an early warning system against hackers."
license: ""
licenseLink: ""
sitelink: https://barricade.io
tags:
- company
- security
thumbnail: /img/barricade-tn.png
title: Barricade
---
+15
View File
@@ -0,0 +1,15 @@
---
lastmod: 2015-05-26
date: 2013-11-01T07:32:00Z
description: "bep's blog"
license: ""
licenseLink: ""
sitelink: http://bepsays.com/
sourceLink: "https://github.com/bep/bepsays.com"
tags:
- personal
- blog
thumbnail: /img/bepsays-tn.png
title: bepsays.com
---
+13
View File
@@ -0,0 +1,13 @@
---
lastmod: 2015-10-27
date: 2015-10-27T09:02:00Z
description: bugtrackers.io provides stories of digital crafters. It shows people behind bits, pixels and bug reports. bugtrackers.io is your resource for web development.
sitelink: https://www.bugtrackers.io/
tags:
- blog
- community
- interviews
thumbnail: /img/bugtrackersio-tn.jpg
title: bugtrackers.io
---
+15
View File
@@ -0,0 +1,15 @@
---
lastmod: 2015-11-30
date: 2015-12-01T04:20:00Z
description: "Camunda BPM Team Blog"
license: "Apache 2.0"
licenseLink: "https://github.com/camunda/blog.camunda.org#license"
sitelink: http://blog.camunda.org/
sourceLink: https://github.com/camunda/blog.camunda.org
tags:
- company
- blog
thumbnail: /img/camunda-blog.png
title: Camunda Blog
---
+15
View File
@@ -0,0 +1,15 @@
---
lastmod: 2015-11-30
date: 2015-12-01T04:20:00Z
description: "Camunda BPM Documentation"
license: MIT
licenseLink: "https://github.com/camunda/camunda-docs-theme#licence"
sitelink: http://docs.camunda.org/
sourceLink: https://github.com/camunda/camunda-docs-theme
tags:
- company
- documentation
thumbnail: /img/camunda-docs.png
title: Camunda Docs
---
+14
View File
@@ -0,0 +1,14 @@
---
date: 2016-02-17T15:19:08+01:00
description: "Overview and comparison of CDNs, their features and prices"
license: ""
licenseLink: ""
sitelink: https://www.cdnoverview.com/
tags:
- bootstrap
- portfolio
- tech
thumbnail: /img/cdnoverview-tn.png
title: cdnoverview.com
---
+12
View File
@@ -0,0 +1,12 @@
---
lastmod: 2015-08-21
date: 2015-08-23
description: Chinese grammar lessons
sitelink: https://www.chineseboost.com/grammar/
sourceLink: https://github.com/hughgrigg/chineseboost-articles
tags:
- learning
- education
thumbnail: /img/chinese-grammar-tn.png
title: Chinese Grammar
---
+12
View File
@@ -0,0 +1,12 @@
---
lastmod: 2015-12-19
date: 2014-08-26T11:20:02-04:00
description: "chinglis personal blog"
sitelink: http://www.chingli.com/
tags:
- personal
- blog
thumbnail: /img/chingli-tn.jpg
title: <span lang="zh-CN">青砾</span> (chingli)
---
+15
View File
@@ -0,0 +1,15 @@
---
lastmod: 2016-04-14
date: 2015-07-08T14:02:16+02:00
description: "personal blog and portfolio of Samuel Debruyn"
license: ""
licenseLink: ""
sitelink: https://chipsncookies.com
sourceLink: https://github.com/SamuelDebruyn/chipsncookies-site
tags:
- personal
- blog
thumbnail: /img/chipsncookies-tn.png
title: Chips 'n' Cookies
---
+12
View File
@@ -0,0 +1,12 @@
---
date: 2016-10-16T13:30:47-04:00
description: "Personal site"
license: ""
licenseLink: ""
sitelink: https://christianmendoza.me/
tags:
- personal
- profile
thumbnail: /img/christianmendoza-tn.png
title: christianmendoza.me
---
+12
View File
@@ -0,0 +1,12 @@
---
date: 2016-09-05T23:23:18+02:00
description: "Cinegy Open documentation project"
license: ""
licenseLink: ""
sitelink: https://open.cinegy.com/
sourceLink:
tags:
- documentation
thumbnail: /img/cinegyopen-tn.png
title: Cinegy Open
---
+14
View File
@@ -0,0 +1,14 @@
---
date: 2016-10-21T12:37:00+02:00
description: "Online Acquiring · Accept Visa & MasterCard within 1-3 days"
license: ""
licenseLink: ""
sitelink: https://www.clearhaus.com/
tags:
- company
- fintech
- payments
- acquirer
thumbnail: /img/clearhaus-tn.png
title: Clearhaus
---
+15
View File
@@ -0,0 +1,15 @@
---
lastmod: 2015-01-27
date: 2014-03-27T09:45:00Z
description: CloudShark Appliance homepage and documentation
license: ""
licenseLink: ""
sitelink: https://appliance.cloudshark.org/
tags:
- company
- documentation
- foundation
thumbnail: /img/cloudshark-tn.jpg
title: CloudShark
---
+14
View File
@@ -0,0 +1,14 @@
---
lastmod: 2015-12-23
date: 2015-12-23T11:42:00+01:00
description: blog, portfolio
license: ""
licenseLink: ""
sitelink: http://blog.kulman.sk/
sourceLink: https://github.com/igorkulman/coding-journal
tags:
- blog
- portfolio
thumbnail: /img/codingjournal-tn.png
title: Coding Journal
---
+16
View File
@@ -0,0 +1,16 @@
---
lastmod: 2015-02-11
date: 2015-02-11T13:21:27+11:00
description: "consequently.org, Greg Restall's personal website"
license: ""
licenseLink: ""
sitelink: http://consequently.org
sourceLink: "https://github.com/consequently/consequently-hugo"
tags:
- academic
- blog
- kube
thumbnail: /img/consequently.jpg
title: consequently.org
---
+14
View File
@@ -0,0 +1,14 @@
---
date: 2016-07-25T13:45:09-04:00
description: "CompilED is a collection of reflections and comments by the software developers at Columbias Center for Teaching and Learning (CTL). These views are rooted in our professional and personal experiences developing educational technology."
license: "Creative Commons Attribution-ShareAlike 3.0 United States."
licenseLink: "https://creativecommons.org/licenses/by-sa/3.0/us/"
sitelink: https://compiled.ctl.columbia.edu/
tags:
- edtech
- technology
- blog
thumbnail: /img/ctlcompiled-tn.png
title: CompilED at CTL
---
+15
View File
@@ -0,0 +1,15 @@
---
lastmod: 2014-08-26
date: 2014-08-26T10:55:23-04:00
description: ""
license: MIT
licenseLink: ""
sitelink: http://danmux.com/
sourceLink: https://github.com/danmux/danmux-hugo
tags:
- personal
- blog
thumbnail: /img/danmux-tn.jpg
title: Danmux
---
@@ -0,0 +1,13 @@
---
date: 2016-02-04T18:30:07-05:00
description: "Professional website at datapipelinearchitect.com"
sitelink: http://datapipelinearchitect.com/
tags:
- company
- tech
- blog
- website
thumbnail: /img/datapipelinearchitect-tn.jpg
title: Data Pipeline Architect
---
+16
View File
@@ -0,0 +1,16 @@
---
lastmod: 2015-05-25
date: 2013-11-01T07:32:00Z
description: ""
license: MIT
licenseLink: ""
sitelink: http://davidepetilli.com
tags:
- personal
- photography
- portfolio
- blog
thumbnail: /img/davidepetilli-tn.jpg
title: Davide Petilli
---
+15
View File
@@ -0,0 +1,15 @@
---
date: 2016-02-03T11:49:07-05:00
description: "Personal website for David Allen"
license: "MIT"
licenseLink: "https://opensource.org/licenses/MIT"
sitelink: http://davidrallen.com/
sourceLink: https://github.com/doctorallen/davidrallen.com
tags:
- personal
- blog
- tech
thumbnail: /img/davidrallen-tn.png
title: David Allen
---
+13
View File
@@ -0,0 +1,13 @@
---
date: 2016-09-10T07:07:39+02:00
description: "David Yates"
license: ""
licenseLink: ""
sitelink: https://davidyat.es/
tags:
- personal
- blog
thumbnail: /img/davidyates-tn.png
title: David Yates
---
+15
View File
@@ -0,0 +1,15 @@
---
lastmod: 2014-08-26
date: 2014-08-26T11:31:02-04:00
description: ""
license: ""
licenseLink: ""
sitelink: https://devmonk.com/
sourceLink: https://github.com/peteraba/devmonk.com
tags:
- educational
- video
thumbnail: /img/devmonk-tn.jpg
title: devmonk
---
+14
View File
@@ -0,0 +1,14 @@
---
date: 2016-10-19T16:52:28+02:00
description: "Personal blog"
license: "CC BY-NC 4.0"
licenseLink: ""
sitelink: http://dmitriid.com/
sourceLink: https://github.com/dmitriid/dmitriid.com
tags:
- personal
- blog
thumbnail: /img/dmitriid.com.png
title: dmitriid.com
---
+13
View File
@@ -0,0 +1,13 @@
---
lastmod: 2016-01-09
date: 2016-01-09T01:00:10Z
description: Personal homepage
sitelink: https://emilyhorsman.com/
sourceLink: https://github.com/emilyhorsman/buttercup
tags:
- personal
- blog
thumbnail: /img/emilyhorsman.com-tn.jpg
title: emilyhorsman.com
---
+16
View File
@@ -0,0 +1,16 @@
---
lastmod: 2015-08-08
date: 2015-07-07T04:32:00Z
description: Tokyo IT service provider eSolia Inc's Hugo-powered website.
license: MIT
licenseLink: ""
sitelink: http://esolia.com/
sourceLink: https://github.com/eSolia/eSolia
tags:
- company
- esolia
- rickcogley
- japan
thumbnail: /img/esolia_com-tn.png
title: eSolia.com
---
+16
View File
@@ -0,0 +1,16 @@
---
lastmod: 2015-08-08
date: 2015-07-07T04:32:00Z
description: Tokyo IT service provider eSolia Inc's eSolia.pro blog site, powered by Hugo.
license: MIT
licenseLink: ""
sitelink: http://esolia.pro/
sourceLink: https://github.com/eSolia/eSolia.pro
tags:
- company
- esolia
- rickcogley
- japan
thumbnail: /img/esolia_pro-tn.png
title: eSolia.pro
---
+11
View File
@@ -0,0 +1,11 @@
---
date: 2016-10-15T23:30:59+09:00
description: "User guide for euire Desk"
license: ""
licenseLink: ""
sitelink: https://docs.eurie.io
tags:
- documentation
thumbnail: /img/docs.eurie.io-tn.png
title: eurie Desk docs
---
+15
View File
@@ -0,0 +1,15 @@
---
lastmod: 2016-03-01
date: 2016-03-01T12:38:00Z
description: Fabio Alessandro Locati personal blog.
license: AGPLv3
licenseLink: ""
sitelink: http://fale.io/
sourceLink: https://github.com/fale/fale.io
tags:
- personal
- blog
thumbnail: /img/fale-tn.png
title: fale.io
---
+13
View File
@@ -0,0 +1,13 @@
---
date: 2016-10-17T16:19:24+08:00
description: "a personal blog"
license: ""
licenseLink: ""
sitelink: https://fixatom.com/
tags:
- personal
- blog
thumbnail: /img/fixatom-tn.png
title: Atom
---
+16
View File
@@ -0,0 +1,16 @@
---
lastmod: 2015-09-08
date: 2014-08-26T19:40:00-04:00
description: Multilingual, community documentation and blog site
license: ""
licenseLink: ""
sitelink: https://www.fxsitecompat.com/
sourceLink: https://github.com/fxsitecompat/www.fxsitecompat.com
tags:
- community
- documentation
- translation
thumbnail: /img/fxsitecompat-tn.png
title: Firefox Site Compatibility
---
+15
View File
@@ -0,0 +1,15 @@
---
date: 2016-02-13T21:47:27+01:00
description: "Projects, music and drawings, the personal web page of Gustav Näslund"
license: ""
licenseLink: ""
sitelink: http://www.gntech.se/
tags:
- personal
- blog
- projects
- music
- drawings
thumbnail: /img/gntech-tn.png
title: gntech.se
---
+13
View File
@@ -0,0 +1,13 @@
---
lastmod: 2015-05-25
date: 2013-11-01T07:32:00Z
description: ""
license: MIT
licenseLink: ""
sitelink: http://getgb.io
tags:
- project
thumbnail: /img/gogb-tn.jpg
title: GoGB
---
+13
View File
@@ -0,0 +1,13 @@
---
lastmod: 2015-11-20
date: 2015-11-20T20:46:00Z
description: "Code for Go in 5 Minutes Screencasts"
license: "Apache License 2.0"
licenseLink: "https://github.com/arschles/go-in-5-minutes/blob/master/LICENSE"
sitelink: http://www.goin5minutes.com/
sourceLink: https://github.com/arschles/go-in-5-minutes/tree/master/www
tags:
- screencasts
thumbnail: /img/goin5minutes-tn.png
title: Go in 5 minutes
---
+11
View File
@@ -0,0 +1,11 @@
---
date: 2016-03-05T14:30:21+01:00
description: "Personal profile page of Horst Gutmann"
sitelink: http://h10n.me/
sourceLink: https://github.com/zerok/h10n.me
tags:
- personal
- profile
thumbnail: /img/h10n.me-tn.png
title: h10n.me
---
+15
View File
@@ -0,0 +1,15 @@
---
lastmod: 2015-01-27
date: 2013-07-01T07:32:00Z
description: This site
license: Simpl
licenseLink: ""
sitelink: http://gohugo.io/
sourceLink: https://github.com/spf13/hugo/tree/master/docs
tags:
- documentation
- bootstrap
thumbnail: /img/hugo-tn.jpg
title: Hugo
---
+15
View File
@@ -0,0 +1,15 @@
---
date: 2016-06-06T14:42:59-04:00
description: ""
license: ""
licenseLink: ""
sitelink: https://jamescampbell.us/
sourceLink: https://github.com/jamesacampbell/causes-and-effects-hugo
tags:
- personal
- blog
thumbnail: /img/jamescampbell-tn.png
title: jamescampbell.us
---
+12
View File
@@ -0,0 +1,12 @@
---
date: 2016-02-11T23:41:27+01:00
description: "Personal web site and blog of digital director Jorgen Nilsson"
license: ""
licenseLink: ""
sitelink: http://jorgennilsson.com/
tags:
- personal
- blog
thumbnail: /img/jorgennilsson-tn.png
title: jorgennilsson.com
---
+16
View File
@@ -0,0 +1,16 @@
---
lastmod: 2015-01-27
date: 2014-02-27T20:35:00Z
description: Kieran Healy's Website
license: ""
licenseLink: ""
sitelink: http://kieranhealy.org/
sourceLink: https://github.com/kjhealy/kieranhealy.hugo
tags:
- personal
- blog
- academic
thumbnail: /img/kjhealy-tn.jpg
title: Kieran Healy
---
+15
View File
@@ -0,0 +1,15 @@
---
date: 2016-05-15T23:18:16+02:00
description: "klingt.net is the personal homepage of Andreas Linz."
license: ""
licenseLink: ""
sitelink: https://klingt.net/
sourceLink: https://github.com/klingtnet/klingt.net
tags:
- personal
- blog
- programming
thumbnail: /img/klingt-net-tn.png
title: klingt net
---
+14
View File
@@ -0,0 +1,14 @@
---
lastmod: 2015-01-27
date: 2014-11-01T07:32:00Z
description: Corporate Site for Launchcode Software Studios
license: Copyright Launchcode Software Studios
licenseLink: ""
sitelink: http://www.launchcode5.com/
sourceLink: https://github.com/Launchcode5/launchcode5.com
tags:
- bootstrap
thumbnail: /img/launchcode-tn.jpg
title: Launchcode Software Studios
---
+14
View File
@@ -0,0 +1,14 @@
---
lastmod: 2016-01-24
date: 2016-01-24T16:10:00Z
description: Site of author Lee Penney
license: MIT
licenseLink: ""
sitelink: http://leepenney.com/
tags:
- personal
- website
thumbnail: /img/leepenney-tn.jpg
title: Lee Penney
---
+12
View File
@@ -0,0 +1,12 @@
---
date: 2016-07-24T00:00:00+08:00
description: "Leow Kah Man - Tech Blog"
license: ""
licenseLink: ""
sitelink: https://www.leowkahman.com/
tags:
- personal
- blog
thumbnail: /img/leowkahman-tn.png
title: Leow Kah Man - Tech Blog
---
+15
View File
@@ -0,0 +1,15 @@
---
lastmod: 2014-08-26
date: 2014-08-25T18:59:30-04:00
description: Alexandr Morozov
license: ""
licenseLink: ""
sitelink: http://lk4d4.darth.io/
sourceLink: https://github.com/LK4D4/lk4d4.darth.io
tags:
- personal
- blog
thumbnail: /img/lk4d4-tn.jpg
title: lk4d4.darth.io
---
+15
View File
@@ -0,0 +1,15 @@
---
lastmod: 2015-11-15
date: 2015-11-15T11:20:00-08:00
description: "Losslesslife covers everything high-end and audiophile headphones. Headphones and headphone amplifiers, accessories, how-to guides, and reviews."
sitelink: http://pages.losslesslife.com/
tags:
- headphones
- electronics
- technical
- reviews
- education
- audiophile
thumbnail: /img/losslesslife-tn.png
title: LosslessLife
---
+14
View File
@@ -0,0 +1,14 @@
---
lastmod: 2015-06-20
date: 2015-06-20
description: ""
license: ""
licenseLink: ""
sitelink: http://mariosanchez.org/
sourceLink: https://github.com/mariobox/Hugo-Source
tags:
- personal
- blog
thumbnail: /img/mariosanchez-tn.jpg
title: mariosanchez.org
---
+14
View File
@@ -0,0 +1,14 @@
---
date: 2016-06-13T19:38:56-04:00
description: "Free Open Source Document Management System"
license: "Apache 2.0"
licenseLink: ""
sitelink: http://www.mayan-edms.com/
sourceLink: https://gitlab.com/mayan-edms/website
tags:
- paperless
- floss
thumbnail: /img/mayan-edms-tn.png
title: Mayan EDMS
---
+15
View File
@@ -0,0 +1,15 @@
---
lastmod: 2014-08-26
date: 2014-08-26T11:47:11-04:00
description: ""
license: Simpl-2.0
licenseLink: ""
sitelink: http://michaelwhatcott.com/
sourceLink: https://bitbucket.org/mdwhatcott/michaelwhatcott.com-boilerplate/src
tags:
- personal
- blog
thumbnail: /img/michaelwhatcott-tn.jpg
title: michaelwhatcott
---
@@ -0,0 +1,13 @@
---
date: 2016-03-09T14:14:16-05:00
description: "The MongoDB Engineering Journal -- for builders, by builders."
license: ""
licenseLink: ""
sitelink: http://engineering.mongodb.com/
tags:
- engineering
- blog
thumbnail: /img/mongodb-eng-tn.png
title: The Mongodb Engineering Journal
---
+14
View File
@@ -0,0 +1,14 @@
---
date: 2016-06-19T11:38:39+02:00
description: "Personal website Martijn ten Bhömer"
license: ""
licenseLink: ""
sitelink: https://www.mtbhomer.com/
sourceLink: https://github.com/mtbhomer/web-portfolio
tags:
- personal
- portfolio
- design
thumbnail: /img/mtbhomer-tn.png
title: mtbhomer.com
---
+15
View File
@@ -0,0 +1,15 @@
---
lastmod: 2014-08-26
date: 2014-08-26T12:15:48-04:00
description: ""
license: ""
licenseLink: ""
sitelink: http://blog.nickoneill.name/
sourceLink: https://github.com/nickoneill/blog.nickoneill.name
tags:
- personal
- blog
thumbnail: /img/nickoneill-tn.jpg
title: authenticgeek
---
+14
View File
@@ -0,0 +1,14 @@
---
lastmod: 2015-10-24
date: 2015-10-24T14:06:00+05:30
description: Personal blog
license: ""
licenseLink: ""
sitelink: http://ninjaducks.in
sourceLink: https://github.com/shivanshuag/shivanshuag.github.io/tree/new
tags:
- personal
- blog
thumbnail: /img/ninjaducks-tn.png
title: ninjaducks.in
---
+15
View File
@@ -0,0 +1,15 @@
---
lastmod: 2014-08-26
date: 2014-08-26T09:47:00-04:00
description: ""
license: ""
licenseLink: ""
sitelink: http://blog.ninya.io/
sourceLink: https://github.com/ninya-io/ninya-io.github.io/tree/dev
tags:
- project
- blog
thumbnail: /img/ninya-tn.jpg
title: ninya.io
---
+11
View File
@@ -0,0 +1,11 @@
---
lastmod: 2015-08-26
date: 2015-08-26T22:33:00Z
description: "NoDesk | All Things Digital Nomad"
sitelink: http://nodesk.co/
tags:
- digital nomad
- web
thumbnail: /img/nodesk-tn.png
title: nodesk.co
---
+13
View File
@@ -0,0 +1,13 @@
---
date: 2016-05-22T17:54:51+08:00
description: "Peter Y. Chuang - Novelist, Short Story Writer"
license: ""
licenseLink: ""
sitelink: https://novelist.xyz
sourceLink: https://github.com/peterychuang/peterychuang.github.io/tree/source
tags:
- personal
- blog
thumbnail: /img/novelist-xyz.png
title: Peter Y. Chuang
---
+15
View File
@@ -0,0 +1,15 @@
---
lastmod: 2015-01-27
date: 2014-08-21T12:21:18-04:00
description: ""
license: ""
licenseLink: ""
sitelink: http://npf.io/
sourceLink: https://github.com/natefinch/npf
tags:
- personal
- blog
thumbnail: /img/npf-tn.jpg
title: npf.io
---
+15
View File
@@ -0,0 +1,15 @@
---
lastmod: 2014-08-26
date: 2014-08-26T11:30:57-04:00
description: ""
license: ""
licenseLink: ""
sitelink: https://peteraba.com/
sourceLink: https://github.com/peteraba/peteraba.com
tags:
- personal
- blog
thumbnail: /img/peteraba-tn.jpg
title: peteraba
---
+13
View File
@@ -0,0 +1,13 @@
---
date: 2016-10-04T21:01:18+01:00
description: "My Take on Cloud"
license: ""
licenseLink: ""
sitelink: https://rahulrai.in
sourceLink: https://github.com/moonytheloony/Blog-Web
tags:
- personal
- blog
thumbnail: /img/rahulrai_in-tn.png
title: My Take on Cloud
---
+14
View File
@@ -0,0 +1,14 @@
---
lastmod: 2016-01-20
date: 2016-01-20T07:32:00Z
description: ""
license: MIT
licenseLink: ""
sitelink: http://techblog.rakuten.co.jp/
tags:
- company
- blog
thumbnail: /img/rakutentech-tn.png
title: Rakuten Tech Blog
---
+14
View File
@@ -0,0 +1,14 @@
---
date: 2016-08-05T15:33:56-07:00
description: "The personal website of Randall Degges."
license: "Unlicense"
licenseLink: "http://unlicense.org/"
sitelink: https://www.rdegges.com/
sourceLink: https://github.com/rdegges/rdegges-www
tags:
- personal
- blog
thumbnail: /img/rdegges-tn.png
title: Randall Degges
---
+12
View File
@@ -0,0 +1,12 @@
---
lastmod: 2015-11-16
date: 2015-11-16T08:36:00Z
description: Restored text files
sitelink: http://readtext.org/
tags:
- textfiles
- reading
thumbnail: /img/readtext-tn.png
title: ReadText
---
+17
View File
@@ -0,0 +1,17 @@
---
lastmod: 2015-09-08
date: 2015-09-07T00:12:00-07:00
description: "Personal website dedicated to electronics, programming, and reviews."
license: "MIT"
licenseLink: "https://opensource.org/licenses/MIT"
sitelink: http://richardsumilang.com/
sourceLink: https://github.com/richardsumilang-blog
tags:
- personal
- blog
- technical
- electronics
- reviews
thumbnail: /img/richardsumilang-tn.png
title: Richard Sumilang - Top Secret Labs
---
+16
View File
@@ -0,0 +1,16 @@
---
lastmod: 2016-02-01
date: 2015-05-20T04:32:00Z
description: Rick Cogley's personal site, powered by Hugo.
license: MIT
licenseLink: ""
sitelink: http://rick.cogley.info/
sourceLink: https://github.com/RickCogley/RCC-Hugo2015
tags:
- personal
- blog
- rickcogley
- japan
thumbnail: /img/rick_cogley_info-tn.jpg
title: rick.cogley.info
---
+16
View File
@@ -0,0 +1,16 @@
---
lastmod: 2015-10-01
date: 2015-09-27T00:00:00Z
description: Official Company Website
license: ""
licenseLink: ""
sitelink: http://ridingbytes.com/
tags:
- company
- website
- blog
- tech
thumbnail: /img/ridingbytes-tn.png
title: RIDING BYTES
---
+15
View File
@@ -0,0 +1,15 @@
---
lastmod: 2016-03-26
date: 2016-03-26T17:47:40+01:00
description: "Robert Basic is a web developer from Serbia."
license: ""
licenseLink: ""
sitelink: http://robertbasic.com/
sourceLink: https://github.com/robertbasic/robertbasic.com-hugo
tags:
- personal
- blog
thumbnail: /img/robertbasic-tn.jpg
title: Robert Basic's blog
---
+15
View File
@@ -0,0 +1,15 @@
---
lastmod: 2015-08-08
date: 2015-07-21T10:00:00Z
description: Personal portfolio, created with Hugo
license: MIT
licenseLink: ""
sitelink: http://scottcwilson.github.io/
sourceLink: https://github.com/scottcwilson/hugosite
tags:
- personal
- blog
thumbnail: /img/scottcwilson-tn.png
title: scottcwilson.com
---
+14
View File
@@ -0,0 +1,14 @@
---
date: 2016-10-10T07:32:00Z
description: Personal blog.
license: ""
licenseLink: ""
sitelink: http://shapeshed.com/
sourceLink: https://github.com/shapeshed/shapeshed.com
tags:
- personal
- blog
thumbnail: /img/shapeshed-tn.png
title: shapeshed.com
---
+14
View File
@@ -0,0 +1,14 @@
---
lastmod: 2016-02-07
date: 2016-02-07T10:30:00Z
description: Shelan's Blog
license: MIT
licenseLink: ""
sitelink: http://shelan.org/
sourceLink: https://github.com/shelan/my-hugo-site
tags:
- personal
- blog
thumbnail: /img/shelan-tn.png
title: shelan.org
---
+12
View File
@@ -0,0 +1,12 @@
---
date: 2016-03-28T14:16:59+02:00
description: "Custom theme of small italian software house"
license: ""
licenseLink: ""
sitelink: http://silvergeko.it/
tags:
- profesional
thumbnail: /img/silvergeko.jpg
title: Silvergeko
---
+15
View File
@@ -0,0 +1,15 @@
---
lastmod: 2016-03-11
date: 2015-11-29T07:16:53-05:00
description: Salar Rahmanian Blog
license: MIT
licenseLink: https://raw.githubusercontent.com/softinio/softinio.com/master/LICENSE
sitelink: http://www.softinio.com/
sourceLink: https://github.com/softinio/softinio.com
tags:
- personal
- technical
- blog
thumbnail: /img/softinio-tn.png
title: Salar Rahmanian
---

Some files were not shown because too many files have changed in this diff Show More