background preloader

Computer

Facebook Twitter

LINQ to ASCII Art - CodeProject - FrontMotion Firefox. Download ASCII_Art.zip - 89.4 KB Introduction I saw many articles explaining how to generate ASCII Art from image, but I didn't see any article that achieves the same stuff in LINQy style. With that, I 'll explain how to use LINQ technology to compose a couple of functions to achieve our goal. Background ASCII Art in a nutshell refers to text-based visual art. So we can create cool arts using ASCII codes from simple things such ^_^ to little advance things such as: For more information, I advice you to check out this link.

As we know, Language Integrated Query (LINQ) is a powerful technology for composing, querying, transformation different data source, all of that inside your code. I think of ASCII Art as composing and transforming a couple of functions to generate the beauty stuff. Using the Code The LINQ to ASCII Art is very straight forward. Get Pixels Gray Scale Pixels Gray Scale = 0.3 * Red + 0.59 * Green + 0.11 * Blue For more information about gray scale, please check out this link. Memorizing a programming language using spaced repetition software | Derek Sivers - FrontMotion Firefox.

I've been doing this for a year, and it's the most helpful learning technique I've found in 14 years of computer programming. Background: I'm an intermediate programmer. I didn't go to school for it. I just learned by necessity because I started a little website called CD Baby that just kept growing and growing, and I couldn't afford to hire a programmer, so I picked up a few $25 books on PHP, SQL, Linux, and Apache, and learned just enough to make it work, then used that little knowledge for years.

But later, when I worked along side a REAL programmer, I was blown away by their vocabulary! All of these commands and functions just flowing effortlessly out of their fingers. We were using the same language, but they had memorized so much of it, that I felt like a 3-year-old next to a university professor. It made me think about how much I've learned then immediately forgotten, over the years. Spaced Repetition: As for programming, you get where I'm going with this. First, learn! Class D.

Imaging

Troubleshooting the Startup Process. Published: November 03, 2005 Diagnosing and correcting hardware and software problems that affect the startup process is an important troubleshooting skill. Resolving startup issues requires a clear understanding of the startup process and core operating system components. For information on how to obtain the Windows XP Professional Resource Kit in its entirety, please see On This Page Related Information Understanding the Startup Process Recovering from Hardware-Related Problems Additional Resources Related Information For more information about troubleshooting concepts, see Chapter 27, “Understanding Troubleshooting.” Understanding the Startup Process To diagnose and correct a startup problem, you need to understand what occurs during startup. The root cause of startup failure, including contributing factors, can stem from a variety of problems, such as user error, application faults, hardware failures, or virus activity.

Profile 1. The Go Programming Language. PortForward.com - Free Help Setting up Your Router or Firewall. Image Processing Lab in C# Introduction Image Processing Lab is a simple tool for image processing, which includes different filters and tools to analyze images available in the AForge.NET framework. It's easy to develop your own filters and to integrate them with the code or use the tools in your own application. The following filters are implemented in the AForge.NET framework and demonstrated in the application: You can create (save and load) your own convolution filters or filters based on standard mathematical morphology operators. Colorized grid makes it very convenient to work with custom convolution filters. A preview window allows you to view the results of changing filter parameters on the fly. You can scroll an image using the mouse in the preview area.

A PhotoShop-like histogram allows you to get information about mean, standard deviation, median, minimum and maximum values. The program allows you to copy to or paste from clipboard, save and print images. Using the Code HSL Filters Fourier Transformation.