Skip to content

Commit

Permalink
Initial check in
Browse files Browse the repository at this point in the history
  • Loading branch information
egonw committed Jul 26, 2023
0 parents commit 097ba23
Show file tree
Hide file tree
Showing 7 changed files with 97 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Gemfile.lock
25 changes: 25 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
permalink: /404.html
layout: default
---

<style type="text/css" media="screen">
.container {
margin: 10px auto;
max-width: 600px;
text-align: center;
}
h1 {
margin: 30px 0;
font-size: 4em;
line-height: 1;
letter-spacing: -1px;
}
</style>

<div class="container">
<h1>404</h1>

<p><strong>Page not found :(</strong></p>
<p>The requested page could not be found.</p>
</div>
33 changes: 33 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
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", "~> 4.3.2"
# This is the default theme for new Jekyll sites. You may change this to anything you like.
gem "minima", "~> 2.5"
# 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.12"
end

# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
# and associated library.
platforms :mingw, :x64_mingw, :mswin, :jruby do
gem "tzinfo", ">= 1", "< 3"
gem "tzinfo-data"
end

# Performance-booster for watching directories on Windows
gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]

# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem
# do not have a Java counterpart.
gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby]
11 changes: 11 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
title: chem-bla-ics
email: [email protected]
description:
baseurl: "/blog" # the subpath of your site, e.g. /blog
url: "http://egonw.github.io" # the base hostname & protocol for your site, e.g. http://example.com
github_username: egonw

# Build settings
theme: minima
plugins:
- jekyll-feed
18 changes: 18 additions & 0 deletions _posts/2005-10-15-chem-bla-ics.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
layout: post
title: "Chem-bla-ics"
date: 2005-10-15
---

This new blog will deal with chemblaics in the broader sense, and will not be restricted to research in this field
in which I am involved personally.

Chemblaics (pronounced chem-bla-ics) is the science that uses computers to address and possibly solve problems in
the area of chemistry, biochemistry and related fields. The general denomiter seems to be molecules, but I might
be wrong there.

The **big** difference between chemblaics and areas as cheminformatics, chemoinformatics, chemometrics, proteochemometrics,
etc, is that chemblaic *only* uses open source software, making experimental results reproducable and validatable.
And this is a **big** difference with how research in these areas is now often done.

Egon
6 changes: 6 additions & 0 deletions about.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
layout: page
title: About
permalink: /about/
---

3 changes: 3 additions & 0 deletions index.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
layout: home
---

0 comments on commit 097ba23

Please sign in to comment.