diff --git a/src/GergelyPolonkai/FrontBundle/Resources/views/Default/front_base.html.twig b/src/GergelyPolonkai/FrontBundle/Resources/views/Default/front_base.html.twig index d6b2bab..5452fc9 100644 --- a/src/GergelyPolonkai/FrontBundle/Resources/views/Default/front_base.html.twig +++ b/src/GergelyPolonkai/FrontBundle/Resources/views/Default/front_base.html.twig @@ -9,10 +9,23 @@
+
{% block content %}{% endblock content %}
diff --git a/src/GergelyPolonkai/FrontBundle/Resources/views/Default/index.html.twig b/src/GergelyPolonkai/FrontBundle/Resources/views/Default/index.html.twig index ca5b181..a1e8386 100644 --- a/src/GergelyPolonkai/FrontBundle/Resources/views/Default/index.html.twig +++ b/src/GergelyPolonkai/FrontBundle/Resources/views/Default/index.html.twig @@ -1,5 +1,10 @@ {% extends 'GergelyPolonkaiFrontBundle:Default:front_base.html.twig' %} {% block content %} +

Upgrades requiring a reboot on Linux? At last!

+

22 June, 2012 :: 22:04 by Gergely Polonkai

+

I've recently received an article on Google+ about Fedora's new idea: package upgrades that require a reboot. The article said that Linux guys have lost their primary adoo: "Haha! I don't have to reboot my system to install system upgrades!" My answer was always this: "You should..."

+

I think this can be a great idea if distros implement it well. PackageKit was a good first step on this road. That software could easily solve such an issue. However, it is sooo easy to do it wrong. The kernel, of course, can not be upgraded online (or could it be? I have some theories on this subject, wonder if it can be implemented...), but other packages are much different. From the users' point of view the best would be if the packages would be upgraded in the background seemlessly. E.g. PackageKit should check if the given executable is running. If not, it should upgrade it, while notifying the user like "hey dude, don't start Anjuta now, I'm upgrading it!", or simply denying to start it. Libraries are a bit different, as PackageKit should check if any running executables are using the library. Meanwhile, PK should also keep a notification somewhere telling the users that some packages could be upgraded, but without stopping this-and-that, it can not be done.

+

I know these things are easier said than done. But I think (a) users should tell such ideas to the developers and (b) developers (mostly large companies, like Microsoft or Apple) should listen to them, and at least think of these ideas. Some users are not as stupid as they think...

Wordpress madness

14 June, 2012 :: 08:40 by Gergely Polonkai

I'm a bit fed up that I had to install MySQL on my server to have Wordpress working, so I've Googled a bit to find a solution for my pain. I found this: http://codex.wordpress.org/Using_Alternative_Databases. I don't know when this post was written, but I think it's a bit out of date. I mean come on, PDO is the part of PHP for ages now, and they say adding a DBAL to the dependencies would be a project as large as (or larger than) WP itself. Well, yes, but PHP is already a dependency, isn't it? Remove it guys, it's too large!

diff --git a/web/css/front.css b/web/css/front.css index b40ec49..c01f2e4 100644 --- a/web/css/front.css +++ b/web/css/front.css @@ -19,6 +19,8 @@ body { height: 120px; background-color: #4d4d4d; color: #ffffff; + position: absolute; + width: 960px; } #header h1 { @@ -29,6 +31,11 @@ body { padding-top: 45px; } +#header h1 a { + color: #ffffff; + text-decoration: none; +} + #header h2 { text-align: right; margin: 0 10px 0 0; @@ -37,10 +44,24 @@ body { padding-top: 5px; } +#contact-list { + position: absolute; + right: -22px; + width: 20px; +} + +#contact-list a { + display: block; +} + #content { padding: 8px; } +#content-padding { + height: 120px; +} + #content h3 { margin: .5em 0 .2em 0; } diff --git a/web/images/deviantart_16.png b/web/images/deviantart_16.png new file mode 100755 index 0000000..363accb Binary files /dev/null and b/web/images/deviantart_16.png differ diff --git a/web/images/email_16.png b/web/images/email_16.png new file mode 100755 index 0000000..2cabb17 Binary files /dev/null and b/web/images/email_16.png differ diff --git a/web/images/facebook_16.png b/web/images/facebook_16.png new file mode 100755 index 0000000..f0faf29 Binary files /dev/null and b/web/images/facebook_16.png differ diff --git a/web/images/google_plus_16.png b/web/images/google_plus_16.png new file mode 100644 index 0000000..cc14390 Binary files /dev/null and b/web/images/google_plus_16.png differ diff --git a/web/images/googletalk_16.png b/web/images/googletalk_16.png new file mode 100755 index 0000000..a003ddf Binary files /dev/null and b/web/images/googletalk_16.png differ diff --git a/web/images/linkedin_16.png b/web/images/linkedin_16.png new file mode 100644 index 0000000..0ebcde0 Binary files /dev/null and b/web/images/linkedin_16.png differ diff --git a/web/images/skype_16.png b/web/images/skype_16.png new file mode 100644 index 0000000..8978a15 Binary files /dev/null and b/web/images/skype_16.png differ diff --git a/web/images/tumblr_16.png b/web/images/tumblr_16.png new file mode 100644 index 0000000..7bb562f Binary files /dev/null and b/web/images/tumblr_16.png differ diff --git a/web/images/twitter_16.png b/web/images/twitter_16.png new file mode 100644 index 0000000..9f033ce Binary files /dev/null and b/web/images/twitter_16.png differ diff --git a/web/images/windows_16.png b/web/images/windows_16.png new file mode 100644 index 0000000..7dc7910 Binary files /dev/null and b/web/images/windows_16.png differ