Pure silence is added whenever possible.

Couldn’t help myself! I’m using some random text (Lorem Ipsum) in an application (I took a couple of sentences, split them up into words and randomized them into a new “text”), and I got curious about what would happen if I took my random text and run it through Google Translate. Here are some golden nuggets!

Love in the digital era?

To love short or long description, nor in the more powerful marriage with a sample in a data center.

Yep! Random generators and Google Translate are against copyrights:

Rights helping take your life.

How about this one for your door mat?

Welcome to here.

Letter of complaint?

Not just your products but you need a no mourning.

Ah, yeah, my GTD-aspirations in a nutshell:

Sometimes you make your list, but more than dwell.

Is this about relations?

Want this torture to make your life but no more singles in itself.

Above the entrance to your local university?

More members of the street unless you just read here.

Is this what AI will bring us?:

You bowel is a download box.

Beware of the Intel Core teens?

Read more here by the Intel Core teens, as at the price of the month. Your wish is for none. Read more in pain. Click for more. Wishes to you for they do not want that by the disease.

Be original!

More What’s New in your reply.

Give me a raise – I need a new car!

This is my base vehicles, need some price Employment.

Um, intermarriage?

We here in the free right of intermarriage.

Yeah, I hear this one when I’m tired or talking to someone that pretends to know what they’re talking about…:

Administrator ligula viverra viverra this some more.

Why write tons of books about requirements specification when all you need is:

System Requirements silence, the author of a comment.

But well, who pays your bills?

Client Forms live element.

Pure silence:

More more more more more more pure silence is added whenever possible.

Shakespearian lust?

My hunger for my lion, nor life at your sauce and your region.

First you’re young and full of ideas, then you start working for the man…

Employment class you need in your life here, pure torture to your bow before the process and initiatives.

Something for the diet book?

Who the menu is more to love, but sometimes more change to hate.

Um… deep and poetic… I think…

Shoes, your wishes to be this way.

I hate it when that “no happier more” arrives!

This no happier more, is here.

A whiff of the good old days?

Marriage to accept and silently.

Aging sucks?

Dwell in old age, and the author of various torture.

Freedom!… to compare products…

As before by no more you make your home the trophy for freedom is just. Compare Products.

The School of Life goes online…

T​he shores of life pain Elementary School is now online.

Those pesky customers…:

Customer Care Center for just more hatred.

Abstain, or at least use protection!

Loves the bed, enabling a sample now, you know the author of your disease started with more initiatives.

Hmmm …

By way of our, Blockquote: disease free.

The suffering poet:

Paragraphs break my pain.

 

 

Share

The glass is empty and full

The glass is empty and full, because:

0.5 empty glasses = 0.5 full glasses
2 x 0.5 empty glasses = 2 x 0.5 full glasses
1 empty glass = 1 full glass

It’s just like eating the cake and keeping the cake… I mean pity those who eat the cake and doesn’t get to keep it, right?

Share

How do you log to the Windows event log from C# .NET?

This seems to do the trick:

private void logError(string message, string source)
{
	System.Diagnostics.EventLog log = new System.Diagnostics.EventLog();
	log.Source = source;
	log.WriteEntry(message, System.Diagnostics.EventLogEntryType.Error);
	log.Close();
}

private void logError(Exception exception, string source)
{
	logError(exception.ToString(), source);
}

Put it in your class, or in a special logging class.

Read more:

Internt/Egna SharePoint – Miniprojekt Utveckling/Design Lookup fält programmagiskt… / ContentTypes
Share

links for 2010-01-10

Share

links for 2010-01-07

  • In mathematics, a spherical coordinate system is a coordinate system for three-dimensional space where the position of a point is specified by three numbers: the radial distance of that point from a fixed origin, its elevation angle measured from a fixed plane, and the azimuth angle of its orthogonal projection on that plane, measured from a fixed reference direction on the same. The elevation angle is often replaced by the inclination angle measured from a zenith direction perpendicular to the reference plane.
Share

links for 2010-01-03

Share

links for 2010-01-01

Share

links for 2009-12-31

Share

links for 2009-12-30

Share

links for 2009-12-15

  • The same way tabbed browsing revolutionized the web experience, GNU Screen can do the same for your experience in the command line. GNU Screen allows you to manage several interactive shell instances within the same “window.” By using different keyboard shortcuts, you are able to shuffle through the shell instances, access any of them directly, create new ones, kill old ones, attach and detach existing ones.
  • Personal time management skills are essential skills for effective people. People who use these techniques routinely are the highest achievers in all walks of life, from business to sport to public service. If you use these skills well, then you will be able to function exceptionally well, even under intense pressure.
  • "You are logged into your remote server via SSH and happily plucking along at your keyboard and then it happens. Suddenly, the characters stop moving and then you get the dreaded “Connection Closed” message. You have just lost your session. You were halfway through some task and now you have to start over. Ugh. Well you can prevent this from happening by using screen."
    (tags: sysadmin)
  • What is the maximum number of physical extents in LVM? The answer is that there's no limit on the number of PEs within a Physical Volume (PV) or Volume Group (VG). The limitation is, instead, the maximum number of PEs that can be formed into a Logical Volume (LV). So a 32MB PE size allows for LVs up to 2TB in size.
    (tags: lvm)
  • Amazon s3 is a remote file storing system. It is totally different from Normal Servers like Apache, FTP server etc. If your site burns more bandwidth due to backups or multimedia contents such a video, image, audio etc, the maintenance cost will be very high. For a limited number of page views, local file saving mechanism is ok. Because the cost of bandwidth is comparatively low. But when the data transfer rate become higher, the bandwidth cost should be considered.
  • This book describes the LVM logical volume manager, including information on running LVM in a clustered environment. The content of this document is specific to the LVM2 release in Red Hat Enterprise Linux Release 4.5.
    (tags: lvm)
  • I joined Microsoft in 1993 when it was hitting its stride. It had recently released Windows 3.1 and Windows NT, setting itself on the path of more than a decade of dominance in the PC operating system market, and the many other markets that flow from it. I worked as a programmer for 11 years in various different groups — on databases, Windows, Office, MSN, mobility, and research.

    One day it just hit me — I should quit.

  • HOWTO Restore GRUB
    (tags: grub)
  • GNU GRUB Manual 0.97
    (tags: grub linux)
Share