Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
captn3m0 committed May 27, 2019
0 parents commit 870c1ca
Show file tree
Hide file tree
Showing 9 changed files with 331 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
; This file is for unifying the coding style for different editors and IDEs.
; More information at http://EditorConfig.org

root = true
; Use 2 spaces for indentation in all files

[*]
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
indent_style = space
indent_size = 2
insert_final_newline = true
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
_site
.sass-cache
.jekyll-metadata
vendor/
30 changes: 30 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
source "https://rubygems.org"

# Hello! This is where you manage which Jekyll version is used to run.
# When you want to use a different version, change it below, save the
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
#
# bundle exec jekyll serve
#
# This will help ensure the proper Jekyll version is running.
# Happy Jekylling!
gem "jekyll", "~> 3.8.5"

# This is the default theme for new Jekyll sites. You may change this to anything you like.
gem "minima", "~> 2.0"

# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
# uncomment the line below. To upgrade, run `bundle update github-pages`.
# gem "github-pages", group: :jekyll_plugins

# If you have any plugins, put them here!
group :jekyll_plugins do
gem "jekyll-feed", "~> 0.6"
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]

# Performance-booster for watching directories on Windows
gem "wdm", "~> 0.1.0" if Gem.win_platform?

74 changes: 74 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
GEM
remote: https://rubygems.org/
specs:
addressable (2.6.0)
public_suffix (>= 2.0.2, < 4.0)
colorator (1.1.0)
concurrent-ruby (1.1.5)
em-websocket (0.5.1)
eventmachine (>= 0.12.9)
http_parser.rb (~> 0.6.0)
eventmachine (1.2.7)
ffi (1.11.1)
forwardable-extended (2.6.0)
http_parser.rb (0.6.0)
i18n (0.9.5)
concurrent-ruby (~> 1.0)
jekyll (3.8.5)
addressable (~> 2.4)
colorator (~> 1.0)
em-websocket (~> 0.5)
i18n (~> 0.7)
jekyll-sass-converter (~> 1.0)
jekyll-watch (~> 2.0)
kramdown (~> 1.14)
liquid (~> 4.0)
mercenary (~> 0.3.3)
pathutil (~> 0.9)
rouge (>= 1.7, < 4)
safe_yaml (~> 1.0)
jekyll-feed (0.12.1)
jekyll (>= 3.7, < 5.0)
jekyll-sass-converter (1.5.2)
sass (~> 3.4)
jekyll-seo-tag (2.6.1)
jekyll (>= 3.3, < 5.0)
jekyll-watch (2.2.1)
listen (~> 3.0)
kramdown (1.17.0)
liquid (4.0.3)
listen (3.1.5)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
ruby_dep (~> 1.2)
mercenary (0.3.6)
minima (2.5.0)
jekyll (~> 3.5)
jekyll-feed (~> 0.9)
jekyll-seo-tag (~> 2.1)
pathutil (0.16.2)
forwardable-extended (~> 2.6)
public_suffix (3.1.0)
rb-fsevent (0.10.3)
rb-inotify (0.10.0)
ffi (~> 1.0)
rouge (3.3.0)
ruby_dep (1.5.0)
safe_yaml (1.0.5)
sass (3.7.4)
sass-listen (~> 4.0.0)
sass-listen (4.0.0)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)

PLATFORMS
ruby

DEPENDENCIES
jekyll (~> 3.8.5)
jekyll-feed (~> 0.6)
minima (~> 2.0)
tzinfo-data

BUNDLED WITH
2.0.1
43 changes: 43 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.

# Site settings
# These are used to personalize your new site. If you look in the HTML files,
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
# You can create any custom variable you would like, and they will be accessible
# in the templates via {{ site.myvariable }}.
title: Your awesome title
email: [email protected]
description: >- # this means to ignore newlines until "baseurl:"
Write an awesome description for your new site here. You can edit this
line in _config.yml. It will appear in your document head meta (for
Google search results) and in your feed.xml site description.
baseurl: "" # the subpath of your site, e.g. /blog
url: "" # the base hostname & protocol for your site, e.g. http://example.com
twitter_username: jekyllrb
github_username: jekyll

# Build settings
markdown: kramdown
theme: minima
plugins:
- jekyll-feed

