Showing posts with label Space. Show all posts
Showing posts with label Space. Show all posts

Sembo 203301-203306: Space Flight Spaceships, Satellites, and Rockets Builds with new Sembofigs Preview

May 21, 2020 Add Comment

Sembo 203301


Sembo 203302


Sembo 203303


Sembo 203305


Sembo 203306


(Not sure which set includes these Sembofigs.)
Goodbye minifigures from Sembo? Seems like they have started to release their own type of minifigures. For now, I'll be calling them Sembofigure or Sembofig.

This is most probably due to Lego not allowing other companies to use their Lego minifigure designs, and they have legal rights to do that.

I'm personally glad to see that Sembo, and other Chinese brands, are starting to innovate and stray away from ripping off Lego instead. I know we all love the minifigure design and having new type of figures like these Sembofigs won't fit nicely with our current collection, but it's better that than losing Sembo as a brand altogether.

I wonder though if, like my initial assumption, that Sembo will be focused on new, original set designs while Sheng Yuan will focus on the knockoffs.

Where to buy? Try our affiliate link:
https://s.click.aliexpress.com/e/_dYw4ceP
Using this link, browsing with it, and eventually buying from any store will help support the page without additional cost for you.

Join our subreddit at reddit.com/r/downtheblocks!

Share your thoughts below or through facebook.com/downtheblocks and please like the page for more previews, reviews, MOCs, and more!

How to Extract First, Middle and Last Name from One Cell Into Separate Cells In Excel

May 17, 2016 Add Comment

In this article we will show you how to extract First, Middle & Last Name from a given text string using multiple methods in Microsoft Excel.
Many a times you face a situation where in you are given a name list containing full names and you need to separate them on the basis of first, middle and last name and then return the result into different cells. This is a very common problem for any excel user, and you too must have come across it.
This is a very common distress for a lot of Excel users but there is no specific in-built function in Excel that can extract first name, middle initial and last name from a cell that contains a complete name.
But, there are multiple methods in Excel that can help you in doing the same. And, that’s what this article lesson is about.
Today, we will show you two different methods that can be used for splitting names into different cells.
The most common way in which Excel stores name is by taking the first name first, space then middle initial (if any) followed by space and then the last name. Sometimes, instead of spaces, comma is used for separations.
Moving on to the first example, as you can see there are a few names in “column A” that we want to extract and return in column B, C and, D as first name, middle initial and last name respectively.

Example 1
Note: Random sample names are used in this tutorial, just to explain how to extract values and return them in different columns.
Note that random sample names are used in this tutorial, just to explain how to extract values and return them in different columns.

Here, we will use the “Text to Column” feature which is used to separate simple cell content as first name and last name into separate columns. This feature is located under “Data” tab in “Data Tools” category. And, you can also use the keyboard shortcut “ALT + D + E” (Learn more Keyboard Shortcuts) to access the “Text to Column” wizard.

Select the range from A9 to A17 and then press “ALT + D + E”.

Note that random sample names are used in this tutorial, just to explain how to extract values and return them in different columns.

And, now we need to follow 3 easy steps, and as you can see on top of the wizard box, we are at the first step. 
Select “Delimited” 
Click on “Next” 

In the first step, we need to tell Excel that how our data is stored and formatted in the Excel file.

Now, we are in 2nd step of this wizard, and as you can see below, here we need to set the delimiters which our data contains.
Note that random sample names are used in this tutorial, just to explain how to extract values and return them in different columns.

Here you can see few “Delimiters” checkboxes; so, either you can select these check boxes or can mention the delimiter in “Other” checkbox. If your data contain some other delimiters which are not listed here. You can select one or multiple delimiters if there are more than one delimiter in your data.

Note that random sample names are used in this tutorial, just to explain how to extract values and return them in different columns.

