<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>vi &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://wordpress.com/tag/vi/</link>
	<description>Feed of posts on WordPress.com tagged "vi"</description>
	<pubDate>Sat, 19 Jul 2008 11:49:21 +0000</pubDate>

	<generator>http://wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[C++ growing pains]]></title>
<link>http://scaryreasoner.wordpress.com/?p=90</link>
<pubDate>Thu, 17 Jul 2008 02:08:14 +0000</pubDate>
<dc:creator>scaryreasoner</dc:creator>
<guid>http://scaryreasoner.wordpress.com/?p=90</guid>
<description><![CDATA[Still mucking about with C++ at work.  Here&#8217;s some of the stuff that bothers me lately.
Header]]></description>
<content:encoded><![CDATA[<p>Still mucking about with C++ at work.  Here's some of the stuff that bothers me lately.</p>
<p>Header file hell.  Much like DLL hell on windows, or RPM hell (before yum), header file hell is, I suspect, quite common in C++, and is one of the main reasons it's not my favorite language.</p>
<p>Typically, with C++, as you try to solve whatever problem you're trying to solve (means: get the computer to do some useful work) you are kind of forced to do a bunch of "extra" work, figuring out how to frame the problem in terms of objects and classes, not really that big a deal.  But, C++ being, (or trying to be) a strongly typed language, encourages the use of custom enumerated types (over #defines, say),  That means, if you want classes to communicate with each other without converting from, say, ints to these enums, both classes have to include the header file that defines these enumerated types.  Which means there's a good chance the typedef for the enumeration cannot reside in the header definition file for <em>either</em> class, at least not without putting some thought into it, and moving things around a bit.  Why?  Because, lets say <em>both</em> (of a mere two) classes define some custom enumeration types, and each class needs to communicate with the other in some way using those types.  In that case, if each class includes the header file of the other, and the header file contains guard #ifdefs to prevent being included twice.  Well, if there is a circular dependency, things get a bit sticky and non-obvious.  You've got to sort it out in one of a number of ways.  The easiest way is probably to take these types and separate them out into their own headers.  Fine.  But look at the time it takes to sort all this out.  In C, the params would have been ints, everybody automatically knows what an int is, and #defines would do the job pretty effortlessly, albeit with less compiler meddling to make sure you're doin' it right.</p>
<p>So, anyway, when I left work today, I was in that particular corner of header file hell, from which I will have to extricate myself tomorrow.</p>
<p>There are other corners of header file hell.  Suppose you want to try to reuse some C++ code. If you are very lucky, the code will have been designed to be reused, and designed to have been reused in just the manner you're wanting to reuse it.  More likely, the code isn't quite so well designed.  Instead, it is within a class which is designed such that it fits in well with whatever application it's embedded in.  This embedding entails references to all sorts of other classes in the application, types, etc.  As you try to extricate the code you're interested in for reuse, you find yourself dragging along more and more header files and classes in an ever expanding network, until, in an epiphany, you realize that this approach will lead you to suck in the entire application eventually.  At that point, you start cutting and pasting bits, and reworking the code to fit into your problem space.</p>
<p>Well, that's the bigger of the nuisances I've been facing.  There are some smalelr ones as well.<br />
whoDecidedThatIdentifiersLikeThisAreEasyToRead?  WasItSomeGermanGuy?  iHearGermansTendToBuildCompoundWordsInThisWay. ByWhichIMeanCapitializingWordsButOtherwiseJustCrammingThemTogether.  VeryReadableDon'tYouThink?  </p>
<p>Why do C++ people like identifiers like that?  Are they retarded? Brainwashed?  I mean, English sentences, in general, consist mostly of uncapitalized words separated by spaces.  That is the most readable way of writing text, and that's what you will find in <em>every</em> instance of fiction, newspaper journalism, magazines, etc., (except possibly some very esoteric and pathological exceptions which are deviating only to make some weird point. )  The closest approximation to this for C or C++ identifiers is lowercase words separated by underscores (as spaces are not an option.)<br />
I_mean_like_this.  This_is_far_more_readable_than_the_insane_cramming_method.</p>
<p>So, why, oh why, are C++ programmers so fond of this crazy way of naming variables and functions?  I have no idea.</p>
<p>Another nit.  I have become used to the linux kernel way of formatting code in the last 6 or 8 years or so.  This way of formatting code involves indenting code with tabs, not spaces.  And tabs indicate and indent of 8 spaces, not 4, not 3, not 2.  When I started on this project, I asked around, "hey, are there any coding conventions, style guidlines, etc., that I should be following?  By default, I'm apt to write code formatted like what you'd see in the linux kernel, is that ok?"  "Sure, we're not religious about that," I was told.  Hmm.  Well, today, I get a call.  "Hey, I noticed you're using tabs."  "yeah.... is that ok?"  "well, we'd prefer not."   Oooookay.  Could've told me that earlier.  The problem with this is, my editor of choice is vi.  Vi, by default, is very tab friendly, provided you agree that a tab means an 8 space indent.  It has various commands that know that (e.g. "&#60;&#60;" will move a line over by one tabstop, "10&#62;&#62;" will move ten lines right by one tab stop, etc.  These things are habits that are hardwired into my fingers by now.</p>
<p>Anyway, I converted all my C++ files to use 3 spaces in place of every tab.  And, I found (via <a href="http://www.outflux.net/blog/archives/2007/03/09/detecting-space-vs-tab-indentation-type-in-vim/">codeblog</a> that I can add some stuff to the end of the file like this:</p>
<pre>
// Local Variables:
// c-basic-offset: 3
// indent-tabs-mode: nil
// End:
//
// vim: et sts=3 sw=3
</pre>
<p>The above teaches vim that, around these parts, there is no such thing as a tab, when you think "tab", put 3 spaces.  It even makes "&#60;&#60;" and "&#62;&#62;" work as well.  So I'm glad to have found that.  I don't have to retrain my fingers.  (I couldn't retrain my fingers anyway, as there's plenty of code I still have to work on that adheres to the "no spaces, only tabs" doctrine, so I'm doubly happy that I found a solution that automatically (once implemented) limits its application to only those files which need it, and leaves default behavior alone.)</p>
<p>I had another idea today, while thinking about the C++ identifiers and using capital letters vs. lowercase, and underscores (or not.)  It occurred to me that both the underscores and the capital letters require one to use the shift key, which is, although easily learned, an inefficient and overly strenuous finger move, given how frequently it must be executed.  I started thinking about those keyboards with the split space bar they had for awhile, the ones where half the space bar was made into a backspace key.  Evidently that didn't go over too well, as I don't recall having seen those around lately, but they were around for about a year... maybe that was 2 years ago?  I can't remember.  Anyway, it occurs to me that if you could get one of those keyboards, and, for whichever thumb you don't normally use for space (I tend to use my right thumb exclusively for space, so for me, the left half of the space bar is unused), dedicate that to the underscore.  This way, C style identifiers could be typed in very nearly the normal fashion, just use the "wrong" thumb to hit the space bar...  Brilliant idea, no?</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Chapter 8: vi - A Unix text editor]]></title>
<link>http://myfinalheaven.wordpress.com/?p=37</link>
<pubDate>Tue, 15 Jul 2008 20:54:30 +0000</pubDate>
<dc:creator>myfinalheaven</dc:creator>
<guid>http://myfinalheaven.wordpress.com/?p=37</guid>
<description><![CDATA[Understanding  vi
 
vi (short for visual editor)  is a UNIX  text editor – a full screen program ]]></description>
<content:encoded><![CDATA[<p class="MsoNormal"><strong><span style="font-size:x-small;font-family:Courier New;"><span style="font-weight:bold;font-size:10pt;font-family:'Courier New';">Understanding  vi</span></span></strong></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><em><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-style:italic;font-family:'Courier New';">vi</span></span></em><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> (short for visual editor)  is a UNIX  text editor – a full screen program used to edit text files,  including:</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal" style="margin-left:0.5in;text-indent:-0.25in;"><span style="font-size:x-small;font-family:Arial;"><span style="font-size:10pt;font-family:Arial;"><span>-<span style="font-size:xx-small;font-family:Times New Roman;"><span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span></span></span><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">HTML  documents</span></span></p>
<p class="MsoNormal" style="margin-left:0.5in;text-indent:-0.25in;"><span style="font-size:x-small;font-family:Arial;"><span style="font-size:10pt;font-family:Arial;"><span>-<span style="font-size:xx-small;font-family:Times New Roman;"><span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span></span></span><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">Shell  scripts</span></span></p>
<p class="MsoNormal" style="margin-left:0.5in;text-indent:-0.25in;"><span style="font-size:x-small;font-family:Arial;"><span style="font-size:10pt;font-family:Arial;"><span>-<span style="font-size:xx-small;font-family:Times New Roman;"><span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span></span></span><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">Configuration  files</span></span></p>
<p class="MsoNormal" style="margin-left:0.5in;text-indent:-0.25in;"><span style="font-size:x-small;font-family:Arial;"><span style="font-size:10pt;font-family:Arial;"><span>-<span style="font-size:xx-small;font-family:Times New Roman;"><span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:'Times New Roman';"> </span></span></span></span></span><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">Source code  (C,C++,etc)</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">It evolved from the  line-based editing programs <em><span style="font-style:italic;">ed and ex, </span></em>and shares many of the same editing  commands.</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><em><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-style:italic;font-family:'Courier New';">vi</span></span></em><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> is notoriously unintuitive  and difficult to learn, but conversely, once learnt, it is one of the most  powerful, and feature-rich editors in the world (on any  platform)</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">Owing the limitations of  primitive early keyboards, and unlike most other text editors, when using vi,  you will always find yourself in one of two modes:</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<ol style="margin-top:0;" type="1">
<li class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">command mode,  where each key typed represents an editing command</span></span></li>
<li class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">Insert mode,  where each key typed (except ESC) represents text that you wish to insert into  the document.</span></span></li>
</ol>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><strong><span style="font-size:x-small;font-family:Courier New;"><span style="font-weight:bold;font-size:10pt;font-family:'Courier New';">Manipulating  files</span></span></strong></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">Like most text editors and  word processors, vi can be started with a document to edit, or without – as an  “empty canvass”, as follows:</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">To use vi to edit a  file:</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">vi  filename(s)</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">For  example:</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">vi  script1</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">vi  *.txt</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">Once vi has been started,  you will find yourself in command mode.</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">To perform some simple  editing:</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">Use (for example) a to  “append” text after the current cursor position (and enter Insert  Mode)</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">:w                write  (save) the file (only if a name has been specified)</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">:w file           write to  the specified file name (save as)</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">:q                quit (only  if no changes have been made)</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">:wq               save and  then quit</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">:x or zz          save the  file(if changes have been made), then quit</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">:q!               abandon  any changes and quit</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">:w!               write to a  read only file (that you own)</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">:e file           open the  specified file (if no changes have been made)</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">:e! file          open the  specified file (abandon any changes)</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">:e# or ^6         open the  last file edited</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">:n and :n!        open the  next file specified on the command line</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">:rew              rewind to  the last file specified on the command line</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">:f or ^g          display  current file details</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><strong><span style="font-size:x-small;font-family:Courier New;"><span style="font-weight:bold;font-size:10pt;font-family:'Courier New';">Moving  around</span></span></strong></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">PC keyboard special keys  (arrow keys, Page Up, End, etc) sometimes work in  vi</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">Any command listed below  with a * can be prefixed with a number n to move n  intervals</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">Moving to the current  line</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> Space or l               *move ahead one character</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> Backspace or  h          *move back one character</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> $                        move to the last character on the line</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> ^ or  0                  move to the first character on the  line</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> fx                       *move to (find) the next instance of character  x</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> ;                        *move to the next instance of character x</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">Moving between  lines</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> Enter or j or +          *move to the next line</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> K or  -                  *move to the previous line</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> ^ f                      *move forward one page (page down) </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> ^ b                      *move back one page (page up)</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> ^ d                      *move down half page </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> ^ u                      *move up half page</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> G                        Go to last line in file</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> 1G                       Go to first line in file </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">Other move  commands</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> /pattern                move to the next occurrence of  pattern</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> n(N)                     *move to the next (previous) occurrence</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> w(b)                     *move forward (back) one word </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> %                        find the matching bracket: ( ) [ ] and { }</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> ]]  ([[)                 *move to the next (previous) C  function</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> mx                       mark a line with label x (bookmark)</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><strong><span style="font-size:x-small;font-family:Courier New;"><span style="font-weight:bold;font-size:10pt;font-family:'Courier New';">Basic  Editing</span></span></strong></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">The following commands take  you to Insert mode, where text is entered. Press Esc to return to Command  mode.</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> a(i)               append (insert) text after (before) the current  cursor</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> A(I)               append text to the end (beginning) of the line </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> o(O)               start (open) a new line after (before) the current  line</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> s                  *substitute the current character with text</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> cw                 *change the remainder of the word to new text</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">The following commands are  also used for basic editing, but do not take you to Insert  mode:</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> x(X)               *delete (cut) the char under (before) the cursor</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> dd                 *delete (cut) the current line</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> p                 *put  (paste) the recently deleted text </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> yy                 *Yank (copy) the current line</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> rx                 *replace the current character x</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">The following commands  special commands are very useful:</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> u                 undo  the last command</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> U                  restore the current line to how it was when you arrived on  it.</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> . (dot)            repeat the last command</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><strong><span style="font-size:x-small;font-family:Courier New;"><span style="font-weight:bold;font-size:10pt;font-family:'Courier New';">Configuring  vi</span></span></strong></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">It is possible to specify  options that modify the general behavior of vi.</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">Use :set to list currently  set options (or :set all to list every option)</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">“On/Off” options (for  example, ai) can be specified as follows:</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal" style="text-indent:0.5in;"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">:set  ai                 turn option on</span></span></p>
<p class="MsoNormal" style="text-indent:0.5in;"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">;set no  ai              turn option off</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">“Value” options (for  example, ts) can ba specified as follows:</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> :set ts  =4</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">Useful options  include</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">ai (auto indent)         on/off      cause new lines to inherit the indentation of the previous  line</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">ic (ignorecase)          on/off      searches will be case-insensitive</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">nu (numbers)             on/off      display line numbers</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">sw (swithwidth)          value       the number of spaces the shift with &#62;&#62; and  &#60;&#60;</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">ts (tabstop)             value       The number of spaces to use when displaying TAB  characters</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';"> </span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">If you would prefer these  options to be in effect every time you start vi, put them into a file in your  home directory called .exrc</span></span></p>
<p class="MsoNormal"><span style="font-size:x-small;font-family:Courier New;"><span style="font-size:10pt;font-family:'Courier New';">Ensure every line starts  with set…</span></span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Air Jordan Fusion 6]]></title>
<link>http://freshologynews.wordpress.com/?p=493</link>
<pubDate>Tue, 15 Jul 2008 19:50:09 +0000</pubDate>
<dc:creator>undefeatedv</dc:creator>
<guid>http://freshologynews.wordpress.com/?p=493</guid>
<description><![CDATA[Jordan Brand. STOP!!!!!!!!!!!!!!!!!!!

]]></description>
<content:encoded><![CDATA[<p>Jordan Brand. STOP!!!!!!!!!!!!!!!!!!!</p>
<p><img class="aligncenter size-full wp-image-494" src="http://freshologynews.wordpress.com/files/2008/07/airjordanvifusion.jpg" alt="" width="450" height="360" /></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Infared Fusions....Snore....]]></title>
<link>http://purplesector.wordpress.com/?p=234</link>
<pubDate>Tue, 15 Jul 2008 11:04:01 +0000</pubDate>
<dc:creator>purplesector</dc:creator>
<guid>http://purplesector.wordpress.com/?p=234</guid>
<description><![CDATA[So, this Jordan/AF fusion thing is getting out of hand. The 3&#8217;s they just put out are fresh in]]></description>
<content:encoded><![CDATA[<p>So, this Jordan/AF fusion thing is getting out of hand. The 3's they just put out are fresh in white, but these are not. This is the first time I can honestly say I hate something with the infared color on it. Peep these, compliments of HB yet again:</p>
<p><img class="aligncenter" src="http://hypebeast.com/image/2008/07/air-jordan-fusion-6-white-infrared.jpg" alt="" width="600" height="450" /></p>
<p>Stop sullying the good Jordan name further. Just end it already.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[«Vi canto la mia America»]]></title>
<link>http://softaoke.wordpress.com/?p=13</link>
<pubDate>Mon, 14 Jul 2008 15:42:10 +0000</pubDate>
<dc:creator>softaoke</dc:creator>
<guid>http://softaoke.wordpress.com/?p=13</guid>
<description><![CDATA[Arriva per la prima volta per un concerto a Milano una vera e propria leggenda della scena rock, Tom]]></description>
<content:encoded><![CDATA[<p>Arriva per la prima volta per un concerto a Milano una vera e propria leggenda della scena rock, Tom Waits, forse il più grande cantautore vivente insieme a Neil Young e Bob Dylan. C’è grande attesa per i tre concerti che il grande cantautore americano terrà al teatro degli Arcimboldi da giovedì a sabato.Attesi perché rari, ecco la principale caratteristica che rende i live di Tom Waits un vero e proprio evento nell'evento. Non è un caso che i concerti previsti in Europa per quest'anno siano solo quindici e quindi, il fatto che tre di questi siano nel Belpaese denota un amore particolare che l'artista ha per il nostro paese. Non si può parlare di Tom Waits in Italia e non citare il suo grande amico Roberto Benigni che con lui ha lavorato nel capolavoro Down By Law e ne La Tigre e La Neve di Benigni stesso (qui Waits canta un suo pezzo, You can never hold back spring tratto dal suo Orphans: Brawlers, Bawlers &#38; Bastards). Waits non suona in Italia dal '99 e arriva presentando il suo Glitter And Doom Tour accompagnato sul palco dal suo alleato musicale di vecchia data Larry Taylor (basso), oltre ad Omar Torrez (chitarra), Patrick Warren (tastiere), Casey Waits (batteria e percussioni) e Vincent Henry (sax, armonica e chitarra).Waits è un autore complesso e difficile. Un poeta, un bluesman dalla voce profonda, un uomo che ama raccontare la storia dell'America nascosta e scomoda. L'America sconosciuta, fatta di fatica, di sudore e degrado viene tramandata attraverso storie raccontate con canzoni raccolte in dischi indimenticabili come Closing time, Blu Valentine, Foreign Affairs, Rain Dogs o Mule Variation. <br><br>Fonte: http://www.ilgiornale.it/a.pic1?ID=276002</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[«Vi canto la mia America»]]></title>
<link>http://botrding.wordpress.com/?p=11</link>
<pubDate>Mon, 14 Jul 2008 14:29:28 +0000</pubDate>
<dc:creator>botrding</dc:creator>
<guid>http://botrding.wordpress.com/?p=11</guid>
<description><![CDATA[Arriva per la prima volta per un concerto a Milano una vera e propria leggenda della scena rock, Tom]]></description>
<content:encoded><![CDATA[<p>Arriva per la prima volta per un concerto a Milano una vera e propria leggenda della scena rock, Tom Waits, forse il più grande cantautore vivente insieme a Neil Young e Bob Dylan. C’è grande attesa per i tre concerti che il grande cantautore americano terrà al teatro degli Arcimboldi da giovedì a sabato.Attesi perché rari, ecco la principale caratteristica che rende i live di Tom Waits un vero e proprio evento nell'evento. Non è un caso che i concerti previsti in Europa per quest'anno siano solo quindici e quindi, il fatto che tre di questi siano nel Belpaese denota un amore particolare che l'artista ha per il nostro paese. Non si può parlare di Tom Waits in Italia e non citare il suo grande amico Roberto Benigni che con lui ha lavorato nel capolavoro Down By Law e ne La Tigre e La Neve di Benigni stesso (qui Waits canta un suo pezzo, You can never hold back spring tratto dal suo Orphans: Brawlers, Bawlers &#38; Bastards). Waits non suona in Italia dal '99 e arriva presentando il suo Glitter And Doom Tour accompagnato sul palco dal suo alleato musicale di vecchia data Larry Taylor (basso), oltre ad Omar Torrez (chitarra), Patrick Warren (tastiere), Casey Waits (batteria e percussioni) e Vincent Henry (sax, armonica e chitarra).Waits è un autore complesso e difficile. Un poeta, un bluesman dalla voce profonda, un uomo che ama raccontare la storia dell'America nascosta e scomoda. L'America sconosciuta, fatta di fatica, di sudore e degrado viene tramandata attraverso storie raccontate con canzoni raccolte in dischi indimenticabili come Closing time, Blu Valentine, Foreign Affairs, Rain Dogs o Mule Variation. <br><br>Fonte: http://www.ilgiornale.it/a.pic1?ID=276002</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Andrés Calamaro - Vi La Raya ( Vida Cruel )]]></title>
<link>http://moebius3music.wordpress.com/?p=471</link>
<pubDate>Mon, 14 Jul 2008 00:41:19 +0000</pubDate>
<dc:creator>moebius3music</dc:creator>
<guid>http://moebius3music.wordpress.com/?p=471</guid>
<description><![CDATA[BIOGRAFÍA - DESCARGAS - DISCOGRAFÍA - ENLACES - IMÁGENES- LETRAS - TIENDA - VIDEOCLIPS
Vi la Raya]]></description>
<content:encoded><![CDATA[<p><a href="http://moebius3music.wordpress.com/2008/06/12/andres-calamaro/">BIOGRAFÍA</a> - <a href="http://moebius3music.wordpress.com/2008/06/15/andres-calamaro-descargas/">DESCARGAS</a> - <a href="http://moebius3music.wordpress.com/2008/06/15/andres-calamaro-discografia/">DISCOGRAFÍA</a> - <a href="http://moebius3music.wordpress.com/2008/06/15/andres-calamaro-enlaces/">ENLACES</a> - <a href="http://moebius3music.wordpress.com/2008/06/15/andres-calamaro-imagenes/">IMÁGENES</a>- <a href="http://moebius3music.wordpress.com/2008/06/15/andres-calamaro-letras/">LETRAS</a> - <a href="http://moebius3music.wordpress.com/2008/06/15/andres-calamaro-tienda/">TIENDA</a> - <a href="http://moebius3music.wordpress.com/2008/06/15/andres-calamaro-videoclips/">VIDEOCLIPS</a></p>
<p><strong>Vi la Raya</strong></p>
<p>Vi la raya, vi que va a haber jaleo<br />
no te vayas vos que tenes el fuego<br />
el leño (el leño verdero)<br />
y no puedo pedirte fiado otra vez<br />
todo el mundo tiene que pedir<br />
yo me adelante en este pais<br />
pero ahora quiero participar<br />
desde que vi la raya<br />
vi la raya<br />
vi que va a haber jaleo<br />
todo el mundo tiene que pedir<br />
yo me adelante en este pais<br />
pero ahora quiero participar<br />
desde que vi la raya</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Washington réaffirme son soutien à une autonomie au Sahara sous souveraineté marocaine]]></title>
<link>http://paramarruecos.wordpress.com/?p=76</link>
<pubDate>Sun, 13 Jul 2008 12:02:42 +0000</pubDate>
<dc:creator>paramarruecos</dc:creator>
<guid>http://paramarruecos.wordpress.com/?p=76</guid>
<description><![CDATA[ le Roi Mohammed VI vient de recevoir une lettre du Président des Etats-Unis d&#8217;Amérique,  M]]></description>
<content:encoded><![CDATA[<p style="text-align:justify;"><img class="alignleft" src="http://www.cc.nih.gov/about/news/newsletter/2005/dec05/George%20Bush.jpg" alt="" width="350" height="393" /> le Roi Mohammed VI vient de recevoir une lettre du Président des Etats-Unis d'Amérique,  M. George Walker Bush, au sujet des derniers développements de la Question nationale, apprend-on vendredi de source gouvernementale.</p>
<p style="text-align:justify;">Dans cette lettre, le Président Bush confirme la position nationale claire des Etats-Unis d'Amérique considérant qu'une autonomie substantielle sous souveraineté marocaine est la seule solution possible au différend relatif au Sahara et qu'un Etat indépendant au Sahara n'est pas une option réaliste.</p>
<div style="float:left;text-align:justify;margin:2px;"><!-- google_ad_client = "pub-9398037156642406"; google_ad_width = 300;  google_ad_height = 250;  google_ad_format = "300x250_as";  google_ad_channel = "";  google_ad_type = "text";  google_color_border = "FFFFFF";  google_color_bg = "FFFFFF";  google_color_link = "0066CC";  google_color_url = "0066CC";  google_color_text = "0066CC"; // --> <!-- end of google ads --></div>
<p style="text-align:justify;">Tout en remerciant le Roi pour son leadership et sa détermination pour mettre fin à ce différend, le président Bush a souligné que la proposition d'autonomie soumise par le Royaume était crédible et sérieuse.</p>
<p style="text-align:justify;">Par ailleurs, le Président Bush a exprimé l'espoir des Etats-Unis de voir les parties au conflit s'engager de manière plus approfondie dans le processus de négociations en cours et ce, suite à l'appel du Conseil de Sécurité des Nations Unies pour des négociations plus substantielles, dans un esprit de réalisme et de compromis.</p>
<p style="text-align:justify;">Source : AlJazeera<br />
<a href="http://www.aljazeera.net/NR/exeres/AB07C76C-38FB-4F1C-9A07-EA8CF4FEE31B.htm">http://www.aljazeera.net/NR/exeres/AB07C76C-38FB-4F1C-9A07-EA8CF4FEE31B.htm</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Nothing was ever meant to last]]></title>
<link>http://11avc11.wordpress.com/?p=144</link>
<pubDate>Sun, 13 Jul 2008 00:16:17 +0000</pubDate>
<dc:creator>AVC</dc:creator>
<guid>http://11avc11.wordpress.com/?p=144</guid>
<description><![CDATA[Figuratively speaking, we are coagulations of the once evenly dispersed energy, realized from the po]]></description>
<content:encoded><![CDATA[<p>Figuratively speaking, we are coagulations of the once evenly dispersed energy, realized from the potential inherent and concentrated in the centre of Nothing.</p>
<p>From an initial state of endless potential and total density, there then followed a process of division into smaller and smaller units, which process will continue until the entire potential has been fully realized and the energy is again evenly dispersed throughout a state of Nothingness.</p>
<p>Viewing a cross-section of that process, each coagulation sub-unit will have a "sub-potential" of developing according to a specific pattern unique to that particular unit and predestined under laws of nature that in many aspects are yet obscure to us. Like all other units each unit is a part of the sum total of their joint origin.</p>
<p>Now then, we all consist of a unique combination of positive and negative aspects, if I may call them so, unbalanced as long as we remain in manifestation. All these charged clusters of unbalanced positive and negative aspects will seek out other clusters, in that the positive attracts the negative. When parts that are identical opposites meet they annihilate each other and return to the state of Nothingness.</p>
<p>Hence, this attraction between opposites drives a process of combining clusters, destroying their previous form and creating new ones as a result. At the end of it all, at the end of time as we know it, all units will have been dissolved and united back into the origin.</p>
<p>In other words, evolution is driven by the power of Love. It is a process aimed at destroying all present structures for the sake of continuing the evolution of the potential back to the original condition of creation.</p>
<p>Love divides to Unify. Nothing was ever meant to last.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Vilning pågår]]></title>
<link>http://vildkatten.wordpress.com/?p=491</link>
<pubDate>Thu, 10 Jul 2008 20:23:09 +0000</pubDate>
<dc:creator>vildkatten</dc:creator>
<guid>http://vildkatten.wordpress.com/?p=491</guid>
<description><![CDATA[Upp imorse och iväg till Blåsippan, vi fick träffa samma läkare som vi såg på jouren när en b]]></description>
<content:encoded><![CDATA[<p>Upp imorse och iväg till Blåsippan, vi fick träffa samma läkare som vi såg på jouren när en blodkärl sprack i magen. Jag hade letat reda på mitt vaccinationsintyg och skrivit av det och hon blev överlycklig över det. Hon tyckte att vi hade skött om såren så fint att vi ska prova utan stelkrampsspruta eftersom det inte är så bra att ta under graviditet. Förhoppningsvis fortsätter det att läka fint och då behöver vi inte göra mer.</p>
<p>Innan vi gick spenderade jag en lång stund inne på toa med den blå hinken, usch vad jag kräks och det gör så ont för jag har inte mycket att kräkas av. På väg hem mådde jag så fruktansvärt dåligt och höll på att tuppa av och så hade jag så himla ont i magen. Nu säger kroppen ifrån, jag har hållit igång för mycket... Vi hoppade i säng igen och vilade och sov och myste ända tills det var tidig kväll. Jag är helt slutkörd och känner verkligen att jag måste dra ner på takten nu. Jag har ju så himla svårt att ta det lugnt men jag kan pressa mig själv men inte bebisen, så är det. Jag har tänkt och funderat lite och ska försöka se över vilka förändringar jag kan göra men att jag måste ta det lugnt är bara att inse.</p>
<p>Imorgon ska jag beställa en sjukresa till sjukhusbesöket till veckan, under veckoslutet ska jag duscha, sen är det stopp. Vi ska se om vi kan packa upp lite och göra lite inredningsgöra här hemma men det tar vi i lugn takt och det får ta den tid det tar, inga måsten. Så jag planerar en dusch och ett telefonsamtal, resten av helgen ska jag bara vila och ta det lugnt och försöka ställa om till den takten.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Sen frukost]]></title>
<link>http://vildkatten.wordpress.com/?p=487</link>
<pubDate>Tue, 08 Jul 2008 03:15:30 +0000</pubDate>
<dc:creator>vildkatten</dc:creator>
<guid>http://vildkatten.wordpress.com/?p=487</guid>
<description><![CDATA[Det var en mycket jobbig dag, som nu har gått över till att vara igår då, med massa slit och sam]]></description>
<content:encoded><![CDATA[<p>Det var en mycket jobbig dag, som nu har gått över till att vara igår då, med massa slit och samtal och skitjobbiga människor. Usch och fy. Frukosten blev så sen att det hade hunnit bli kväll men oj vilken frukost det blev! Roger diskade och städade i köket och jag lagade mat; stekta fläskkotletter med mycket salt och peppar, mycket välstekta precis som jag vill ha dem, och jag gjorde lite sky till mina och en klick vitlökssmör medans Roger tog en klick majonnäs och så varsin tomat. Helt jävla underbart!!! Såååå fantastiskt gott! Vi slukade det rakt av och så tog vi lite juice till för att bättra på järnupptaget eftersom sköterskornas blodsugande av mig har visat sig rejält på mitt blodvärde. Det är fortfarande ett mycket bra blodvärde men jag gillade det bättre innan så kött och juice kändes som en bra måltid och bebisen höll med och vill ha mer.</p>
<p>Efter maten var jag proppmätt och gick och lade mig att vila för att försöka undvika att jag skulle kräkas upp den järnrika måltid jag lyckats få i mig och det fungerade bra. Jag slumrade ett par timmar och Roger plockade lite till. Jag vill ha mer fläskkotlett! Sen har vi tittat lite på A bit of Fry and Laurie och druckit te och fikat. Jag har fixat min dator också, formaterat och installerat om ubuntu, det känns bra. Snart ska vi väl ta oss i säng, jag ska ju upp och ta sprutan snart.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Spontan släktträff mm]]></title>
<link>http://vildkatten.wordpress.com/?p=474</link>
<pubDate>Fri, 04 Jul 2008 15:17:34 +0000</pubDate>
<dc:creator>vildkatten</dc:creator>
<guid>http://vildkatten.wordpress.com/?p=474</guid>
<description><![CDATA[Vi hade en liten släktträff idag på stan, Linnéa, Gösta, Barbro, Jimmie, Roger, Ungen och jag. ]]></description>
<content:encoded><![CDATA[<p>Vi hade en liten släktträff idag på stan, Linnéa, Gösta, Barbro, Jimmie, Roger, Ungen och jag. Det var mycket trevligt och var ett glatt återseende och kramar och fin stämning. Linnéa valde titeln gammelfarmor och verkade så nöjd med det, hon är söt. :-) Vi har fått första gissningen på bebisen också, en röst är satt på att det är en flicka! Jag har haft vissa aningar men dem håller jag för mig själv ett tag till, det ska bli så spännande att se vad det är!</p>
<p>Det var verkligen jättekul att träffa alla, och jag konstaterade att jag aldrig skulle ha känt igen Jimmie om vi bara hade gått förbi varandra så det var bra att jag fick hans utseende uppdaterat. Han hade en vansinnigt snygg tröja, den hade jag kunnat ta över. :-) Thommy åkte förbi men han såg oss inte trots att vi var ett stort gäng som delvis vevade åt honom.</p>
<p>Klippt oss har vi gjort också, det blev bra och vi är nöjda. Och jag har tagit prover, de stack i bägge armar och självklart fick jag en klåpare först. *suck* Roger höll på att svimma men det gick bra, och ingen av oss kräktes. Jag köpte badtofflor efter att ha försökt få tag på vettiga sandaler i flera år nu och Roger köpte en innebandyklubba. Vi köpte en gurka och lite salladsingredienser på väg hem så nu ska vi fixa mat och sen planerar vi att grotta in oss resten av helgen.</p>
<p>Nu är vi i 14:e veckan, 13+0, 2:a trimestern gick vi in i idag också och bebisen är ca 10 cm lång från huvud till rumpa.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[[GowTo] Editar GRUB ]]></title>
<link>http://genlinux.wordpress.com/?p=164</link>
<pubDate>Thu, 03 Jul 2008 12:22:39 +0000</pubDate>
<dc:creator>Cross</dc:creator>
<guid>http://genlinux.wordpress.com/?p=164</guid>
<description><![CDATA[Este GowTo se trata de explicar la manera más simple de eliminar entradas múltiples de el menú de]]></description>
<content:encoded><![CDATA[<p>Este GowTo se trata de explicar la manera más simple de eliminar entradas múltiples de el menú de GRUB en el arranque.</p>
<p>Vale, si te has atrevido a seguir hasta aquí, significa que realmente quieres eliminar esa entrada que está de más en el menú. <strong>Advertencia Para la Salud de Linux:</strong> Editar el menú de GRUB podría ser peligroso si no se hace lo que se debe.</p>
<p>Una vez dicho esto, podemos proseguir.</p>
<p>La mayoría de vosotr@s sabreís que el menú de GRUB está en /boot/grub/menu.lst (Sino es así, poner <em>locate menu.lst</em>) una vez tengamos localizado nuestro menu.lst deberemos editarlo.</p>
<p>gedit /boot/grub/menu.lst (En este caso he elejido Gedit pero podeis usar el que querais).</p>
<p>Nos apareceran las opciones que <strong>NO</strong> debemos tocar si no sabemos lo que estamos haciendo.<br />
Tendremos que bajar (Scroll Down) hasta encontrarnos con una línea que diga</p>
<p><em>## ## End Default Options ##</em></p>
<p>Ahora deberíamos ir viendo líneas parecidas a esta:</p>
<p>title        Ubuntu x.xx.x, kernel 2.x.xx-xx-generic<br />
root        (hd0,0)<br />
kernel        /boot/vmlinuz-2.x.xx-xx-generic root=UUID=XXXXX<br />
initrd        /boot/initrd.img-2.x.xx-xx-generic<br />
quiet</p>
<p>Ok, hasta aquí bien, imaginemos que quiero eliminar esa entrada (arriba) y que no aparezca cuando arranco el ordenador. ¿Cómo? simple, comentaremos las líneas necesarias así;</p>
<p># title        Ubuntu xxxx, kernel 2.x.xx-xx-generic<br />
# root        (hd0,0)<br />
# kernel        /boot/vmlinuz-x.xx-xx-generic root=UUID=XXXXX<br />
# initrd        /boot/initrd.img-2.x.xx-xx-generic<br />
# quiet</p>
<p>Y si lo hemos hecho bien, al reiniciar no debería quedar rastro de el que hayamos comentado.<br />
Espero que os haya ayudado este pequeño GowTo. Cualquier duda/problema, comentarmelo.</p>
<p><a href="http://genlinux.wordpress.com/gowto/" target="_self"><img class="alignnone size-full wp-image-51" src="http://genlinux.wordpress.com/files/2007/12/gowtotitle-copy.jpg" alt="" width="500" height="210" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Asistente para Vi]]></title>
<link>http://vat69.wordpress.com/?p=466</link>
<pubDate>Wed, 02 Jul 2008 05:01:46 +0000</pubDate>
<dc:creator>hielasangre</dc:creator>
<guid>http://vat69.wordpress.com/?p=466</guid>
<description><![CDATA[Hey, todos necesitamos asistencia de vez en cuando, incluso aquellos avesados usuarios del vi (chist]]></description>
<content:encoded><![CDATA[<p>Hey, todos necesitamos asistencia de vez en cuando, incluso aquellos avesados usuarios del vi (chiste nerdo-geek)...</p>
<p style="text-align:center;"><a title="Asistente para VI (Click para ampliar)" href="http://img.photobucket.com/albums/v739/Hielasangre/software/vi_asist.gif" target="_blank"><img class="aligncenter" src="http://img.photobucket.com/albums/v739/Hielasangre/thumbs/vi_asist_th.gif" border="0" alt="asistente_th" /></a></p>
<p style="background:#cccccc;border-top:3px solid #555555;padding-left:3px;"><strong><span style="text-decoration:underline;">Fuente</span>:</strong> <a title="Linux Haxor" href="http://www.linuxhaxor.net/2008/06/24/vi-assistant/" target="_blank">Linux Haxor</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Teach Soviet Russia Through Klingon Empire]]></title>
<link>http://awaitingtenure.wordpress.com/?p=258</link>
<pubDate>Sat, 28 Jun 2008 02:23:32 +0000</pubDate>
<dc:creator>eyeingtenure</dc:creator>
<guid>http://awaitingtenure.wordpress.com/?p=258</guid>
<description><![CDATA[Allegories are the way to learn Soviet history &#8212; Animal Farm, anyone? &#8212; in no small part]]></description>
<content:encoded><![CDATA[<p>Allegories are the way to learn Soviet history --- Animal Farm, anyone? --- in no small part because it creates an relatable framework for a subject that students will find dull despite how interesting it really is. Now that the end of the Cold War is within the scope of the responsible history class, Orwell's novella has a marvelous counterpoint --- Star Trek: The Undiscovered Country.</p>
<p>Bear with me.</p>
<p>Star Trek's original series was always a thin allegory for the Cold War and American-Soviet relations. The diverse cast of the 1960s exploited fear of the commies by creating a warlike, Soviet-like archenemy in the Klingons while simultaneously catering to the "Let's be friends" mentality with adding that guy named Chekhov.</p>
<p>I grew up with the even-numbered Star Trek movies by way of library VHS, and my dad's favorite was the last movie that had the complete Scotty-Spock-Kirk-"Nuclear Wessel" crew. Until I saw it earlier today, I didn't appreciate how thin a Cold War allegory it really was.</p>
<p>At least three lines in the movie that directly flesh perfectly with some part of Cold War history. Who could forget the complete-with-context old Vulcan proverb: "<a href="http://en.wikipedia.org/wiki/1972_Nixon_visit_to_China#Media_and_Culture">Only Nixon could go to China</a>"; or "<a href="http://reagan2020.us/speeches/City_Upon_A_Hill.asp">last, best hope</a> for peace"; or "<a href="http://en.wikipedia.org/wiki/Adlai_Stevenson">don't wait for the translation</a>."</p>
<p>The movie doesn't just cover Cold War, either --- like any cheaply written movie with a dearth of original ideas, it lifts more than a few lines from the Bard. Klingon High Chancellor Gorbachev-wannabe gives the movie its title by making a toast to the undiscovered country: the future. Spock quips:</p>
<blockquote><p>Hamlet: Act III, Scene i.</p></blockquote>
<p>Later, Klingon villain Gen. Chang --- in the climatic scenes will speak almost <a href="http://youtube.com/watch?v=ND6U3Sta4Rg">entirely in Shakespeare</a> --- justifies Klingon expansionism. We need breathing room, Chang says. Kirk quips:</p>
<blockquote><p>Earth, Hitler: 1938.</p></blockquote>
<p style="text-align:center;"><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/ND6U3Sta4Rg'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/ND6U3Sta4Rg&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
<p>Despite those entertaining thematic digressions, in so many ways the last old school Trek movie bookends the close of Soviet history the way Animal Farm bookends the beginning. Because of the way it definitively puts a period at the end of this period, I'd say the last, best Trek movie has more than earned its spot as the last, best day of a world history course.</p>
<p>Best yet, this movie ends with a slow clap. Talk about closure on the last day of class.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Canal Sortim "Vijazz Penedès"]]></title>
<link>http://toies.wordpress.com/?p=1616</link>
<pubDate>Fri, 27 Jun 2008 05:00:55 +0000</pubDate>
<dc:creator>JC</dc:creator>
<guid>http://toies.wordpress.com/?p=1616</guid>
<description><![CDATA[Aquest any si ¡¡, i no em refereixo que el Barça guanyi la lliga, això és un miracle que deixo ]]></description>
<content:encoded><![CDATA[<p style="text-align:justify;"><img class="alignleft size-medium wp-image-1631" style="float:left;" src="http://toies.wordpress.com/files/2008/06/cid_a8f77ad5-c2d4-4218-a769-8ab7343444f8.png?w=275" alt="" width="275" height="136" />Aquest any si ¡¡, i no em refereixo que el Barça guanyi la lliga, això és un miracle que deixo al nostre benvolgut Conseller perquè li pregui a la Moreneta, aquest any si ¡¡.</p>
<p style="text-align:justify;">Em refereixo a la segona mostra que prepara l'Acadèmia Tastavins del Penedès <a href="http://www.vijazzpenedes.com/cat/inici.asp"><strong>"VIJAZZ Penedès"</strong></a>, el primer cap de setmana de Juliol, mostres i degustacions de vi i caves de la terra i concerts de jazz. L'any passat vaig plorar no poder escoltar a<!--more--> Benny Golson, per estar fora, però aquest ja ho tinc marcat en l'agenda <span style="color:#ff0000;">(i en vermell).</span> Maridatge entre vi i jazz, i una bona aposta, tastos de vins per a iniciats o principiants, visites guiades a caves, degustacions... i quan el paladar, després d'assaborir els diferents vins i caves, ho tinguem ple de contrastos, aromes i gustos, serà el moment de donar gust a un altre sentit, arriba l'hora de la música i això si que és un plaer.</p>
<p style="text-align:center;"><a href="http://toies.files.wordpress.com/2008/06/top08.jpg"><img class="alignnone size-full wp-image-1618 aligncenter" src="http://toies.wordpress.com/files/2008/06/top08.jpg" alt="" width="510" height="145" /></a></p>
<p style="text-align:justify;">Jazz en viu i amb quins concerts, per treure-us el barret amb els Srs de l'acadèmia, <a href="http://beta.asoundstrategy.com/kennygarrett/">Kenny Garrett</a>, <a href="http://www.yellowjackets.com/">The Yellow Jackets &#38; Mike Stern</a>, bé no?, i si afegim <a href="http://www.pericosambeat.com/">Perico Sambeat</a> o <a href="http://www.arturosandoval.com/">Arturo Sandoval</a>, esplèndid i per a acabar posem en el cartell a <a href="http://www.vervemusicgroup.com/artist/default.aspx?aid=2905">Roy Hargrove</a>, això és la glòria.</p>
<p style="text-align:justify;">Concerts a l'aire lliure en la plaça Jaume I, gratuïts, si si gratuïts (solament demanen un tiquet de degustació de la mostra de vins, per a accedir a la zona de cadires). Crec que seria un bon moment per a treure a passejar el autobús de Toies, i muntar una excursió a Vilafranca.</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/5xByrT9aXNk'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/5xByrT9aXNk&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
<h6>Roy Hargrove</h6>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/bpxN8kviuU0'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/bpxN8kviuU0&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
<h6>Kenny Garrett</h6>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/u2Mo6L3iGvM'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/u2Mo6L3iGvM&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
<h6>Arturo Sandoval</h6>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/mlXKP7cFdsQ'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/mlXKP7cFdsQ&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
<h6>Perico Sambeat</h6>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Frukost tur och retur]]></title>
<link>http://vildkatten.wordpress.com/?p=464</link>
<pubDate>Thu, 26 Jun 2008 21:43:14 +0000</pubDate>
<dc:creator>vildkatten</dc:creator>
<guid>http://vildkatten.wordpress.com/?p=464</guid>
<description><![CDATA[Vi åt kokt färskpotatis mosat med smör till frukost, jättegott. Nyss hade vi bestämt oss för a]]></description>
<content:encoded><![CDATA[<p>Vi åt kokt färskpotatis mosat med smör till frukost, jättegott. Nyss hade vi bestämt oss för att beställa pizza och titta på film men det tyckte bebisen visst inte alls var en bra idé. Den satte genast igång en utvidgningsprocess av livmodern och roade sig även med att slita i diverse ligament, vansinnigt ont gjorde det och jag höll på att svimma, alldeles blek blev jag sa Roger. Självklart gick det då inte länge förrän jag började kräkas. Jag kräktes upp allt jag ätit idag och kunde konstatera att potatisen låg kvar i magen orörd. Mycket våldsamt var det och halsen känns helt uppsliten och sönderfrätt.</p>
<p>Imorgon är vi i fjärde månaden och bebisen växer så det knakar. Imorgon har också missfallsrisken sjunkit dramatiskt. Också illamåendet ska ha sjunkit de senaste veckorna för att i stort sett vara borta. *hrmm* Jaja, fjärde månaden går vi in i i alla fall.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Andrés Calamaro - La Vi Comprandose Un Sosten ( Hotel Calamaro )]]></title>
<link>http://moebius3music.wordpress.com/?p=296</link>
<pubDate>Thu, 26 Jun 2008 04:10:17 +0000</pubDate>
<dc:creator>moebius3music</dc:creator>
<guid>http://moebius3music.wordpress.com/?p=296</guid>
<description><![CDATA[BIOGRAFÍA - DESCARGAS - DISCOGRAFÍA - ENLACES - IMÁGENES- LETRAS - TIENDA - VIDEOCLIPS
La ví com]]></description>
<content:encoded><![CDATA[<p><a href="http://moebius3music.wordpress.com/2008/06/12/andres-calamaro/">BIOGRAFÍA</a> - <a href="http://moebius3music.wordpress.com/2008/06/15/andres-calamaro-descargas/">DESCARGAS</a> - <a href="http://moebius3music.wordpress.com/2008/06/15/andres-calamaro-discografia/">DISCOGRAFÍA</a> - <a href="http://moebius3music.wordpress.com/2008/06/15/andres-calamaro-enlaces/">ENLACES</a> - <a href="http://moebius3music.wordpress.com/2008/06/15/andres-calamaro-imagenes/">IMÁGENES</a>- <a href="http://moebius3music.wordpress.com/2008/06/15/andres-calamaro-letras/">LETRAS</a> - <a href="http://moebius3music.wordpress.com/2008/06/15/andres-calamaro-tienda/">TIENDA</a> - <a href="http://moebius3music.wordpress.com/2008/06/15/andres-calamaro-videoclips/">VIDEOCLIPS</p>
<p></a><strong>La ví comprando se un sostén</strong></p>
<p>La ví comprando se un sostén De algún tamaño en especial Yo iba caminando Vidrieras mirando y la ví Yo ya no pensaba en mis cosas<br />
Aquel sentimiento me puso hirviendo la sangre Y sigo pensando en cuando la ví La ví comprandose un sostén Un sostén Volví meditando<br />
Apenas pensado a mi casa Yo ya no pensaba en mis cosas<br />
Aquel sentimiento me sigue latiendo la en sangre Y sigo pensando en cuando la ví La ví comprandose un sostén De algún tamaño en especial<br />
La vida es dura para mí Que ya ni duermo Y sigo pensando en cuando la ví La ví comprándose un sostén Un sostén Si esta noche sueño con vos<br />
No te burles de mí -no te burles Mi guitarra y mi bongó Siempre me acompañan. Si esta noche sueño con vos No te burles de mí -no te burles<a href="http://moebius3music.wordpress.com/2008/06/15/andres-calamaro-videoclips/"></p>
<p></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Nike Air Jordan 6 + 17 Countdown Pack VI + XVII CARMINE @ UNKNOWN Alkmaar]]></title>
<link>http://unknownonline.wordpress.com/?p=480</link>
<pubDate>Tue, 24 Jun 2008 15:08:30 +0000</pubDate>
<dc:creator>Team UNKNOWN</dc:creator>
<guid>http://unknownonline.wordpress.com/?p=480</guid>
<description><![CDATA[

We hebben nog enkele maten over van de exclusieve en gelimiteerde Nike Air Jordan 6+17 Countdown P]]></description>
<content:encoded><![CDATA[<p><a href="http://unknownonline.files.wordpress.com/2008/06/airjordanvicarmine.jpg"><img class="alignnone size-full wp-image-481" src="http://unknownonline.wordpress.com/files/2008/06/airjordanvicarmine.jpg" alt="" width="409" height="265" /></a></p>
<p><a href="http://unknownonline.files.wordpress.com/2008/06/airjordanxvii1.jpg"><img class="alignnone size-full wp-image-483" src="http://unknownonline.wordpress.com/files/2008/06/airjordanxvii1.jpg" alt="" width="424" height="238" /></a></p>
<p>We hebben nog enkele maten over van de exclusieve en gelimiteerde <strong>Nike Air Jordan 6+17 Countdown Pack</strong>! Deze pack bestaat dus uit de <strong>Nike Air Jordan 17</strong> en de <strong>Nike Air Jordan 6 Carmine</strong>. Nu te koop bij <strong>UNKNOWN (Alkmaar)</strong>, bestellen is ook mogelijk!</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Un post satanico]]></title>
<link>http://vrde.wordpress.com/?p=68</link>
<pubDate>Sun, 22 Jun 2008 18:11:35 +0000</pubDate>
<dc:creator>vrde</dc:creator>
<guid>http://vrde.wordpress.com/?p=68</guid>
<description><![CDATA[foto: Frenkieb
ah prima che vi preoccupiate (se la cosa vi preoccupa), non sto diventando satanista ]]></description>
<content:encoded><![CDATA[<div style="float:right;width:180px;height:255px;margin-right:10px;"><a href="http://vrde.wordpress.com/2008/06/22/un-post-satanico/#more-68"><img src="http://farm1.static.flickr.com/4/4423393_7ac5fb4469_m.jpg" /></a>foto: <a href="http://www.flickr.com/photos/frenkieb/4423393/">Frenkieb</a></div>
<p>ah prima che vi preoccupiate (<strong>se</strong> la cosa vi preoccupa), non sto diventando satanista ma sono capitato per caso su una pagina di <a href="http://mathworld.wolfram.com/">mathworld</a>.</p>
<h1>somma del quadrato dei primi 7 numeri primi</h1>
<blockquote><p>2²+3²+5²+7²+11²+13²+17² = 666</p></blockquote>
<p>(ma 1 non è primo? secondo me andava incluso)</p>
<h1>altra somma di potenze</h1>
<p><!--more--></p>
<blockquote><p>1<sup>6</sup> - 2<sup>6</sup> + 3<sup>6</sup> = 666</p></blockquote>
<h1>somme che contengono tutti i numeri da 1 a 9 ordinati e ripetuti una volta:</h1>
<blockquote><p>1 + 2 + 3 + 4 + 567 + 89 = 666<br />
123 + 456 + 78 + 9 = 666<br />
9 + 87 + 6 + 543 + 21 = 666</p></blockquote>
<h1>somma dei i valori dei caratteri ASCII della parola INDONESIA</h1>
<blockquote><p>73 + 78 + 68 + 79 + 78 + 69 + 83 + 73 + 65 = 666</p></blockquote>
<p>in python:<br />
[sourcecode language='python']sum(map(ord, "INDONESIA"))[/sourcecode]<br />
(che poi, con tutti gli stati e città che ci sono al mondo è plausibile che ne esista almeno una che dà, come somma dei suoi valori ascii, 666)</p>
<h1>rapporto aureo</h1>
<p>[sin(666°) + cos(6 * 6 * 6 °)] = &#934;<br />
(il <a href="http://it.wikipedia.org/wiki/Sezione_aurea">rapporto aureo</a> 1.61... ricordo che questo rapporto regola le proporzioni nella stella iscritta in un pentagono che nella, simbologia [neo]pagana, si chiama pentacolo e che se rovesciato viene associato erroneamente* al satanismo)</p>
<p>considerazioni personali a parte tutto quello che ho scritto (e molto di più) lo trovate su <a href="http://mathworld.wolfram.com/BeastNumber.html">http://mathworld.wolfram.com/BeastNumber.html</a> .</p>
<h1>...e come dimenticare l'editor satanico?</h1>
<p>come dice <a href="http://vrde.wordpress.com/2008/05/16/stallman-a-firenze-per-la-pycon2/">Stallman</a>: <a href="http://en.wikipedia.org/wiki/Vi">vi</a> è l'editor satanico (vi vi vi).<br />
Per stupire amici e parenti consiglio (bash):<br />
[sourcecode language='python']echo "alias 666='vim'" >> ~/.bashrc[/sourcecode]</p>
<p>P.S.: cercavo una foto carina di Satana ed è venuta fuori questa di <a href="http://bp2.blogger.com/_OPBJBqD25Tk/SB2tulldrTI/AAAAAAAABfU/nW4vvw6-LXs/s400/mr_satan.jpg">Mr. Satan</a>.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Tillbakablickslista]]></title>
<link>http://vildkatten.wordpress.com/?p=454</link>
<pubDate>Fri, 20 Jun 2008 01:44:34 +0000</pubDate>
<dc:creator>vildkatten</dc:creator>
<guid>http://vildkatten.wordpress.com/?p=454</guid>
<description><![CDATA[För 10 år sen
1.) Hur gammal var du: 18.
2.) Var gick du iskola: Härnösand, BF.
3 ) Var jobbade ]]></description>
<content:encoded><![CDATA[<p>För 10 år sen<br />
1.) Hur gammal var du: 18.<br />
2.) Var gick du iskola: Härnösand, BF.<br />
3 ) Var jobbade du: Intervjubolaget.<br />
4 ) Var levde/bodde du: I en etta med kokskåp på ca 20 kvadratmeter på Gådeåvägen 10 tillsammans med Roger.<br />
5.) Var brukade du hålla hus: Hemma.<br />
6.) Bar du glasögon: Ja.<br />
7.) Vem var din bästa vän: Roger. &#60;3<br />
8.) Hur många tatueringar hade du: 0.<br />
9.) Hur många piercingar hade du: 4.<br />
10) Vilken bil körde du: Ingen alls.<br />
11.) Hade du varit på ett riktigt party: Ja.<br />
12.) Hade du fått ditt hjärta krossat: Nej.<br />
13.) Vem var du kär i: Roger. &#60;3<br />
14.) Vad gillade du mest att göra: Vara med Roger, läsa.<br />
15.) Vad önskade du dig: Ett bättre liv, bra ekonomi mm.<br />
16.) Vad lyssnade du på för musik: Punk, 60-tal, samma som nu. Och så metal förstås.<br />
17.) Fritidssysselsättning: Jobba, plugga, sex.<br />
18.)Vad hade du för klädstil: Jeans, t-shirt, tröja, mysbyxor.</p>
<p>För 5 år sen<br />
1.) Hur gammal var du: 23.<br />
2.) Var gick du i skola: Ingenstans.<br />
3.) Var arbetade du: Ingenstans.<br />
4.) Vart bodde du: Efter att ha varit i Skövde och Vilhelmina var vi tillbaka i Härnösand igen. Endera bodde vi på Hovsgatan 58 D i en etta med kokskåp på ca 20 kvadrat eller i en etta på Nattviksgatan 3 på runt 50 kvadrat.<br />
5.) Var brukade du hänga: Hemma.<br />
6.) Använde du glasögon: Ja.<br />
7.) Vem var din bästa vän: Roger. Nico fanns med också.<br />
9.) Hur många tatueringar hade du: 0.<br />
10.) Hur många piercingar hade du: 4.<br />
11.) Vad för bil körde du: Ingen, men jag hade (har) körkort.<br />
12.) Hade du fått ditt hjärta krossat: Nej.<br />
13.) Var du singel/upptagen/dejtande: Jag var gift med Roger som jag fortfarande är gift med och har varit tillsammans med sen 1997. &#60;3<br />
14.) Vem var du kär i: Min man. :-D<br />
15.) Vad gillade du mest att göra: Vara med Roger, läsa.<br />
16.) Vad önskade du dig: Fortfarande ett bättre liv och bättre ekonomi bland annat, med tillägg av hälsa.<br />
17.) Vad lyssnade du på för musik: Punk, 60-tal, samma som nu. Och så metal förstås.<br />
18.) Fritidssysselsättning: Vara med Roger, läsa. Fast vi var ganske nerdrogade under den här tiden så mycket tid försvann eller spenderades stirrande utan möjlighet att tänka.<br />
19.)Vad hade du för klädstil: Mysbyxor, t-shirt, mycket trasigt och utslitet.</p>
<p>För 2 år sen<br />
1.) Hur gammal var du: 26.<br />
2.) Var gick du i skola: Ingenstans.<br />
3.) Var jobbade du: Ingenstans.<br />
4.) Var bodde du: Hovsgatan 58 D i Härnösand i den minimala skitlägenheten igen. Vi kommer visst tillbaka till Härnösand en del.<br />
5.) Var brukade du hänga: Hemma.<br />
6.) Använde du glasögon: Ja.<br />
7.) Vem var din bästa vän: Roger. Labolina var våran bästa vän och Nico trodde vi fortfarande var en också.<br />
8.) Hur många tatueringar: 0.<br />
9.) Hur många piercings hade du: 4.<br />
10.) Vilken bil körde du: Ingen, men jag hade (har) körkort.<br />
11.) Hade du fått ditt hjärta krossat: Nej.<br />
12.) Var du singel/upptagen/gift/dejtande: Fortfarande gift med Roger.<br />
13.) Vem var du kär i:  Roger såklart!<br />
15.) Vad gillade du mest att göra: Vara med min fina familj.<br />
16.) Vad önskade du dig: Bättre liv, hälsa och ekonomi, fortfarande.<br />
17.) Vad lyssnade du på för musik: Punk, 60-tal, samma som nu. Och så metal förstås.<br />
18.) Fritidssysselsättning: Vara med min familj, läsa, titta på film och sånt.<br />
19.) Vad hade du för klädstil: Mjuka, mysiga, billiga saker, huvtröjor.</p>
<p>Idag<br />
1.) Hur gammal är du: 28.<br />
2.) Var går du i skola: Ingenstans.<br />
3.) Var arbetar du: Ingenstans.<br />
4.) Var bor du: Vi är tillbaka i Härnösand IGEN! Trivsam adress, trivsam lägenhet.<br />
5.) Använder du glasögon: Ja.<br />
6.) Var brukar du hänga: Hemma.<br />
7.) Talar du med dina gamla vänner: Labolina är tyvärr död nu :*( och den vi trodde var en vän var bara fejk men Roger finns kvar.<br />
8.) Hur många piercings har du: 4.<br />
9.) Hur många tatueringar: 0.<br />
10.) Vad har du för bil: Ingen.<br />
11.) Har ditt hjärta krossats: Ja, jag saknar min Labolina.<br />
12.) Är du singel/upptagen/gift/dejtande: Fortfarande gift med Roger.<br />
13.) Vem är du kär i: Roger.<br />
15.) Vad gillar du mest att göra: Vara med min man, läsa, pyssla.<br />
16.) Vad önskar du dig: Fortfarande ett bättre liv, hälsa och ekonomi. Att vi får fortsätta vara lyckliga tillsammans, att våran unge mår bra där inne och att vi får behålla den, att vi ska hitta en katt som Roger tål, att vi ska skaffa en till pudel nån gång relativt snart, att Labolina har det bra.<br />
17.) Vad lyssnar du på för musik: Samma som innan med tillägg lite här och där med huvuddragen i vad jag gillar är ändå punk och 60-tal, sen metal är väl inte min grej men ändå det jag lyssnar mest på.<br />
18.) Fritidssysselsättning: Vara med Roger, titta på film, läsa, pyssla, sen tar väl datorn en hel del tid och har gjort ända sedan början av den här listan. Jag har hittat ett spel jag gillar också (oblivion) men det kan jag inte spela länge eller ofta för det orkar kroppen inte med.<br />
19.) Vad har du för klädstil: Mjuka kläder, myskläder och huvtröjor. Bekvämt och gosigt ska det vara, förhoppningsvis får jag nån gång en garderob som jag färg- och utseendemässigt tycker om rakt igenom också men tills dess nöjer jag mig med mysigt och bekvämt i första hand. Jag vill aldrig mer behöva ta på mig nåt som är hårt och stickigt och hemskt bara för att se mer normal ut eller passa in. Jag vill ha mer rosa och svart.</p>
<p>Jaa... Ser ut som att jag är väldigt mycket samma person då som nu även fast jag har förändrats en hel del inom vissa områden. Roger och jag håller ihop och värnar om vår lilla familj när vi är fler än två. Vi trivs bäst i varandras sällskap och vi är nöjda med att "bara" ha varann. Mycket skulle kunna ha varit så mycket bättre i vårat liv men med varandra har vi det bra och det är ju trots allt det allra viktigaste. <strong>&#60;3</strong></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[MANUALES]]></title>
<link>http://uaogif.wordpress.com/2008/06/10/manuales/</link>
<pubDate>Thu, 19 Jun 2008 18:56:50 +0000</pubDate>
<dc:creator>uaogif</dc:creator>
<guid>http://uaogif.wordpress.com/2008/06/10/manuales/</guid>
<description><![CDATA[Empezamos a subir material, en esta ocacion seran unos manuales:
Estan subidos en un servidor propio]]></description>
<content:encoded><![CDATA[<p><span style="font-size:12pt;font-family:Arial;">Empezamos a subir material, en esta ocacion seran unos manuales:</span></p>
<p><span style="font-size:12pt;font-family:Arial;">Estan subidos en un servidor propio, entonces no hay problema con que los vayan a borrar:         <a href="http://carlostheone.diinoweb.com/files/">http://carlostheone.diinoweb.com/files/</a> </span></p>
<p><span style="font-size:12pt;font-family:Arial;">Todos los manuales aqui expuestos son con fines educativos. </span></p>
<p><span style="font-size:12pt;font-family:Arial;">1.Aprenda Linux como si estuviera en primero </span></p>
<p><span style="font-size:12pt;font-family:Arial;">2.Manual de Seguridad en Redes </span></p>
<p><span style="font-size:12pt;font-family:Arial;">3.Tutorial de VI    (ingles) </span></p>
<p><span style="font-size:12pt;font-family:Arial;">4.Seguridad en Unix y Redes </span></p>
<p><span style="font-size:12pt;font-family:Arial;">5. Manual completo de Comandos en Linux (Ingles)</span></p>
<p style="color:#008;text-align:right;"><em>Powered by</em> <a href="http://www.qumana.com/">Qumana</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[The Genesis]]></title>
<link>http://casinaroyale.wordpress.com/?p=45</link>
<pubDate>Thu, 19 Jun 2008 13:00:04 +0000</pubDate>
<dc:creator>casinaroyale</dc:creator>
<guid>http://casinaroyale.wordpress.com/?p=45</guid>
<description><![CDATA[There are a few things, which come in handy so frequently that we can&#8217;t imagine our lives with]]></description>
<content:encoded><![CDATA[<p><span style="color:#000000;">There are a few things, which come in handy so frequently that we can't imagine our lives without them. Its definitely interesting to see their genesis.</span></p>
<ul>
<li><span style="color:#000000;"><strong>Google</strong>: Everyone knows the <a href="http://en.wikipedia.org/wiki/Google#History">history of google</a>, how it came out of a research project. But, whats interesting is the original research paper. Get it <a href="http://infolab.stanford.edu/~backrub/google.html">here</a>.</span></li>
<li><span style="color:#000000;"><strong>VI: </strong>Well, atleast I didn't know that it was developed by <a href="http://en.wikipedia.org/wiki/Bill_Joy">Bill Joy</a>, the co-founder of SUN Microsystems. Get a brief interview on its genesis <a href="http://www.theregister.co.uk/2003/09/11/bill_joys_greatest_gift/">here</a>.</span></li>
<li><span style="color:#000000;"><strong>Lex: </strong>The <a href="http://en.wikipedia.org/wiki/Lex_programming_tool">lexical analyser</a>, without which a lot of companies would come to a stand still, was co-designed by Eric Schmidt, the CEO of Google. Get the original research paper <a href="http://kjellggu.myocard.net/misc/tutorials/lex.pdf">here </a>.</span></li>
</ul>
<p><span style="color:#000000;">Interesting to note that people make such simple and wonderful softwares and move on to lead IT giants :)</span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[How to change the default shell editor in Ubuntu]]></title>
<link>http://nxadm.wordpress.com/?p=73</link>
<pubDate>Wed, 18 Jun 2008 21:49:12 +0000</pubDate>
<dc:creator>claudio</dc:creator>
<guid>http://nxadm.wordpress.com/?p=73</guid>
<description><![CDATA[
Using nano as the default shell editor is probably a great choice for a Gnu/Linux distribution (als]]></description>
<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-30" style="float:left;" src="http://nxadm.wordpress.com/files/2008/05/ubuntu.jpg?w=96" alt="" width="96" height="96" /></p>
<p>Using nano as the default shell editor is probably a great choice for a Gnu/Linux distribution (also) aimed for Unix newbies. If you know your way on the command line however, you'll scream from frustration for every "i", ":wq!" or "ZZ" you type and you see the characters in the text you are editing. Specially frustrating in cron. If you don't know what "i", ":wq!" or "ZZ" do, don't worry, nano is working fine for you.<!--more--></p>
<p>Here what to do to change the system wide settings (instead of using the EDITOR variable):<br />
<code><br />
claudio@brisbane:~$ sudo update-alternatives --config editor<br />
[sudo] password for claudio:</code></p>
<p><code>There are 4 alternatives which provide `editor'.</code></p>
<p><code>Selection    Alternative<br />
-----------------------------------------------<br />
1    /usr/bin/vim.tiny<br />
2    /bin/ed<br />
*+      3    /bin/nano<br />
4    /usr/bin/vim.basic</code><br />
<code><br />
Press enter to keep the default[*], or type selection number: 4<br />
Using '/usr/bin/vim.basic' to provide 'editor'.</code></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Net Neutrality]]></title>
<link>http://voidstar.wordpress.com/?p=32</link>
<pubDate>Wed, 18 Jun 2008 19:45:32 +0000</pubDate>
<dc:creator>voidstar</dc:creator>
<guid>http://voidstar.wordpress.com/?p=32</guid>
<description><![CDATA[I had to laugh when I took a look at Wikipedia&#8217;s entry for Editor War last month. I saved the ]]></description>
<content:encoded><![CDATA[<p>I had to laugh when I took a look at Wikipedia's entry for <a href="http://en.wikipedia.org/wiki/Editor_wars" target="_blank">Editor War</a> last month. I saved the screenie for future amusement value (and in case they ever do resolve the dispute. Yeah right...)</p>
<p style="text-align:center;"><a href="http://bluefiresystems.co.uk/personal/simon/voidstar/editor_war.png" target="_blank"><img class="aligncenter" src="http://bluefiresystems.co.uk/personal/simon/voidstar/editor_war.png" alt="" width="455" height="315" /></a></p>
]]></content:encoded>
</item>

</channel>
</rss>