# Exclude from processing.
# The following items will not be processed, by default. Create a custom list
# to override the default setting.
# exclude:
# - Gemfile
# - Gemfile.lock
# - node_modules
# - vendor/bundle/
# - vendor/cache/
# - vendor/gems/
# - vendor/ruby/
15 changes: 15 additions & 0 deletions _layouts/post.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
layout: default
---

{{content}}

{% capture now %}{{ "now" | date: "%s" | plus:0 }}{% endcapture %}

More Information is available on the <a href="{{page.url}}">{{page.title}} website</a>.

{% for release in page.releases %}
<pre>
{{release[0] | json }}
</pre>
{% endfor %}
115 changes: 115 additions & 0 deletions config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
php:
url: https://www.php.net/supported-versions.php
releases:
'7.1':
release: 2016-12-01
eol: 2019-12-01
support: 2018-12-01
current: 7.1.29
'7.2':
release: 2017-11-30
eol: 2020-11-30
support: 2019-11-30
current: 7.2.18
'7.3':
release: 2018-12-06
eol: 2021-12-06
support: 2020-12-06
current: 7.3.5
laravel:
url: https://laravel.com/docs/5.8/releases#support-policy
releases:
'5.5':
release: 2017-08-30
support: 2019-08-30
eol: 2020-08-30
current: 5.5.45
lts: true
'5.7':
release: 2018-09-04
support: 2019-03-04
eol: 2019-09-04
current: 5.7.28
'5.8':
release: 2019-02-26
support: 2019-09-26
eol: 2020-02-26
current: 5.8.18
python:
releases:
'3.7':
release: 2018-06-27
eol: 2023-06-27
current: 3.7.3
'3.6':
release: 2016-12-23
eol: 2021-12-23
current: 3.6.8
'2.7':
release: 2010-07-03
eol: 2020-01-01
current: 2.7.16
'3.5':
release: 2015-09-13
eol: 2020-09-13
nodejs:
url: https://nodejs.org/en/about/releases/
releases:
v10:
release: 2018-04-24
lts: 2018-10-30
support: 2020-04-01
eol: 2021-04-01
v12:
release: 2019-04-23
lts: 2019-10-22
support: 2021-04-01
eol: 2021-04-01
v14:
release: 2020-04-21
lts: 2020-10-20
support: 2022-04-01
eol: 2023-04-01
ubuntu:
url: https://wiki.ubuntu.com/Releases
releases:
19.04:
release: 2019-04-18
support: 2020-01-01
eol: 2020-01-01
18.10:
release: 2018-10-18
support: 2019-07-01
eol: 2019-07-01
18.04:
release: 2018-04-26
support: 2023-04-01
eol: 2028-04-01
current: 18.04.2
16.04:
release: 2018-04-21
support: 2021-04-01
eol: 2024-04-01
current: 18.04.6
14.04:
release: 2014-04-17
support: 2019-04-01
eol: 2022-04-01
current: 18.04.6
alpine:
url: https://wiki.alpinelinux.org/wiki/Alpine_Linux:Releases
releases:
v3.9:
release: 2019-01-29
current: v3.9.4
eol: 2021-01-01
support: true
v3.8:
release: 2018-06-26
current: v3.8.2
support: true
v3.7:
release: 2017-11-30
current: v3.7.0
support: true
eol: 2019-11-01
12 changes: 12 additions & 0 deletions index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
# Feel free to add content and custom Front Matter to this file.
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults

layout: home
---

- [alpine](/alpine)
- </laravel>
- [php](/php)
- </python>
- </ubuntu>
25 changes: 25 additions & 0 deletions php.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
title: PHP
layout: post
url: https://www.php.net/supported-versions.php
releases:
'7.1':
release: 2016-12-01
eol: 2019-12-01
support: 2018-12-01
current: 7.1.29
'7.2':
release: 2017-11-30
eol: 2020-11-30
support: 2019-11-30
current: 7.2.18
'7.3':
release: 2018-12-06
eol: 2021-12-06
support: 2020-12-06
current: 7.3.5
---

Each release branch of PHP is fully supported for two years from its initial stable release. During this period, bugs and security issues that have been reported are fixed and are released in regular point releases.

After this two year period of active support, each branch is then supported for an additional year for critical security issues only. Releases during this period are made on an as-needed basis: there may be multiple point releases, or none, depending on the number of reports.

0 comments on commit 870c1ca

Please sign in to comment.