Check “Space” delimiter
Then click on “Next”
    Note that random sample names are used in this tutorial, just to explain how to extract values and return them in different columns.
    Moving on to the last step of the “Text to column” wizard. 
    Select “General” in column data format
    Select B9 as “Destination” and lock it
    Click on “Finish”
      Note that random sample names are used in this tutorial, just to explain how to extract values and return them in different columns.

      Note that if you do not specify a new destination cell reference, the extracted columns will replace the original data.

      Now you can see that the names in “column A” have been extracted in multiple columns. But, if you look closely you will notice that in the 11th row, “Steve Smith” does not have a middle initial and his last name is moved to the middle name column.

      Note that random sample names are used in this tutorial, just to explain how to extract values and return them in different columns.

      That’s because, “Text to column” is only used to separate simple content into different cells basis on their delimiters. And, as there is only a single space in his name, it got split only in next 2 cells. This is the only drawback this feature has.

      Example 2
      Note: In the second example, we have taken “Mayor Tom C Bradley as the full name in cell H9, just to show users that when there are more than 1 initials in the middle name, the function will extract both of them.

      Now, we move on to the 2nd example, where we will use multiple functions together to get what we are looking for. This is the advanced technique of extracting “First”, “Middle” and, “Last Name” into different columns. And, to do the same, we have taken similar data in column H and, we are going to have names separated in three parts as First, Middle & Last name in column I, J and, K respectively. B
      Note that random sample names are used in this tutorial, just to explain how to extract values and return them in different columns.

      This is the best solution to consider when you want to split names into “First”, “Middle” and, “Last” but do not want to repeat the previous method every time you do that. You can put the formulas in the cells and the moment reference cell will be updated, names will be extracted automatically in specific columns where you have entered the formulas.

      To extract First Name 
      Select cell I9 
      Enter following formula without quotation “=LEFT(H9,SEARCH(” “,H9)-1)” 
      Hit Enter
        Note that random sample names are used in this tutorial, just to explain how to extract values and return them in different columns.

        And as you can see, the function has extracted the first name from H9 and returned it in cell I9 with “Mayor”. As you know, LEFT function is used to extract leftmost character and SEARCH function returns the position of the specific character it finds first in the string. So, here SEARCH function found the space first at 6th position in the string and to exclude space, we supplied negative value which helped LEFT to pick up only 5 characters.

        To extract Last Name 
        Select K9 cell 
        Enter following formula with double quotes “=TRIM(RIGHT(SUBSTITUTE(H9,” “,REPT(” “,255)),255))” 
        Hit Enter
          Note that random sample names are used in this tutorial, just to explain how to extract values and return them in different columns.

          To extract the last name, we have nested REPT, and SUBSTITUTE function inside RIGHT function. Then at last, we nested all conditions into TRIM to remove all unwanted spaces. Let’s see how all these statements worked together to return the last name.


          REPT is nested inside SUBSTITUTE which repeated single space 255 times, and then SUBSTITUTE replaced single space with 255 spaces in the supplied string. And now each initial is separated by 255 spaces and then RIGHT function is used to extract topmost 255 characters and then TRIM is used to remove all extra spaces and then return with only last initial of the name.

          To extract Middle Name 
          Now select J9 cell 
          Enter following formula without double quotes “=IF(LEN(H9)-LEN(SUBSTITUTE(H9,” “,””))>1,TRIM(SUBSTITUTE(SUBSTITUTE(H9,I9,””),K9,””)),””)” 
          Hit Enter
            Note that random sample names are used in this tutorial, just to explain how to extract values and return them in different columns.

            Update: In case you have to separate middle name which is same as the first or last name, use the following formula in column J instead of the formula mentioned above.=TRIM(MID(H9,LEN(I9)+1,LEN(H9)-LEN(I9)-LEN(K9)))
            Extracting middle initial looks quite difficult as we need to make sure that the function evaluates all conditions and extract only middle name from it. For that, we have nested LEN, SUBSTITUTE, TRIM functions inside IF
            In the first argument of IF function, logical test is checking that the length of the string without space when subtracting from the total length of the string is greater than 1 or not. When the result is TRUE, function execute the TRUE condition where SUBSTITUTE is nested inside SUBSTITUTE. Nested SUBSTITUTE is replacing the value of column I with empty text in column H and then the main SUBSTITUTE is replacing column K’s value with empty text and then to remove not required spaces, TRIM is used. And, in case IF condition does not meet the logical test, then the function would return empty text.

            This is how you can use customize functions & simple methods to extract “First Name”, “Middle Initial” & “Last Name” from cell that contains a full name.

            Propaganda from Space

            February 23, 2013 Add Comment
            If North Korea had a state religion the "Art of Propaganda" would be its bible.

            Propaganda in North Korea is everything. It is spewed from the mouths of teachers from your first year in school all the way to college professors. It comes from every TV and radio station (all state owned), every newspaper and magazine (likewise state owned) and is plastered across the landscape. There are an estimated 50,000 statues and murals dedicated to Kim Il-sung, and Kim Jong-il and they are placed in even the most remote locations. There are also countless signs that are splashed along the sides of hills and mountains, on the sides of roads and peppered throughout city streets. A large number of these are so large they can be seen from space.

            The signs often promote the "strength and prosperity" of the nation or extol the virtues of the country's leadership. From time to time they call on the people to work harder, exceed quotas, raise better crops and obey without question the orders of the Worker's Party of Korea.

            Here are a few examples: "Let us march forward with the tactics of the three generations' revolution!", "Long Live the Juche Ideology!", "What the Party decides, we shall do!", "Unite as with one mind", "Let's make our own rebirth!" and "Let us plant more trees!" among many, many others.

            (click for larger views)

            This one was located at a mine. Each slogan is around 100 feet long and are carved (and painted) into the hillside. I haven't been able to find a translation for this.



            This is an example of the type that can be seen along the hillsides of nearly every town and village. Due to its angle it's impossible to know for sure what it says. The slogan is 400 feet long.


            Military bases are not immune. This sign is 700 feet long. 


            And finally, we have a sign 1,800 feet long with each letter being 200 feet tall. This one was built within the last year along a hillside next to a brand new, massive, hydroelectric plant. It says, "Long live Songun Korea's General Kim Jong Un!". Kim Jong-un is the current leader of the country and the grandson of its founder.

            Here is a site with many more similar signs as well as translations for several of them: http://freekorea.us/north-korea-faq/signs


            --Jacob Bogle, 2/23/2013