<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Blog of Ortz - Latest Comments</title><link xmlns="http://www.w3.org/2005/Atom" rel="http://api.friendfeed.com/2008/03#sup" href="http://disqus.com/sup/all.sup#forumcomments-ead86323" type="application/json"/><link>http://blogofortz.disqus.com/</link><description></description><atom:link href="http://blogofortz.disqus.com/comments.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Mon, 04 Oct 2010 14:34:05 -0000</lastBuildDate><item><title>Re: WPF</title><link>http://ortz.org/2010/10/03/wpf/#comment-83952778</link><description>&lt;p&gt;Yeah I've been really excited. Progress has been lightning speed relative to the past year.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ortzinator</dc:creator><pubDate>Mon, 04 Oct 2010 14:34:05 -0000</pubDate></item><item><title>Re: WPF</title><link>http://ortz.org/2010/10/03/wpf/#comment-83936375</link><description>&lt;p&gt;I like where this is going! WPF with MVVM is really cool. Maybe before long I can start helping you out again.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Max Schmeling</dc:creator><pubDate>Mon, 04 Oct 2010 14:18:28 -0000</pubDate></item><item><title>Re: Dynamic Command Plugins</title><link>http://blog.ortz.org/2009/04/12/dynamic-command-plugins/#comment-39722496</link><description>&lt;p&gt;good!&lt;br&gt; thanks&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">CMBL</dc:creator><pubDate>Fri, 07 Aug 2009 06:59:45 -0000</pubDate></item><item><title>Re: Apache Vhost Creation Script (Gentoo)</title><link>http://ortz.org/2008/11/13/apache-vhost-creation-script-gentoo/#comment-39722477</link><description>&lt;p&gt;Cool, thanks!&lt;/p&gt;

&lt;p&gt;htdocs is the group I use for restricting permissions to web stuff, but I didn't know you could do that.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ortzinator</dc:creator><pubDate>Wed, 29 Jul 2009 16:27:23 -0000</pubDate></item><item><title>Re: Apache Vhost Creation Script (Gentoo)</title><link>http://ortz.org/2008/11/13/apache-vhost-creation-script-gentoo/#comment-39722476</link><description>&lt;p&gt;PS:  I forgot ,&lt;/p&gt;

&lt;p&gt;chown apache: $dir&lt;/p&gt;

&lt;p&gt;the  ":" automagicly picks the default group of the user. &lt;/p&gt;

&lt;p&gt;An actual restart of apache is not needed  coz you only added something to the config . So  apache2ctl graceful  is sufficient I think . &lt;br&gt;This also prevents users of other sites on thesame server to not get disconnected . &lt;/p&gt;

&lt;p&gt;maybe before the restart / gracefull  another check can be added  like :&lt;/p&gt;

&lt;p&gt; /usr/sbin/apache2 -S | grep OK &lt;/p&gt;

&lt;p&gt;Just my 5 cents &lt;/p&gt;

&lt;p&gt;Cheerio's&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Blokkie</dc:creator><pubDate>Wed, 29 Jul 2009 09:06:12 -0000</pubDate></item><item><title>Re: Apache Vhost Creation Script (Gentoo)</title><link>http://ortz.org/2008/11/13/apache-vhost-creation-script-gentoo/#comment-39722475</link><description>&lt;p&gt;I've moved some stuff arround coz I did not like adding everything to the default_vhost.conf&lt;/p&gt;

&lt;p&gt;I also added  a custom log file and added some allow permission stuff &lt;/p&gt;

&lt;p&gt;here it go's :&lt;/p&gt;

