Save info   Get password
Home Submit your blog Edit Account Rules RSS-Archive Contact
    • Sorting




      Wikipedia:WikiProject Stub sorting/Discoveries/Log/2008/May
      {{tl|Marching-band-stub}} (and its redirect {{tl|Marching Band Stub}}) ← Previous revision Revision as of 00:07, 17 May 2008 Line 7: Line 7: :First off, I created the stub and please accept my apologies for not listing it here first. I'm still getting used to the protocol and requirements for things on Wikipedia. Anyway, I would propose this st

      Written by: karthik


      Arsene Loves RvP Loves Arsenal, Hleb Needs Sorting And Other Gossip
      Arsene and RvP have had a bit of a love-in, each admiring the other’s handiwork. van Persie kicked it all off, I am 100 per cent convinced we will soon win big trophies. When that happens, I know the whole world will be behind us. It will be a lasting memory if we win it with [...]

      Written by: A Cultured Left Foot


      Brain waves used for faster image sorting
      Brain waves used for faster image sorting Computers are fast for many tasks, but humans are faster for identifying objects or people in images. But is it possible to combine the speed of a computer with the sensitivity of the human brain? According to a IEEE Spectrum [...]

      Written by: WowMails


      Sorting Arrays in PHP…Some Sorting Functions
      Oh, so you want to learn how to sort arrays in PHP. But, did I tell you that PHP has inbuilt sorting functions. Well, I’ve now! So this post will not be anything but discussion on those sorting functions. Let’s look at them without wasting any more time. sort() Function This function, as the name suggest can be used to sort single dimensional arrays in ascending order. PHP is intelligent enough to also sort string arrays very well besides numerical arrays. $ar=array(1,11,38,65,2,99); sort($ar); //gives array(6) { [0]=> int(1) [1]=> int(11) [2]=> //     int(38) [3]=> int(56) [4]=> int(65) [5]=> int(99) } The optional second a

      Written by: Learning Computer Programming


      Creating and Sorting an ArrayList
      Example of System.Collections namespace in ArrayList The System.Collections namespace contains interfaces and classes that define various collections of objects, such as lists, queues, bit arrays, hash tables and dictionaries. Arraylist is one of the basic collection; it implements the IList interface using an array whose size is dynamically increased as required Imports System.Collections Sub Main() Dim aList As New ArrayList Dim arStr() As String = {"Apple", "Aaron", "Byron", "Reddy"} aList.AddRange(arStr) For Each aLis As String In aList Console.WriteLine(aLis) Next Console.WriteLine() ‘Sort Array aList.Sort() For Each aLis As String In aList Console.WriteLine(aL

      Written by: Dot Net Tips & Tricks


      Some Basic Questions on Sorting
      In a selectionsort of n elements, how many times is the swap function called in the complete execution of the algorithm? A. 1 B. n - 1 C. n log n D. n^22 .Selectionsort and quicksort both fall into the same category of sorting algorithms. What is this category? * A. O(n log n) sorts * B. Divide-and-conquer sorts * C. Interchange sorts * D. Average time is quadratic.3 . Suppose that a selectionsort of 100 items has completed 42 iterations of the main loop. How many items are now guaranteed to be in their final spot (never to be moved again)? * A. 21 * B. 41 * C. 42 * D. 434 .Suppose we are sorting an array of ten integers using a some quadratic sorting algorithm. After four iterations of the algorithm's main loop, the array elements are ordered as shown here: 1 2 3 4 5 0 6 7 8

      Written by: Technical Interview Questions


      Interview questions on Sorting - Quick Sort
      Determine the running time of QuickSort fora.Sorted inputb.reverse -ordered inputc.random inputd. When all the elements are equalThe ones who are familiar with QuickSort as also well aware of the important phase of the algorithm-the pivot selection.Suppose we always choose the middle element as the pivot .Does this make it unlikely that QuickSort will require quadratic time?What is the worst-case behavior (number of comparisons) for quick sort?In selecting the pivot for QuickSort, which is the best choice for optimal partitioning: a.The first element of the array b.The last element of the array c.The middle element of the array d.The largest element of the array e.The median of the array f.Any of the aboveIn its worst case QuickSort behaves like: a.Bubble sort b.Se

      Written by: Technical Interview Questions


      Sorting -MergeSort
      MergeSortMergesort is one of the beautiful examples of recursion.It runs in O(NlogN) time.The fundamental operation involved in this algorithm is merging 2 sorted lists.This can be done in one pass through the 2 lists if the output is a third list.Conceptually, merge sort works as follows:1. Divide the unsorted list into two sublists of about half the size2. Divide each of the two sublists recursively until we have list sizes of length 1, in which case the list itself is returned3. Merge the two sorted sublists back into one sorted list.The crucial step determining the complexity of the algorithm is the merge .In merge,we start of with 2 sorted sub arrays A,B and an output array C in to which the sorted union of A,B has to be copied.Let Aptr,Bptr and Cptr be the 3 counters set to the begin

      Written by: Technical Interview Questions


      Sorting - Insertion Sort
      Insertion Sort Any basic sorting algorithm which uses comparison of elements involves a number of inversions to be made to the given array to sort it.An Inversion in an array of numbers is any ordered pair (i,j) such that(a[i] - a[j] )*( i - j) .Pseudo Codevoid InsertionSort(int A[],int N){ int pos,i; int temp; for(pos=1; pos { temp=A[pos]; for(j=pos;j>0;j--) { if(A[j-1] > temp) { A[j]=A[j-1]; } else { break; } A[j]=temp; } }}Analysis of Insertion Sort:The efficiency of insertion sort depends upon the distribution of the data.This is because insertion sort tries to put each of the elements in the sorted array of preceding elements.If the array is pre

      Written by: Technical Interview Questions


      Sorting Through the Real Estate Market in Northern Illinois
      Even though it isn’t nearly as big as Texas or California, Illinois is currently the fifth most populous state in the nation. And, of the millions of people living in Illinois, 75 percent of them have settled in the northern part of the state. People are drawn to Northern Illinois for many reasons. The [...]

      Written by: Resources Zone


      Sorting Out The Wood From The Trees - The Best Woods For Hardwood Flooring
      Traditional hardwood flooring is more popular than ever. But with all the choices of wood out there, it is difficult for a homeowner to know where to begin. By grouping the types of hardwood species into various architectural styles, it becomes easier to sort out the wood from the trees. More: continued here

      Written by: Your Home Improvement and Family Resources


      Online life insurance cover helps for sorting options
      Online life insurance cover gives customers a great opportunity to more efficiently sort through life insurance products and price premiums. While life insurance is general protection for survivors of the covered individual, the benefits and terms of coverage can vary greatly from one provider and one product to the next. Costs for insurance can also vary greatly based on health characteristics of the covered individual and personal life habits and behaviors. There are several important elements of protection customers must consider when sorting through online life insurance options. Obviously, the amount of coverage is a key consideration. Many people want to be sure they provide enough protection to care for their family in the event of death. Along with having the right amount of covera

      Written by: Life Insurance Guide


      Sorting a String Array
      Sorting arrays in VBScript has never been easy; that’s because VBScript doesn’t have a sort command of any kind. In turn, that always meant that VBScript were forced to write their own sort routines, be that a bubble sort, a heap sort, a quicksort, or some other type of sorting algorithm. But that was before the advent of the .NET Framework. If you have the .NET Framework installed on your computer then you can sort an array using code no more complicated than this:

      Written by: AdvancedQTP


      Sorting Arrays - Heap Sort
      Heapsort is a comparison-based sorting algorithm, and is part of the selection sort family. Although somewhat slower in practice on most machines than a good implementation of quicksort, it has the advantage of a worst-case O(n log n) runtime. Heapsort is an in-place algorithm, but is not a stable sort.

      Written by: AdvancedQTP


      Sorting Arrays - Quick Sort
      Quicksort in action on a list of random numbers. The horizontal lines are pivot values.Quicksort is a well-known sorting algorithm developed by C. A. R. Hoare that, on average, makes (big O notation) comparisons to sort n items.

      Written by: AdvancedQTP


      Sorting Photos
      I spent Earth Hour last weekend sorting through six months' worth of photos on hubby's computer. I still don't know if the embargo on electricity was supposed to include screens as well as lights; I do know that after grumbling all week about the absurdity of the whole idea ("How does sitting in the dark for one hour equate to making 'a big difference'?"), this was a surprisingly compliant way

      Written by: Bub and Pie


      Sorting Data Using SQL Like Operator
      Operator Like digunakan dalam sebuah SQL Statement untuk mencari sebuah nilai dalam sebuah table yang mempunyai pola string atau karakter tertentu. operator Like ini ditempatkan setelah klausa where dalam sebuah SQL Statement. perbedaan antara operator Like dengan operator '=' adalah, operator '=' tidak bisa digunakan untuk mencari sebuah nilai yang tidak kita ketahui sebelumnya. Operator Like ini biasa digunakan bersama dengan karakter '%' (Percent), '*' (Asterisk), '_' (Underscore), '?' (Quatation Marks),'#' (Number Sign),'-' (Hyphen),'[]' (Brackets) dan karakter '!' (Exclamation Point). Disini saya hanya akan membahas penggunaan Operator Like bersama dengan karakter '%', '*', '_' dan karakter '?'. Adapun fungsi dari pengunaan masing-masing karakter tersebut adalah sebagai berikut : K

      Written by: Basic and Advance programming tutorial and tips, software tutorial and free e-books


      Hogwarts House Sorting
      Which Hogwarts house will you be sorted into?Your in-depth results are:Gryffindor - 12 Ravenclaw - 11 Slytherin - 9 Hufflepuff - 8 Come on guys, join me at Hogwarts! *** start copy paste this... [[ This is a content summary only. Visit my website for full links, other content, and more! ]]

      Written by: Catsy Carpe Diem


      Real-World Folder Sorting
      In the REAL world, I usually name the folder with a large title. Of course I choose a typeface for the title and a folder color. When I have multiple compartments in the folder, put the titles on the tags.   If I have many items in one folder, I add an index on it. Yeah, usually. This work [...]

      Written by: petitinvention


      Sorting Through the Memories
      Back home - it feels so good! Particularly because Winter appears to be over (sorry about your luck, TamaraLyn!). Although it’s -25 at the moment, it’s a gorgeous day. My cold is worse, but our MIA suitcase is already sitting at the airport waiting to be picked up, so I’m heading out into the sunshine [...]

      Written by: The ExploreNorth Blog


      Sorting Through the Facts About Current Foreclosure Figures
      The real estate industry and Wall Street have been reeling of late, obsessed with the number of U.S. foreclosures and portraying the information as a catastrophic event which is unrecoverable in the foreseeable future. The media is reporting a “record number of foreclosures” and hyping an impending crisis, but does it really exist? The truth [...]

      Written by: GuReview REI Blog


      sorting
      Tranquility. Peace. Happiness. I recharged my soul and my caffeine at the coffee shop. TheDog relaxing at my feet as I read. We took an extra long time walking home. No hurry. Savoring the beautiful weather. Even work and house chores couldnt dampen the mood. They kept me busy. Helped my mind not to question things. Even went for sushi. The fish was beyond delicious. The company was not so bad

      Written by: ramblings of a curious mind


      Sorting List Page
      Months ago, I did a sorting list page to learn and practise my PHP programming. It has been shifted to http://sillydumb.com/tools/sortlist and it is now version 1.3 with extra features like sorting accordingly to string or numeric, and sort reversely.Therefore, now you can use it to sort in two ways, for example:(By string)1 - Wilson is a pig22 - Ruoci laughs non-stop3 – Mingfa is desert penguin(By numeric)1 - Wilson is a pig3 – Mingfa is desert penguin22 - Ruoci laughs non-stop SiLlYDuMb @ http://sillydumb.com

      Written by: Dear Dreams


      JavaScript Tutorial - Sorting Numeric Array
      In JavaScript whenever you want to sort an array it gets sorted alphabetically. This means that numbers are sorted on the basis of the first digit occurring in number system(1 - 9) and not by comparing the value. So if i want to sort an array having values 10,12,11,20,2,25,30 gets sorted to 10,12,11,20,2,25,30 using inbuilt [...]

      Written by: Techie Zone


      Dual Core Laptops - Sorting The Facts From The Fluff
      by Laurie VellaMobile computing technology is ever changing and the latest evolutionary step is the development of dual core processor laptops.New CPU’s for notebooks.The recent introduction of the NAPA Platform has shown some significant enhancements on the older Somona technology. The new NAPA platform offers a lot of significant advantages for a dual core laptop such as a 60% performance increase with its physically smaller dual core processor which can utilise memory more effectively whilst using less power as well.What are the enhancements for laptops?Performance Increases:- Dual core processing with 667Mhz Front Side Bus- Latest Intel 945 Chipset- Generation 3.5 Intel Integrated Graphics- DDR2/667 Dual Channel Memory- Lower power consumption = Increased battery life- Latest IEEE 802.11 StandardsWe've been playing with a couple of the latest Toshibas to see exactly what these developments have to offer a real world user.Fingerprint Reader Technology.New fingerprint technology w

      Written by: Laptop and Notebook Computers Tips and Tricks


      AQHA team penning, sorting, ranch rodeo money earner
       AQHA Incentive Fund, AQHA team penning points, many times money earner in team penning, sorting, ranch rodeo. Very quiet, broke for all rider levels. This mare also had a beautiful black/white filly this spring so she'll through color too. We have several other AQHA broke performance horses for sale. Check out our web site for more info and photos. Call days 608-797-4846 or 608-625-3457 or evenings 608-272-3925.

      Written by: Equine Now Horses for Sale


      Testing sorting algorithms
      Some time ago I had to deal with sorting algorithms. Besides my main task I found a good way how to test custom sorting algorithms. This blog entry is one of early birds, more about sorting algorihtms is coming soon. Hopefully some time after TechEd 2007 for Developers. The procedure I wrote to test sorting algorithms is simple and works. Of course, I am always opened for better ideas if somebody wants to suggest some. Here's the little overview about what I've done. Is array sorted? At first, let's look at method that checks if array is sorted or not. To make things simpler I expect that all members in array implement IComparable interface. This expectation has very strong point: it is easy to compare objects of classes that have comparison operators defined but it is

      Written by: Gunnar Peipman's ASP.NET blog


      Sorting Arrays using Sorting algorithms Part I
      A new article by Dani Vainstein is available - Sorting Arrays (part 1)! You can automate projects for so long before you come across a sorting problem. Maybe it's a list of potential values that needs to be read into the script, maybe it's a list of users that has to be taken from the DB, or maybe it's your plain old output compare validation - no matter what the specifics are, you come to a point where you're gonna need to use a good sorting algorithm to pull it off. My experience tends to be frustrating around this point - it seems that even though there are countless sort and search resources on the web, they are either too theoretical and academic (and hence useless for my immediate needs), or practical - but in a different syntax (e.g. C++, .Java, etc.). Either way, they are useless to the QTP programmer who needs a solution HERE and NOW. Well, No more! From now on you can get an immediate (though deep) solutions to all your sort problems. In this article, Dani Vainstein begin

      Written by: AdvancedQTP


      A Traffic Cone Is Not The Sorting Hat And You Are Not Harry Potter!
      Harry Potter fan, 3, finds traffic cone. Boy puts cone on head. Cone gets stuck. Firefighters called in to free boy. Boy’s mum buys proper wizard outfit and learns lesson. Full story here. “I hope I get in to Griffyndor!” “Just like Harry did!” “Errr … Mummy? HALP!!”

      Written by: They Might Be Curly Giants!


      Google Analytics adding search sorting, outbound link checking
      Earlier today Google unveiled some new and upcoming features being added to their Analytics service at the eMetrics Summit in Washington, D.C. Site owners will soon be getting a way to see what their users are searching for within the site, potentially making it easier for them to reorganize, or prioritize the what’s on the [...]

      Written by: Make Money Blogging


      Sorting Algorithm - Hypercard
      Could you tell me the fastest sorting algorithm? I am using Hypercard. I need to sort fields that are about 125 entries in length. I am using an algorithm that I think is called boolean. Is there a faster method? Right now it takes about 7-8 minutes to sort on a Mac Classic 2. If you could explain the principle behind the algorithm I think I could extrapolate the code into hypertalk.An entire chapter of NUMERICAL RECIPES is devoted to sorting algorithms. The authors say that the "straight insertion" method is adequate for small (a ) { arr[i+1] = arr[i]; i--; } arr[i+1] = a; } /* end for loop */An added caveat: the C code in NUMERICAL RECIPES assume that array indices start at 1 NOT 0 !!Response #: 2 of 2Author: Clayton S. FernerText: The fastest sorting algorithm depends on what you are sorting. But, in general, quicksort and heapsort are about the fastest you can do. Insertion sort is efficient for small lists, but quicksort and heapsort will out perfor

      Written by: future of coding


      Getting help sorting out your taxes and finances with a San Diego tax attorney
      San Diego tax attorneys are basically the legal professionals who are capable of giving advices to people when it comes to tax planning. San Diego tax attorneys are also the ones who represent their clients in the event of cases concerning tax problems or disputes against the government standards. You as a San Diego taxpayer may have certain problems with the Internal Revenue Service or with the

      Written by: AllThingsLegal.info - Legal Resource, Guide and Tips.


      AQHA Team Penning, Sorting Mare For Sale
       12 year old sorting and penning mare for sale. This mare has been to the worlds show several times, has won numerous buckles, pads, etc. in both penning and sorting. I have also spent many hours trail riding this mare. She is a proven producer. She is easy to handle, shoe, shots, lead trailer, etc. Would be a good starter horse for someone new to penning. This mare is an incentive fund horse.

      Written by: Equine Now Horses for Sale


      Sorting & Planning
      There is a new and improved sorting quiz:Which Hogwarts house will you be sorted into?It's much less obvious than others we've done. I found it in a loopy way.Looking at the Ambleside Online curriculum I noticed one of our favorite history books is now at LibriVox. The reader has a blog that seems pretty cool. Her blog had the quiz, along with a nice Ravenclaw bag pattern she got from Quietish. I'm sure the kids are going to want Griffindor bags. Looks like I might be learning Fairisle knitting! How might one translate it into crochet? It would be faster and more sturdy. It's an idea.I'm loving the whole Librivox thing...hey kids, come listen to school!Trying to find peace with Sonlight, unschooling and Ambleside is proving a challenge. How do I make this work? Is making it work part of the problem? We probably need to start with writing down our goals and desires, T, me, the kids, and then go from there and see which thing fits each idea best. It's more work at the outset, but w

      Written by: A Brain Like Mine: Diary Of A Feminist Housewife


      Sorting Two-Dimensional Arrays
      Do you know how a 2D array is stored in the memory while the memory is only one-dimensional? The answer is simple, all the arrays are stored linearly in the memory, be it 2D array or 3D, only the representation is such that to make it easy to reference. Therefore, if a two-dimensional array has the following elements: 1 2 3 4 5 6 7 8 9 in the memory, it will be like this: 1 2 3 4 5 6 7 8 9 just because memory is linear, and cannot have dimensions. It is the language that represents 2 D arrays as such while in the memory it is always linear. This property of 2D arrays will be used to sort them, because sorting linear data is much easier. We don’t need much discussion on this, so here is the example program, please read the comments where all things are elaborated // --Sorting Program-- // ------------------- // Example Program to sort // 2D array using linear // representation of the array #include<iostream.h> #define MAX 3 void main(void

      Written by: Learning Computer Programming


      Sorting out PayPal issues
      Don't say no to PayPal before you find ways to say yes!When I am typing this, my life and my USD80+USD9 is on Edgar's shoulders as this friend of mine is helping me making magic here. I thought I should be able to receive my funds into my PayPal account successfully but not until when I was about to receive funds for writing reviews at Review Column which I am hired as a reviewer. I can't seem to receive any incoming funds because PayPal now needed a "verified by a credit card account" to receive funds for a Malaysian. Should I hate PayPal by now?There's some solutions for me, although "PayPal hates Malaysia" were said by many Malaysians out there. I am proud to be in this country as there are still solutions for me due to all those innovative Malaysians out there. What I will be doing is two open two more accounts with different parties, which hopefully can get my PayPal account verified and allows me to withdraw my funds from PayPalLet me explain on paper here on what I will be d

      Written by: Simple Life of YP


      Sorting and Taking Out the Garbage
      A notable origin of unwanted waste comes from excess food that we simply throw in the trash bin. While the effort alone is a key factor adhering towards placing garbage in its place, the overlooked aspect of how spoiled food may turn into adding more problems as far as waste problems is concerned should also be checked out. Food will decompose at any given time if not placed properly. Food leftovers or spoiled ones should be sorted and left out to be disposed properly. This is where composting comes in, placing food scraps in landfills for proper disposal proceedings. Download latest version of Flash to view video! . Click Here to View in Full Screen Mode biodegradable, earth friendly, Eco Friendly, excess food, food leftovers, food scraps, garbage, Green Tips, Green Tutorials, home and garden, Kitchen and Bathroom, landfills, not biodegrable, recycle, trash bin, Video Clips, waste

      Written by: Keetsa! Blog - Earth Friendly and Green


      Sorting an Array using Bubble Sort
      In this article we will see how an array can be sorted using Bubble Sort Technique. Sorting, as you know, is the method of arranging the elements of an array in an order (ascending or descending). The basic idea behind bubble sort method of sorting is to keep on comparing adjoining elements of the array from the first until the last and interchanging them if they are not in proper order. The whole sequence is repeated several times when the array becomes sorted. Bubble Sort Algorithm Suppose, The array (to be sorted) to be AR[SIZE] having SIZE number of elements. L is the index number of the lower element. We take it to be 0, since the whole array has to be sorted. U is the index number of the upper (last) element. It will be (SIZE-1). Here is the algorithm of sorting the array using bubble sort FOR I = L TO U FOR J = L TO (U-1) IF AR[J] > AR[JA1] THEN temp = AR[J] AR[J] = AR[J+1] END OF INNER LOOP END OF OUTER LOOP Now that you know the algorithm,

      Written by: Learning Computer Programming


      AQHA Penning, sorting
       Harley is a 1999 bay mare she is 100sound, great ground manners and under saddle she is all business, she is very cowy, she has won moneys both in TPA and USTPA selling due to husbands health problems.

      Written by: Equine Now Horses for Sale


      Sorting an array using Selection Sort
      Sorting is the process by which the elements of a group (ex. Arrays) are arranged in a specific order (ascending or descending).The process of sorting is very important, since it is needed in many types of programs. Ex. If you need to arrange the heights of various students in a class, you need to sort their heights.While there are quite a few methods employed for sorting, we will be discussing about Selection Sort method in this article.In selection sort, all the elements of an array are compared with the other elements following it and interchanged so that smaller elements come at the top.So, what that means is that the first element is compared with the second, third … elements then the next is selected (second element of the array) and it is compared with the third, fourth … elements and in this way different elements are selected serially and compared with elements following it. Interchange is done so that smaller elements come high up in the array. (for ascending order)To ma

      Written by: Learning Computer Programming


      Automatic Color Sorting
      Download latest version of Flash to view video! . Check out this Automatic Color Sorting DIY that uses some DC and stepper motors from an old HP printer and uses Parallax’s new 32bit processor as the brain. Brilliant! This could be great to low budget project requiring color sorting. Once the Sensor was figured out I started to build everything. Most of the parts including the DC motor and stepper motor were taken from an old HP 712c Printer I had laying around. The carriage system for the ink head was my main platform for the sorting process to occur on. I then had to design a way to control the flow of m&m’s, this was accomplished with the idea of using a system that is commonly found in gumball machines and a coin sorting machine. I then made a CAD drawing for it to be milled by my father using a CNC machine. via automatic color, brain brilliant, budget project, Circuits, Consumer, Cool, diy, DoItYourself!, educational, Entertainment, gadgets, go

      Written by: Zedomax


      Novel Writing Part III: Sorting Out the Blob in Your Head
      (Disclaimer: If you are new to this blog, please click the tab labeled Read Me First! at the top of the page.) It took me a great while to drum up the courage to dive back into writing a novel. I don’t care what any book tells you; novel writing is a long and arduous process. You can write a first draft in 30 days, but not a ready-to-be-published novel. Taking your idea out of your head and through the entire process can take months, and in most cases, years. After typing the end of my first novel, I put it away for a long time. When I decided to look at it again, the reality that there was still a lot of work to be done set in. I knew then that it was going to be a while before I was ready to start writing another novel. In the interim between novels, I kept myself busy by editing, writing flash fiction and blogging (a great way to keep yourself writing everyday). Now that I’m ready to start again, there are a few things that I have to take into consideration, and sorted o

      Written by: The Truth About Writing


      Sorting non-English alphabets
      One might need to sort an alphabet that in some internationalized application according to the current Locale. A good tutorial i found on this matter by Sun: Customizing Collation Rules That will allow you to sort properly words and letters that are not English. Here is the link: http://java.sun.com/docs/books/tutorial/i18n/text/rule.html java.sun.com/docs/books/tutorial/i18n/text/rule.htmlRead more...

      Written by: Development Blog


      Novel Writing Part 1: Sorting Through Ideas
      (Disclaimer: If you are new to this blog, please click the tab Read Me First, located at the top of the page)  Before I get started, I have three potential projects to decide between for my next novel. All of them have pros and cons. Selecting the right project is important because it has to  keep my interest over a long period of time. In the past, I’ve jumped into writing a novel too soon, only to come up dry by the 10.000 word mark. If you are serious about writing a novel, make sure that you are working on something that you love and have a connection to. If you are writing about something just because you think it will sell, you might find yourself having a hard time,  since you really have no investment in it other than to make money*. Make sure it’s something that you believe in. The following is a list of projects that I’m mulling over: The Octagon: This project is the sequel to my first novel, “The God Maker”. The story takes place immediatel

      Written by: The Truth About Writing


      The Talpiot Tomb: Sorting It Out
      The implications of the Talpiot Tomb is only beginning to sink in for me. On my first blog post I amused myself with the question, What if They Found the Body of Jesus? It never occurred to me that it might actually be possible to find the remains or evidence of the remains of Jesus. I don't know if the Talpiot Tomb was the final burial place for Jesus or his family. I cannot dismiss it out of hand. Knee-jerk reactions seem to me to be based on apologetic concerns. The find whether it goes back to Jesus or not is very likely the major claim of Christian (and Western) history. This is not a hoax. This is not about finding Noah's ark or whatever. This is an actual find. Evidence has been discovered. Whether this evidence is evidence of the burial of Jesus of Nazareth or not is to be determined. The story is complex. How do I sort this out? First of all, I am not simply going to champion someone who is on my side and find an article or blog that dismisses this in

      Written by: Shuck and Jive


      Sorting out the projections? Partisanship or Methodology
      We had a comment from someone who stated he liked the balance of this site as I 'lean' to the right while Indy 'leans' to the left. Our projections really went in a similar direction with my projections showing the Democrats picking up 12 less seats than Indy did. Now when I buzz through what appears to be the final numbers I see that I appear to have missed ten seats (If PA-08 holds on for the challenger) that I called Republican that went Democrat, including an embarrassing four seats that I wasn't even bothering to track. There are few more that are not called and possibly could get wrong, but lean the way I picked. Of those same ten races Indy happened to also miss the four that I was not tracking. He correctly projected the Democrat to win in the other six races. On the flip side, Indy incorrectly projected the Democats would win seven races where the Republicans ended up winning. I correctly projected the winner to the GOP in four while I also missed the other three. If ot

      Written by: Coldheartedtruth


      Articulos > sorting and reclamation - por Webmaster de 02/01/2006 @ 10:41
      SortingSorting of whole bottles by resin type is essential to effective plastic bottle recycling and generally takes place at the materials recovery facility (MRF), or at an intermediate processing center (IPC) that consolidates and processes source separated materials. Some plastic reclaimers accept mixed plastic bottle types and separate them at their facility; however, for the purpose of this general discussion, the same sorting principles apply, regardless of where the materials are sorted....

      Written by: Ecobar


      Harry Potter Sorting Quiz
      We had fun with this quiz, and tried all different ways to get all the badges. Both kids ended up Gryffyndor, natch. They know how to answer...be sorted @ nimbo.netFun on a rainy day for the HP fan! Also includes scripts/codes for putting the badge on your/your kids' website. Incentive?http://nimbo.net/quiz/houses.htmlIt will go on all day tomorrow, possibly for days, the never-ending Harry Potter game. Which badge will it be today?be sorted @ nimbo.netI s'pose we better pre-order HBP (nerdy shorthand for the new book) somewhere and get a nifty backpack or something."Which one should I be tomorrow? Mommy, which one do you think? Not Slytheryn."

      Written by: A Brain Like Mine: Diary Of A Feminist Housewife


eXTReMe Tracker