&lt;p&gt;#!/bin/bash&lt;br&gt;#Copyright (c) 2008 Brian Ortiz "Ortzinator"&lt;br&gt;#&lt;br&gt;#Permission is hereby granted, free of charge, to any person obtaining a copy&lt;br&gt;#of this software and associated documentation files (the "Software"), to deal&lt;br&gt;#in the Software without restriction, including without limitation the rights&lt;br&gt;#to use, copy, modify, merge, publish, distribute, sublicense, and/or sell&lt;br&gt;#copies of the Software, and to permit persons to whom the Software is&lt;br&gt;#furnished to do so, subject to the following conditions:&lt;br&gt;#&lt;br&gt;#The above copyright notice and this permission notice shall be included in&lt;br&gt;#all copies or substantial portions of the Software.&lt;br&gt;#&lt;br&gt;#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR&lt;br&gt;#IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,&lt;br&gt;#FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE&lt;br&gt;#AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER&lt;br&gt;#LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,&lt;br&gt;#OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN&lt;br&gt;#THE SOFTWARE.&lt;/p&gt;

&lt;p&gt;if [ $# -ne 1 ]&lt;br&gt;then&lt;br&gt;echo Exactly one argument required&lt;br&gt;exit 1&lt;br&gt;fi&lt;/p&gt;

&lt;p&gt;dir=/var/www/$1&lt;/p&gt;

&lt;p&gt;if [ -d $dir ]&lt;br&gt;then&lt;br&gt;echo ERROR: directory $dir already exists!&lt;br&gt;exit 1&lt;br&gt;else&lt;br&gt;echo Creating directory $dir&lt;br&gt;mkdir $dir || { echo Could not create directory $dir; exit 1; }&lt;/p&gt;

&lt;p&gt;echo Creating directory $dir/htdocs&lt;br&gt;mkdir $dir/htdocs  || { echo Could not create directory $dir/htdocs; exit 1; }&lt;/p&gt;

&lt;p&gt;echo Setting permissions&lt;br&gt;chown apache: $dir  || { echo Error setting permissions for $dir; exit 1; }&lt;br&gt;chown apache: $dir/htdocs  || { echo Error setting permissions for $dir/htdocs; exit 1; }&lt;/p&gt;

&lt;p&gt;echo "&lt;/p&gt;

&lt;p&gt;Placeholder lol&lt;/p&gt;

&lt;p&gt;" &amp;gt; $dir/htdocs/index.html&lt;br&gt;chown blokkie: $dir/htdocs/index.html  || { echo Error setting permissions for $dir/htdocs/index.html; exit 1; }&lt;/p&gt;

&lt;p&gt;chmod -R 775 $dir&lt;/p&gt;

&lt;p&gt;echo "&lt;/p&gt;

&lt;p&gt; &lt;br&gt;ServerName $1&lt;br&gt;DocumentRoot /var/www/$1/htdocs&lt;/p&gt;

&lt;p&gt;Allow from all&lt;br&gt;AllowOverride all&lt;br&gt;Order allow,deny&lt;/p&gt;

&lt;p&gt;CustomLog /var/log/apache2/sites-$1.log common &lt;br&gt; &lt;/p&gt;

&lt;p&gt;" &amp;gt; /etc/apache2/vhosts.d/$1.conf || { echo Could not add vhost to apache config!; exit 1; }&lt;/p&gt;

&lt;p&gt;echo Restarting apache&lt;br&gt;/etc/init.d/apache2 restart || { echo Could not restart apache!; exit 1; }&lt;/p&gt;

&lt;p&gt;echo All done!&lt;br&gt;exit 0&lt;br&gt;fi&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Blokkie</dc:creator><pubDate>Wed, 29 Jul 2009 09:02:40 -0000</pubDate></item><item><title>Re: Making HTML Purifier Work With CodeIgniter</title><link>http://ortz.org/2008/12/30/making-html-purifier-work-with-codeigniter/#comment-39722487</link><description>&lt;p&gt;Works like a charm. Thanks!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">John Dunlap</dc:creator><pubDate>Thu, 26 Mar 2009 20:22:54 -0000</pubDate></item><item><title>Re: Making HTML Purifier Work With CodeIgniter</title><link>http://ortz.org/2008/12/30/making-html-purifier-work-with-codeigniter/#comment-39722486</link><description>&lt;p&gt;thanks!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">d3ptzz</dc:creator><pubDate>Thu, 12 Mar 2009 11:07:30 -0000</pubDate></item><item><title>Re: New Host</title><link>http://blog.ortz.org/2009/01/05/new-host/#comment-39722492</link><description>&lt;p&gt;Well, with my crappy ISP, it's hard to tell. So I guess I'll never notice. :P&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ortzinator</dc:creator><pubDate>Mon, 12 Jan 2009 15:44:36 -0000</pubDate></item><item><title>Re: New Host</title><link>http://blog.ortz.org/2009/01/05/new-host/#comment-39722491</link><description>&lt;p&gt;Having used dreamhost for a couple months now, I can tell you that saying "no more downtime!" is going to haunt your dreams... thoroughly.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Megiddo</dc:creator><pubDate>Mon, 12 Jan 2009 14:59:11 -0000</pubDate></item><item><title>Re: Apache Vhost Creation Script (Gentoo)</title><link>http://ortz.org/2008/11/13/apache-vhost-creation-script-gentoo/#comment-39722474</link><description>&lt;p&gt;More like Wordpress fail.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ortzinator</dc:creator><pubDate>Mon, 12 Jan 2009 12:58:06 -0000</pubDate></item><item><title>Re: Apache Vhost Creation Script (Gentoo)</title><link>http://ortz.org/2008/11/13/apache-vhost-creation-script-gentoo/#comment-39722473</link><description>&lt;p&gt;copy and paste FAIL!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Wang</dc:creator><pubDate>Mon, 12 Jan 2009 12:56:09 -0000</pubDate></item><item><title>Re: Apache Vhost Creation Script (Gentoo)</title><link>http://ortz.org/2008/11/13/apache-vhost-creation-script-gentoo/#comment-39722472</link><description>&lt;p&gt;Oh, I didn't notice Wordpress encoded them. Thanks Driusha! I'll try to fix that.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ortzinator</dc:creator><pubDate>Tue, 02 Dec 2008 16:21:04 -0000</pubDate></item><item><title>Re: Apache Vhost Creation Script (Gentoo)</title><link>http://ortz.org/2008/11/13/apache-vhost-creation-script-gentoo/#comment-39722471</link><description>&lt;p&gt;I mean synbols "gross then" and "less then" :)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Driusha</dc:creator><pubDate>Tue, 02 Dec 2008 14:48:17 -0000</pubDate></item><item><title>Re: Apache Vhost Creation Script (Gentoo)</title><link>http://ortz.org/2008/11/13/apache-vhost-creation-script-gentoo/#comment-39722470</link><description>&lt;p&gt;"&amp;lt;" and "&amp;gt;" should replace whith "".&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Driusha</dc:creator><pubDate>Tue, 02 Dec 2008 14:46:44 -0000</pubDate></item><item><title>Re: Web 2.0</title><link>http://blog.ortz.org/2008/11/30/web-20/#comment-39722483</link><description>&lt;p&gt;I capped it from some other site. I just thought it was funny.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ortzinator</dc:creator><pubDate>Sun, 30 Nov 2008 14:19:04 -0000</pubDate></item><item><title>Re: Web 2.0</title><link>http://blog.ortz.org/2008/11/30/web-20/#comment-39722482</link><description>&lt;p&gt;What's this?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Megiddo</dc:creator><pubDate>Sun, 30 Nov 2008 07:38:22 -0000</pubDate></item><item><title>Re: Avril Lavigne</title><link>http://ortz.org/2007/03/09/avril-lavigne/#comment-39722398</link><description>&lt;p&gt;Maybe instead of commenting on blogs you should use some grammar lessons.&lt;/p&gt;

&lt;p&gt;-just a word to the wise&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">luke_i_am_your_father07</dc:creator><pubDate>Wed, 19 Nov 2008 20:28:40 -0000</pubDate></item><item><title>Re: OrtzIRC Update</title><link>http://blog.ortz.org/2008/09/28/ortzirc-update-2/#comment-39722468</link><description>&lt;p&gt;You did show me those but I forgot. Thanks.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ortzinator</dc:creator><pubDate>Thu, 02 Oct 2008 14:47:09 -0000</pubDate></item><item><title>Re: OrtzIRC Update</title><link>http://blog.ortz.org/2008/09/28/ortzirc-update-2/#comment-39722467</link><description>&lt;p&gt;Also, I thought I should add this. You should try to make your scripting/plug-in system powerful enough that you can implement a lot of the out-of-the-box features in scripts. This way power users can not only add new functionality, but they can tweak bits and pieces of existing functionality to meet their needs and wants.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Max Schmeling</dc:creator><pubDate>Thu, 02 Oct 2008 12:02:37 -0000</pubDate></item><item><title>Re: OrtzIRC Update</title><link>http://blog.ortz.org/2008/09/28/ortzirc-update-2/#comment-39722466</link><description>&lt;p&gt;A couple more years and you'll be knockin' out code faster than me.&lt;/p&gt;

&lt;p&gt;I don't remember if I've pointed this out to you before or not, but divil has some good articles on developing a plug-in/scripting system for your application. They're old (written for earlier version of the framework) and introductory, but they're a good place to start. Here's the link: &lt;a href="http://divil.co.uk/net/articles/" rel="nofollow"&gt;http://divil.co.uk/net/article...&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I think having both a plug-in and scripting system is a good idea as long as you make the scripting quick and painless to use. They can both work off the same base system, but the scripting one will just compile the code at run-time rather than loading an assembly.&lt;/p&gt;

&lt;p&gt;Also, don't forgot to allow for plug-ins that want to modify the UI, and not just interact with the server/channel objects.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Max Schmeling</dc:creator><pubDate>Thu, 02 Oct 2008 10:59:32 -0000</pubDate></item><item><title>Re: Fancy Mice</title><link>http://ortz.org/2008/09/25/fancy-mice/#comment-39722464</link><description>&lt;p&gt;I've been thinking about getting a Logitech G5. It's wired and doesn't have a flared bottom.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ortzinator</dc:creator><pubDate>Sat, 27 Sep 2008 23:09:58 -0000</pubDate></item><item><title>Re: Fancy Mice</title><link>http://ortz.org/2008/09/25/fancy-mice/#comment-39722463</link><description>&lt;p&gt;Personally I always just buy mice when they're at a good price. I used an optical mouse I got for $6 until it was barely functioning, then I bought the mouse &lt;a href="http://woot.com" rel="nofollow"&gt;woot.com&lt;/a&gt; had a couple months ago. It's a gaming mouse, so it's pretty nifty.&lt;/p&gt;

&lt;p&gt;As far as wireless, I've never used 'em. I think it's a pain in the butt to have wireless because you're always replacing the battery. Just stick with good ol' wired.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Megiddo</dc:creator><pubDate>Thu, 25 Sep 2008 21:24:34 -0000</pubDate></item><item><title>Re: Never Forget</title><link>http://ortz.org/2008/09/11/never-forget/#comment-39722462</link><description>&lt;p&gt;Hi, I found your blog on this new directory of WordPress Blogs at &lt;a href="http://blackhatbootcamp.com/listofwordpressblogs" rel="nofollow"&gt;blackhatbootcamp.com/listofwor...&lt;/a&gt;.  I dont know how your blog came up, must have been a typo, i duno.  Anyways, I just clicked it and here I am.  Your blog looks good.  Have a nice day.  James.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">James</dc:creator><pubDate>Fri, 19 Sep 2008 01:32:58 -0000</pubDate></item><item><title>Re: Never Forget</title><link>http://ortz.org/2008/09/11/never-forget/#comment-39722461</link><description>&lt;p&gt;We even had a thing about 9/11 here in Korea!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Megiddo</dc:creator><pubDate>Thu, 11 Sep 2008 20:10:27 -0000</pubDate></item></channel></rss>
