The Guide of finishing Name: Adding Two Digit Numbers Missing Number Make 100 Date: Calculate The Missing N Online
If you take an interest in Fill and create a Name: Adding Two Digit Numbers Missing Number Make 100 Date: Calculate The Missing N, heare are the steps you need to follow:
- Hit the "Get Form" Button on this page.
- Wait in a petient way for the upload of your Name: Adding Two Digit Numbers Missing Number Make 100 Date: Calculate The Missing N.
- You can erase, text, sign or highlight as what you want.
- Click "Download" to keep the changes.
A Revolutionary Tool to Edit and Create Name: Adding Two Digit Numbers Missing Number Make 100 Date: Calculate The Missing N


Edit or Convert Your Name: Adding Two Digit Numbers Missing Number Make 100 Date: Calculate The Missing N in Minutes
Get FormHow to Easily Edit Name: Adding Two Digit Numbers Missing Number Make 100 Date: Calculate The Missing N Online
CocoDoc has made it easier for people to Modify their important documents on online website. They can easily Customize through their choices. To know the process of editing PDF document or application across the online platform, you need to follow this stey-by-step guide:
- Open the website of CocoDoc on their device's browser.
- Hit "Edit PDF Online" button and Attach the PDF file from the device without even logging in through an account.
- Edit the PDF file by using this toolbar.
- Once done, they can save the document from the platform.
Once the document is edited using the online platform, you can download the document easily of your choice. CocoDoc promises friendly environment for implementing the PDF documents.
How to Edit and Download Name: Adding Two Digit Numbers Missing Number Make 100 Date: Calculate The Missing N on Windows
Windows users are very common throughout the world. They have met a lot of applications that have offered them services in managing PDF documents. However, they have always missed an important feature within these applications. CocoDoc intends to offer Windows users the ultimate experience of editing their documents across their online interface.
The way of editing a PDF document with CocoDoc is easy. You need to follow these steps.
- Select and Install CocoDoc from your Windows Store.
- Open the software to Select the PDF file from your Windows device and go on editing the document.
- Modify the PDF file with the appropriate toolkit showed at CocoDoc.
- Over completion, Hit "Download" to conserve the changes.
A Guide of Editing Name: Adding Two Digit Numbers Missing Number Make 100 Date: Calculate The Missing N on Mac
CocoDoc has brought an impressive solution for people who own a Mac. It has allowed them to have their documents edited quickly. Mac users can fill PDF forms with the help of the online platform provided by CocoDoc.
For understanding the process of editing document with CocoDoc, you should look across the steps presented as follows:
- Install CocoDoc on you Mac to get started.
- Once the tool is opened, the user can upload their PDF file from the Mac quickly.
- Drag and Drop the file, or choose file by mouse-clicking "Choose File" button and start editing.
- save the file on your device.
Mac users can export their resulting files in various ways. Downloading across devices and adding to cloud storage are all allowed, and they can even share with others through email. They are provided with the opportunity of editting file through multiple ways without downloading any tool within their device.
A Guide of Editing Name: Adding Two Digit Numbers Missing Number Make 100 Date: Calculate The Missing N on G Suite
Google Workplace is a powerful platform that has connected officials of a single workplace in a unique manner. If users want to share file across the platform, they are interconnected in covering all major tasks that can be carried out within a physical workplace.
follow the steps to eidt Name: Adding Two Digit Numbers Missing Number Make 100 Date: Calculate The Missing N on G Suite
- move toward Google Workspace Marketplace and Install CocoDoc add-on.
- Upload the file and click "Open with" in Google Drive.
- Moving forward to edit the document with the CocoDoc present in the PDF editing window.
- When the file is edited at last, save it through the platform.
PDF Editor FAQ
Does anyone have any links to some good computer programming projects for beginners?
There are a plenty of projects for beginners.You can find complete list here : karan/ProjectsSome categories in which above link have projects :NumbersClassic AlgorithmsGraphData StructuresTextNetworkingClassesThreadingWebFilesDatabasesGraphics and MultimediaSecurityNumbersFind PI to the Nth Digit - Enter a number and have the program generate PI up to that many decimal places. Keep a limit to how far the program will go.Find e to the Nth Digit - Just like the previous problem, but with e instead of PI. Enter a number and have the program generate e up to that many decimal places. Keep a limit to how far the program will go.Fibonacci Sequence - Enter a number and have the program generate the Fibonacci sequence to that number or to the Nth number.Prime Factorization - Have the user enter a number and find all Prime Factors (if there are any) and display them.Next Prime Number - Have the program find prime numbers until the user chooses to stop asking for the next one.Find Cost of Tile to Cover W x H Floor - Calculate the total cost of tile it would take to cover a floor plan of width and height, using a cost entered by the user.Mortgage Calculator - Calculate the monthly payments of a fixed term mortgage over given Nth terms at a given interest rate. Also figure out how long it will take the user to pay back the loan. For added complexity, add an option for users to select the compounding interval (Monthly, Weekly, Daily, Continually).Change Return Program - The user enters a cost and then the amount of money given. The program will figure out the change and the number of quarters, dimes, nickels, pennies needed for the change.Binary to Decimal and Back Converter - Develop a converter to convert a decimal number to binary or a binary number to its decimal equivalent.Calculator - A simple calculator to do basic operators. Make it a scientific calculator for added complexity.Unit Converter (temp, currency, volume, mass and more) - Converts various units between one another. The user enters the type of unit being entered, the type of unit they want to convert to and then the value. The program will then make the conversion.Alarm Clock - A simple clock where it plays a sound after X number of minutes/seconds or at a particular time.Distance Between Two Cities - Calculates the distance between two cities and allows the user to specify a unit of distance. This program may require finding coordinates for the cities like latitude and longitude.Credit Card Validator - Takes in a credit card number from a common credit card vendor (Visa, MasterCard, American Express, Discoverer) and validates it to make sure that it is a valid number (look into how credit cards use a checksum).Tax Calculator - Asks the user to enter a cost and either a country or state tax. It then returns the tax plus the total cost with tax.Factorial Finder - The Factorial of a positive integer, n, is defined as the product of the sequence n, n-1, n-2, ...1 and the factorial of zero, 0, is defined as being 1. Solve this using both loops and recursion.Complex Number Algebra - Show addition, multiplication, negation, and inversion of complex numbers in separate functions. (Subtraction and division operations can be made with pairs of these operations.) Print the results for each operation tested.Happy Numbers - A happy number is defined by the following process. Starting with any positive integer, replace the number by the sum of the squares of its digits, and repeat the process until the number equals 1 (where it will stay), or it loops endlessly in a cycle which does not include 1. Those numbers for which this process ends in 1 are happy numbers, while those that do not end in 1 are unhappy numbers. Display an example of your output here. Find first 8 happy numbers.Number Names - Show how to spell out a number in English. You can use a preexisting implementation or roll your own, but you should support inputs up to at least one million (or the maximum value of your language's default bounded integer type, if that's less). Optional: Support for inputs other than positive integers (like zero, negative integers, and floating-point numbers).Coin Flip Simulation - Write some code that simulates flipping a single coin however many times the user decides. The code should record the outcomes and count the number of tails and heads.Limit Calculator - Ask the user to enter f(x) and the limit value, then return the value of the limit statement Optional: Make the calculator capable of supporting infinite limits.Fast Exponentiation - Ask the user to enter 2 integers a and b and output a^b (i.e. pow(a,b)) in O(lg n) time complexity.Classic AlgorithmsCollatz Conjecture - Start with a number n > 1. Find the number of steps it takes to reach one using the following process: If n is even, divide it by 2. If n is odd, multiply it by 3 and add 1.Sorting - Implement two types of sorting algorithms: Merge sort and bubble sort.Closest pair problem - The closest pair of points problem or closest pair problem is a problem of computational geometry: given n points in metric space, find a pair of points with the smallest distance between them.Sieve of Eratosthenes - The sieve of Eratosthenes is one of the most efficient ways to find all of the smaller primes (below 10 million or so).GraphGraph from links - Create a program that will create a graph or network from a series of links.Eulerian Path - Create a program which will take as an input a graph and output either a Eulerian path or a Eulerian cycle, or state that it is not possible. A Eulerian Path starts at one node and traverses every edge of a graph through every node and finishes at another node. A Eulerian cycle is a eulerian Path that starts and finishes at the same node.Connected Graph - Create a program which takes a graph as an input and outputs whether every node is connected or not.Dijkstra’s Algorithm - Create a program that finds the shortest path through a graph using its edges.Minimum Spanning Tree - Create a program which takes a connected, undirected graph with weights and outputs the minimum spanning tree of the graph i.e., a subgraph that is a tree, contains all the vertices, and the sum of its weights is the least possible.Data StructuresInverted index - An Inverted Index is a data structure used to create full text search. Given a set of text files, implement a program to create an inverted index. Also create a user interface to do a search using that inverted index which returns a list of files that contain the query term / terms. The search index can be in memory.TextFizz Buzz - Write a program that prints the numbers from 1 to 100. But for multiples of three print “Fizz” instead of the number and for the multiples of five print “Buzz”. For numbers which are multiples of both three and five print “FizzBuzz”.Reverse a String - Enter a string and the program will reverse it and print it out.Pig Latin - Pig Latin is a game of alterations played on the English language game. To create the Pig Latin form of an English word the initial consonant sound is transposed to the end of the word and an ay is affixed (Ex.: "banana" would yield anana-bay). Read Wikipedia for more information on rules.Count Vowels - Enter a string and the program counts the number of vowels in the text. For added complexity have it report a sum of each vowel found.Check if Palindrome - Checks if the string entered by the user is a palindrome. That is that it reads the same forwards as backwards like “racecar”Count Words in a String - Counts the number of individual words in a string. For added complexity read these strings in from a text file and generate a summary.Text Editor - Notepad style application that can open, edit, and save text documents. Optional: Add syntax highlighting and other features.RSS Feed Creator - Given a link to RSS/Atom Feed, get all posts and display them.Quote Tracker (market symbols etc) - A program which can go out and check the current value of stocks for a list of symbols entered by the user. The user can set how often the stocks are checked. For CLI, show whether the stock has moved up or down. Optional: If GUI, the program can show green up and red down arrows to show which direction the stock value has moved.Guestbook / Journal - A simple application that allows people to add comments or write journal entries. It can allow comments or not and timestamps for all entries. Could also be made into a shout box. Optional: Deploy it on Google App Engine or Heroku or any other PaaS (if possible, of course).Vigenere / Vernam / Ceasar Ciphers - Functions for encrypting and decrypting data messages. Then send them to a friend.Regex Query Tool - A tool that allows the user to enter a text string and then in a separate control enter a regex pattern. It will run the regular expression against the source text and return any matches or flag errors in the regular expression.NetworkingFTP Program - A file transfer program which can transfer files back and forth from a remote web sever.Bandwidth Monitor - A small utility program that tracks how much data you have uploaded and downloaded from the net during the course of your current online session. See if you can find out what periods of the day you use more and less and generate a report or graph that shows it.Port Scanner - Enter an IP address and a port range where the program will then attempt to find open ports on the given computer by connecting to each of them. On any successful connections mark the port as open.Mail Checker (POP3 / IMAP) - The user enters various account information include web server and IP, protocol type (POP3 or IMAP) and the application will check for email at a given interval.Country from IP Lookup - Enter an IP address and find the country that IP is registered in. Optional: Find the Ip automatically.Whois Search Tool - Enter an IP or host address and have it look it up through whois and return the results to you.Site Checker with Time Scheduling - An application that attempts to connect to a website or server every so many minutes or a given time and check if it is up. If it is down, it will notify you by email or by posting a notice on screen.ClassesProduct Inventory Project - Create an application which manages an inventory of products. Create a product class which has a price, id, and quantity on hand. Then create an inventory class which keeps track of various products and can sum up the inventory value.Airline / Hotel Reservation System - Create a reservation system which books airline seats or hotel rooms. It charges various rates for particular sections of the plane or hotel. Example, first class is going to cost more than coach. Hotel rooms have penthouse suites which cost more. Keep track of when rooms will be available and can be scheduled.Company Manager - Create an hierarchy of classes - abstract class Employee and subclasses HourlyEmployee, SalariedEmployee, Manager and Executive. Every one's pay is calculated differently, research a bit about it. After you've established an employee hierarchy, create a Company class that allows you to manage the employees. You should be able to hire, fire and raise employees.Bank Account Manager - Create a class called Account which will be an abstract class for three other classes called CheckingAccount, SavingsAccount and BusinessAccount. Manage credits and debits from these accounts through an ATM style program.Patient / Doctor Scheduler - Create a patient class and a doctor class. Have a doctor that can handle multiple patients and setup a scheduling program where a doctor can only handle 16 patients during an 8 hr work day.Recipe Creator and Manager - Create a recipe class with ingredients and a put them in a recipe manager program that organizes them into categories like deserts, main courses or by ingredients like chicken, beef, soups, pies etc.Image Gallery - Create an image abstract class and then a class that inherits from it for each image type. Put them in a program which displays them in a gallery style format for viewing.Shape Area and Perimeter Classes - Create an abstract class called Shape and then inherit from it other shapes like diamond, rectangle, circle, triangle etc. Then have each class override the area and perimeter functionality to handle each shape type.Flower Shop Ordering To Go - Create a flower shop application which deals in flower objects and use those flower objects in a bouquet object which can then be sold. Keep track of the number of objects and when you may need to order more.Family Tree Creator - Create a class called Person which will have a name, when they were born and when (and if) they died. Allow the user to create these Person classes and put them into a family tree structure. Print out the tree to the screen.ThreadingCreate A Progress Bar for Downloads - Create a progress bar for applications that can keep track of a download in progress. The progress bar will be on a separate thread and will communicate with the main thread using delegates.Bulk Thumbnail Creator - Picture processing can take a bit of time for some transformations. Especially if the image is large. Create an image program which can take hundreds of images and converts them to a specified size in the background thread while you do other things. For added complexity, have one thread handling re-sizing, have another bulk renaming of thumbnails etc.WebPage Scraper - Create an application which connects to a site and pulls out all links, or images, and saves them to a list. Optional: Organize the indexed content and don’t allow duplicates. Have it put the results into an easily searchable index file.Online White Board - Create an application which allows you to draw pictures, write notes and use various colors to flesh out ideas for projects. Optional: Add feature to invite friends to collaborate on a white board online.Get Atomic Time from Internet Clock - This program will get the true atomic time from an atomic time clock on the Internet. Use any one of the atomic clocks returned by a simple Google search.Fetch Current Weather - Get the current weather for a given zip/postal code. Optional: Try locating the user automatically.Scheduled Auto Login and Action - Make an application which logs into a given site on a schedule and invokes a certain action and then logs out. This can be useful for checking web mail, posting regular content, or getting info for other applications and saving it to your computer.E-Card Generator - Make a site that allows people to generate their own little e-cards and send them to other people. Do not use Flash. Use a picture library and perhaps insightful mottos or quotes.Content Management System - Create a content management system (CMS) like Joomla, Drupal, PHP Nuke etc. Start small. Optional: Allow for the addition of modules/addons.Web Board (Forum) - Create a forum for you and your buddies to post, administer and share thoughts and ideas.CAPTCHA Maker - Ever see those images with letters a numbers when you signup for a service and then asks you to enter what you see? It keeps web bots from automatically signing up and spamming. Try creating one yourself for online forms.FilesQuiz Maker - Make an application which takes various questions from a file, picked randomly, and puts together a quiz for students. Each quiz can be different and then reads a key to grade the quizzes.Sort Excel/CSV File Utility - Reads a file of records, sorts them, and then writes them back to the file. Allow the user to choose various sort style and sorting based on a particular field.Create Zip File Maker - The user enters various files from different directories and the program zips them up into a zip file. Optional: Apply actual compression to the files. Start with Huffman Algorithm.PDF Generator - An application which can read in a text file, html file or some other file and generates a PDF file out of it. Great for a web based service where the user uploads the file and the program returns a PDF of the file. Optional: Deploy on GAE or Heroku if possible.Mp3 Tagger - Modify and add ID3v1 tags to MP3 files. See if you can also add in the album art into the MP3 file’s header as well as other ID3v2 tags.Code Snippet Manager - Another utility program that allows coders to put in functions, classes or other tidbits to save for use later. Organized by the type of snippet or language the coder can quickly look up code. Optional: For extra practice try adding syntax highlighting based on the language.DatabasesSQL Query Analyzer - A utility application which a user can enter a query and have it run against a local database and look for ways to make it more efficient.Remote SQL Tool - A utility that can execute queries on remote servers from your local computer across the Internet. It should take in a remote host, user name and password, run the query and return the results.Report Generator - Create a utility that generates a report based on some tables in a database. Generates a sales reports based on the order/order details tables or sums up the days current database activity.Event Scheduler and Calendar - Make an application which allows the user to enter a date and time of an event, event notes and then schedule those events on a calendar. The user can then browse the calendar or search the calendar for specific events. Optional: Allow the application to create re-occurrence events that reoccur every day, week, month, year etc.Budget Tracker - Write an application that keeps track of a household’s budget. The user can add expenses, income, and recurring costs to find out how much they are saving or losing over a period of time. Optional: Allow the user to specify a date range and see the net flow of money in and out of the house budget for that time period.TV Show Tracker - Got a favorite show you don’t want to miss? Don’t have a PVR or want to be able to find the show to then PVR it later? Make an application which can search various online TV Guide sites, locate the shows/times/channels and add them to a database application. The database/website then can send you email reminders that a show is about to start and which channel it will be on.Travel Planner System - Make a system that allows users to put together their own little travel itinerary and keep track of the airline / hotel arrangements, points of interest, budget and schedule.Graphics and MultimediaSlide Show - Make an application that shows various pictures in a slide show format. Optional: Try adding various effects like fade in/out, star wipe and window blinds transitions.Stream Video from Online - Try to create your own online streaming video player.Mp3 Player - A simple program for playing your favorite music files. Add features you think are missing from your favorite music player.Watermarking Application - Have some pictures you want copyright protected? Add your own logo or text lightly across the background so that no one can simply steal your graphics off your site. Make a program that will add this watermark to the picture. Optional: Use threading to process multiple images simultaneously.Turtle Graphics - This is a common project where you create a floor of 20 x 20 squares. Using various commands you tell a turtle to draw a line on the floor. You have move forward, left or right, lift or drop pen etc. Do a search online for "Turtle Graphics" for more information. Optional: Allow the program to read in the list of commands from a file.GIF Creator A program that puts together multiple images (PNGs, JPGs, TIFFs) to make a smooth GIF that can be exported. Optional: Make the program convert small video files to GIFs as well.SecurityCaesar cipher - Implement a Caesar cipher, both encoding and decoding. The key is an integer from 1 to 25. This cipher rotates the letters of the alphabet (A to Z). The encoding replaces each letter with the 1st to 25th next letter in the alphabet (wrapping Z to A). So key 2 encrypts "HI" to "JK", but key 20 encrypts "HI" to "BC". This simple "monoalphabetic substitution cipher" provides almost no security, because an attacker who has the encoded message can either use frequency analysis to guess the key, or just try all 25 keys.
What are some facts about India that Indians are generally unaware of?
PĀṆINI (4TH CENTURY BC)Briefly put: No Pāṇini, no software industry.Perhaps some may remember Pāṇini as the person who authored the most definitive treatise on Sanskrit Grammar – the Ashtadhyayi. What many do not know however, that Pāṇini was infact not only a grammarian but also a linguist, the foremost in the world at that. Why is this important? Because, again, he was not only the foremost linguist, but also the foremost mathematical linguist. So what? Well, Pāṇini’s rules for framing mathematical problems in simple phrases have been pivotal in the framing of a language called ALGOL 60, the 1960s precursor to modern day programming languages like Pascal and and the C family!!When Pāṇini’s work became known in Europe in the 19th century, many American and British linguists drew heavily from his ideas on structuralism, by which a language can be reproduced in a definitive form every single time an iteration of an operation is required. All the greats like Franz Bopp, Leonard Broomfeld and others extensively discussed and debated his rules for structural frameworks on languages. Along the way came a young man, Noam Chomsky, today regarded as one of the foremost intellectuals in the world, who also came under Pāṇini’s spell. So did another named Alan Turing.Yes, this is what the dude said regarding objects and modifiers in a sentence in any programmable language.....in 500 BC.One thing led to another, and soon enough a new comprehensive computing language was born: the ALGOL 60, characterized as procedural, imperative and structured, which has been the predecessor of all “ALGOL like languages” which include Pascal, Ada, the C language family and so on. Yes, C, C+, C++ and et al!! There is even talk of renaming the Backus – Naur form, the original definition of a programmable language as defined by Pāṇini, using reiterative constraints on strings, as the Pāṇini – Backus form as it rightfully should be known!!TIPU SULTAN (1750 – 1799)Briefly put: No Tipu Sultan. No World War 1.Which Indian does not know Tipu Sultan? The brave Mysore king, the championer of India’s freedom, the magnificent warrior,and the lion hearted king. What people little know is that he was also India’s first Missile Man, much before the latter one, but equally brilliant. Tipu Sultan had an all consuming passion for the science of rocketry (they didn’t put it in the mega serial, so don’t rack your brains).Tipu talks at length about his tryst with rocketry in the military manual he wrote, the Fathul Mujahidin. Tipu distributed copies of his military manual to all of his officers, who included divisions of “Cushoons” or battalions of missile launchers. He also defined in the manual, a multiple rocket launcher (much like a musical organ) that could launch up to 10 rockets. Rockets could be of various sizes, but usually consisted of a tube of soft hammered iron about 8 inches (20 cm) long and 1.5 to 3 in (3.8 to 7.6 cm) in diameter, closed at one end and strapped to a shaft of bamboo about 4 ft (1 m) long. The iron tube acted as a combustion chamber and contained well packed black powder propellant. A rocket carrying about one pound of powder could travel almost 1,000 yards. In contrast, rockets in Europe, not being iron cased, could not take large chamber pressures and as a consequence, were not capable of reaching distances anywhere near as great.In the famous Battle of Seringapatnam, British troops were initially greeted with salvoes of 2000 high precision rockets raining down on their troops, which led to some interesting observations on part of the Englishmen. Anyhow, among them was one William Congreve, who being the smart aleck that he was, quietly got to lay his hands on one rocket (unused, fortunately for him).Political cartoon by James Gillray making fun of Lord Cornwallis for retreat from Seringapatam battle owing to Tipu's rockets.Once back in England, by demonstrating remarkable skills of reverse engineering, he awoke the world to the use of “Congreve rockets”, which were then inducted into the armies of all major nations. These Congreve rockets played the decisive role in not only the Napoleonic Wars, but also the 1812 American war, the Crimean War and so on. Basically, they played a major part in all those wars which resulted in Britain becoming the most powerful nation on earth, which led to the industrial revolution, which in turn led to the arms race, which in turn led to world war, which in turn led to today. Thanks Tipu for making our day!!Interesting Trivia bit: It was the light from these very “Congreve rockets” in the 1812 American War which finds mention in America’s National Anthem, the Star Spangled Banner as “”And the rockets’ red glare, the bombs bursting in air”.JAGDISH CHANDRA BOSE (1858 – 1937)Briefly put: No J.C.Bose, no communications.The odds this man overcame to achieve what he did were substantial to say the least. His thinking is now accepted to have been at least 60 years ahead of his time. And for what? Let’s see.Jagadish Chandra Bose, a true blue Bengali babu was born in Munshiganj in present day Bangladesh and raised in Calcutta. As a student with varied interests (he would later on become a leading authorirty on subjects as diverse as Physics, Plant Biology, Linguistics, Bengali Literature, Archaeology and Popular Science Fiction), Jagadish Chandra Bose at various points in his early student life had studied at University of London, University of Cambridge and St. Xavier’s Calcutta. Given the fact that the British pretty much didn’t like Indian presence in academia (they had good foresight, those Britishers), its an achievement in itself that Bose became a Professor of Physics at the Presidency College, Calcutta.What is even more remarkable is the fact that Bose was the first person in the world to successfully demonstrate remote wireless signalling in November 1894 at Kolkata’s town hall. Yes, without him, no radios or cell phones would have been possible today. Moreover, Bose was working unpaid at Presidency College (in protest against the low salary offered to Indian professors as compared to others), without a laboratory, in a small 24-square-foot room, with an untrained tinsmith as his sole assistant.Despite such odds, Bose quickly went on to publish two papers on Polarisation and Diffraction of waves. In those days wave receievers or detectors were termed as coherers. In 1895 the newspaper “The Englishman” noted, ”Should Professor Bose succeed in perfecting and patenting his ‘Coherer’, we may in time see the whole system of coast lighting throughout the navigable world revolutionised by a Bengali scientist working single handed in Presidency College Laboratory.”Bose at the Royal Institute, London during a lec-demIn May 1897, two years after Bose’s public demonstration in Kolkata, Marconi conducted his own wireless signalling experiment on Salisbury Plain and in 1909 was awarded the Nobel Prize for the same, 14 years after Bose’s pioneering research. Marconi’s experiments would not have been possible if not for Bose’s initial research. Moreover, Bose is also the inventor of several components now commonplace in all wireless communications equipment from radars to radios like semi-conductor crystal wave detectors and so on. Sir Nevill Mott, Nobel Laureate in 1977 for his own contributions to solid-state electronics, remarked that “J.C. Bose was at least 60 years ahead of his time” and “In fact, he had anticipated the existence of P-type and N-type semiconductors.”Then why doesn’t the world know him as well as Marconi? The reason, it turns out, is that Bose (like a true Bengali babu), had little patience with capitalist ideas like patents. He publicly expressed his disdain for patenting inventions, arguing that the greater common good is all that mattered. Marconi, on the other side, happily harbored no such misgivings, and the rest as they say is history. As we shall see, Bose is not the only one to be ignored by the Nobel Society in their annual awards.NARINDER SINGH KAPANY (BORN 1927)Briefly Put: No Narinder, no internet, no laser surgeries, no high speed communications.He is regarded as the founding father of Fibre Optics. Heck, he even coined the term Fibre Optics!! His groundbreaking research led to wide ranging applications in not just high speed communications, but also medical imaging from OFC networks to endoscopies to laser surgery. Born in 1927 in Moga, Punjab, he graduated from Agra University and went on to his Ph.D at Imperial College, London.There he became the first person in the world to demonstrate that light can travel in bent glass fibres. His research paper entitled “A Flexible Fiberscope, using Static Scanning” appeared in scientific journal Nature in its January 2, 1954 issue and paved the way for instruments such as endoscopes and laser probes. Kapany followed up this first paper with one published in Optica Actain February 1955 entitled ‘Transparent Fibres for the Transmission of Optical Images’. As an author and lecturer, Kapany has published over 100 scientific papers and four books on opto-electronics. He has lectured to various national and international scientific societies. His popular article on Fibre optics in Scientific American in 1960 established the new term (Fibre optics); the article constitutes a reference point for the subject even today. In November 1999, Fortune magazine published profiles of seven people who have greatly influenced life in the twentieth century but are unsung heroes. Kapany was one of them.Dr. Narinder S. Kapany in lab in 1950sSo when the 2009 Nobel for Physics went to Charles Kao for the discovery of Fibre Optics, the scientific community was stunned at the exclusion of Kapany. True, Kao also had made tremendous strides in the field, but his work was only the successor of the ground breaking research undertaken by Kapany, and built upon it. Once again, due to the blatant refusal to award Indians a Nobel (as has been the case with George Sudarshan, Satyendranath Bose, Jagadish Chandra Bose etc.), Kapany remains bereft of the recognition he so deserves.Some other interesting things i felt like sharing:1. A floating post officeIndia has the largest postal network in the world with over 1, 55,015 post offices. A single post office on an average serves a population of 7,175 people. The floating post office in Dal Lake, Srinagar, was inaugurated in August 2011.Source: trendingpost2. Kumbh Mela gathering visible from spaceThe 2011 Kumbh Mela was the largest gathering of people with over 75 million pilgrims. The gathering was so huge that the crowd was visible from space.Source: Wordpress3. The wettest inhabited place in the worldMawsynram, a village on the Khasi Hills, Meghalaya, receives the highest recorded average rainfall in the world. Cherrapunji, also a part of Meghalaya, holds the record for the most rainfall in the calendar year of 1861.Source: Dailymail4. Bandra Worli Sealink has steel wires equal to the earth's circumferenceIt took a total of 2,57,00,000 man hours for completion and also weighs as much as 50,000 African elephants. A true engineering and architectural marvel.Source: Wikipedia5. The highest cricket ground in the worldAt an altitude of 2,444 meters, the Chail Cricket Ground in Chail, Himachal Pradesh, is the highest in the world. It was built in 1893 and is a part of the Chail Military School.Source: iseeindia6. Shampooing is an Indian conceptShampoo was invented in India, not the commercial liquid ones but the method by use of herbs. The word 'shampoo' itself has been derived from the Sanskrit word champu, which means to massage.Source: Huffington post7. The Indian national Kabaddi team has won all World CupsIndia has won all 5 men's Kabaddi World Cups held till now and have been undefeated throughout these tournaments. The Indian women's team has also won all Kabaddi World Cups held till date.Source: Rediff8. Science day in Switzerland is dedicated to Ex-Indian President, APJ Abdul KalamThe father of India's missile programme had visited Switzerland back in 2006. Upon his arrival, Switzerland declared May 26th as Science Day.Source: hdwallpaperswala9. India's first President only took 50% of his salaryWhen Dr Rajendra Prasad was appointed the President of India, he only took 50% of his salary, claiming he did not require more than that. Towards the end of his 12-year tenure he only took 25% of his salary. The salary of the President was Rs 10,000 back then.Source: iloveindia10. India has a spa just for elephantsElephants receive baths, massages and even food at the Punnathoor Cotta Elephant Yard Rejuvenation Centre in Kerala. Now that's a BIG step for the country.Source: National Geographic11. India is the world's second-largest English speaking countryIndia is second only to the USA when it comes to speaking English with around 125 million people speaking the language, which is only 10% of our population. This is expected to grow by quite a margin in the coming years.Source: IBNlive12. Largest number of vegetarians in the worldBe it because of religious reasons or personal choices or both, around 20-40% of Indians are vegetarians, making it the largest vegetarian-friendly country in the world.Source: blogspot13. The world's largest producer of milkIndia recently overtook the European Union with production reaching over 132.4m tonnes in 2014.Source: flickr14. The first country to consume sugarIndia was the first country to develop extraction and purifying techniques of sugar. Many visitors from abroad learnt the refining and cultivation of sugar from us.Source: business-standard15. The human calculatorShakuntla Devi was given this title after she demonstrated the calculation of two 13 digit numbers: 7,686,369,774,870 × 2,465,099,745,779 which were picked at random. She answered correctly within 28 seconds.Source: heliosmediadesign16. Rabindranath Tagore also wrote the national anthem for BangladeshRabindranath Tagore is credited not only for writing the Indian national anthem,Jana Gana Mana, but the Bangladeshi national anthem, Amar Sonar Bangla, as well. He was also offered knighthood by the British but refused the honour after the Jalianwala Bagh massacre.Source: mindpodnetwork17. Dhyan Chand was offered German citizenshipAfter defeating Germany 8-1 in the 1936 Berlin Olympics, Major Dhyan Chand, the wizard of hockey, was summoned by Hitler. He was promised German citizenship, a high post in the German military and the chance to play for the German national side. Dhyan Chand however declined the offer.Source: Wikipedia18. Diamonds were first mined in IndiaInitially, diamonds were only found in the alluvial deposits in Guntur and Krishna District of the Krishna River Delta. Until diamonds were found in Brazil during the 18th century, India led the world in diamond production.Source: Indiaspend19. A special polling station is set up for a lone voter in the middle of Gir ForestMahant Bharatdas Darshandas has been voting since 2004 and during every election since then, a special polling booth is set up exclusively for him as he is the only voter from Banej in Gir forest.Source: BBC20. Snakes and Ladders originated in IndiaEarlier known as Moksha Patamu, the game was initially invented as a moral lesson about karma to be taught to children. It was later commercialized and has become one of the most popular board games in the world.21. Kapil Dev once booted out Dawood Ibrahim from the Indian cricket dressing roomDawood had access to the Indian dressing room and once tried to bribe the players. Kapil Dev, upon seeing suited men in the room, got furious and chucked them out saying, "chal bahar nikal."Source: Cricket Country22. Daenerys' dragons were 'Made in India'!A subsidiary of Prana Studios in Mumbai is responsible for modelling Daenerys Targaryen's dragons. Well, "Make in India" is working well. (wink!)Source: Vignette23. India has an ice hockey team....and it is registered with the International Ice Hockey Federation!Source: SportsKeeda24. Kerala consumes the highest quantity of liquor among all Indian statesIt's not Punjab, it's 'God's own country'!Source: e-Vartha25. Only 3% of the Indian population pays taxesLargely because agriculture is tax-free and a large chunk of the economy consists of unorganized labour, for which it's hard to collect taxes.Source: Answers26. There is a radioactive device atop the HimalayasAn expedition, led by Captain Mohan Singh Kohli and CIA expert Kenneth Conboy, placed a nuclear device atop the Himalayas to monitor Chinese nuclear tests in the '60s. The device is still missing as repeated searches couldn't retrieve it!Source: Emilio Silvera27. India drinks 50% of the world's whiskey produceMost of the whiskey is produced by UB India, the world's largest whiskey company by volume.Source: Independent28. Hair is a ₹2500 crore business in India!Buying and selling hair is a huge business in India. Tirumala Tirupati Devasthanams even holds an e-auction for the hair it tonsures off its devotees!Source: Img Arcade29. India has more people than the entire population of the Western HemisphereSource: Terra Color30. The iconic James Bond theme was inspired from the song 'Good sign Bad sign', sung by Indian characters in the novel 'A House for Mr. Biswas.'Source: Hippo Wallpapers31. GoAir wanted more female attendants to 'save on fuel'Women weigh less than men, according to GoAir's staff, which is why they thought having more female attendants could help save up on fuel.Source: Telegraph32. There's a Taj Mahal in Bangladesh tooThere is a scaled copy of Shah Jahan's Taj Mahal called 'Taj Mahal Bangladesh' in Dhaka.Source: Wikipedia33. Maneka Gandhi featured in a towel adThe ‘Towels so good you want to wear them’ ad featured Maneka Gandhi in it. It was taken down soon!Source: Imgur34. Bear Grylls wanted to join the Indian ArmyAfter leaving school, he considered joining the Indian Army and also hiked in the mountains of Sikkim and West Bengal.Source: Dailymotion35. Australian cricketer Stuart Clarke is of Indian originHis father is from Chennai and mother hails from Bangalore.Source: Sportzwiki36. India has an experimental township that has its own economyAuroville in Tamil Nadu, does not have religion, politics or physical currency.Source: Taringa37. Mohun Bagan is older than most European clubsFormed in 1889, it is older than European giants A.C. Milan, Manchester United, Liverpool etc. It also played a match in 1977 against the New York Cosmos, consisting of star players Pele and Franz Beckenbauer.Source: Goal38. There are more phones in India than there are toiletsSource: BBC39. Samosa is actually from the Middle EastSource: Spice Catering40. India has a 'village of twins'Kodinhi in Kerala has 250 sets of twins officially registered. Experts also estimate that the figure could rise to 350.Source: Facts Legend41. An average Indian needs to work for almost 6 hours to afford a 'Big Mac'!Source: Business Insider42. "Anal" is a language spoken by 23,000 people in India and BurmaSource: Meme Generator43. The "Love Commandos" protects inter-caste couples from harassmentThese vigilantes provides protection to inter-caste couples who fall in love.44. The Satiyaa community from Rajasthan celebrates deaths and mourns birthsBirth = Grief, Death = Happiness for this tribeSource: National Geographic45. Indian housewives hold 11% of the world's goldThat is more gold than the reserves of Germany, IMF, The U.S. and Switzerland put together!But still, not as much as this guy!Source: Daily MailSource: 4 Unknown Indians whose Work has Changed the World Profoundly25 Interesting Facts On India That You Had No Idea Abouthttps://www.scoopwhoop.com/25-Interesting-Facts-About-India/?ref=mlt#.eog719w7e
Is there any evidence that Otto Warmbier was the embodiment of Christ's return?
Otto was born on December 12, 1994 one day after Philippine Air Lines Flight 434 was bombed by the WTC bomber Ramsi Yousef killing Haruki Ikegami.Having failed to destroy the entire plane, Yousef and his Cebu-based terror cell began a chilling plot to use suicide pilots against major landmarks inside the United States. As many as 12 planes were targeted. This plot was suspended after an accidental fire alerted authorities to the cell’s location but the plot re-emerged in Hamburg Germany then inside the United States with the enrollment of the 9/11 plotters in U.S. flight schools.I appealed to stop the airline plots in the summers of 2001 and 2006. Key to my pleas was having lived in Asia at the time of Haruki Ikegami’s death and Otto Warmbier’s birth. Years earlier, my senior thesis reflected on the efforts of Senator Harrison “Jack” Schmitt to stop states from using force against civilian airliners. This was not easy information to find. No newspaper or magazine covered his efforts. Out of curiosity I investigated the Congressional Record to find anything related to the government’s reaction to the Soviet downing of Flight 902. I hit the jackpot.What I read in those pages gripped me as if reading a suspense novel. The fact I had to piece together the buried parts from multiple volumes spanning a few weeks made the challenge more exciting and the results more memorable.Thanks to the former Apollo 17 astronaut’s (Schmitt) relentless efforts to condemn the attack despite repeated opposition, I was able to see the event of Ikegami’s death in its proper historical context - akin to the Soviet downing of Korean Air Lines Flight 902 in 1978. Only two were killed due to a remarkable emergency landing on a frozen lake by the Korean pilots. It became to Schmitt a call to action to prevent a future tragedy. The very day that this likeness and understanding occurred - came the very day Otto Warmbier was born. At the time my wife and I owned Alamo, a language school in Okayama, Japan. We had subscriptions to the English versions of a few Japanese newspapers. I re-read every detail.Life, experience and wisdom are passed along from generation to generation through a combination of procreation and education.I gave thought at that moment on how time and distance separate all of us. It was my job as a teacher at Alamo to bridge this distance by making learning fun and memorable but also relevant and even lifesaving. I recalled Harrison Schmidt’s reaction to the downing of a Korean airline flight in 1978, He expressed the view that America should not simply offer a collective sigh of relief that no Americans died in the cannon bursts and forced landing on a frozen lake; he felt we needed to consider the very real possibility of a more catastrophic result unless we speak out.I imagined a child born in Ohio, our hero, and our responsibility to that child to make sure such a massive plot does not reach America’s shores. The same day I had that thought was the same day Otto Warmbier was born - on 12 - 12 - 1994.At this time, radical Islamists had not only invaded Japan by bombing a plane over her territory but a year prior had infiltrated and killed a Japanese translator of Salman Rushdie’s “Satanic Verses”. This was serious business especially in view of the security arrangement between the US and Japan following the war.The mystery of Otto Warmbier’s harsh sentence can partially be explained by North Korea’s aversion to outsiders. Except we know that the leader of Korea himself has embraced certain celebrity outsiders such as basketball legend Dennis Rodman.North Korea took elaborate pains to build a hotel with a “basement” or “missing floor” on which they filled with propaganda murals. The elevators do not stop on this floor. This low-ceiling floor is however accessible by stairwell and many hotel visitors have taken this “underground” tour of the 5th floor without incident. It is a sad commentary on the West’s journalistic standards that they would characterize this unusual floor as “off-limits” to foreigners when it became a well-known draw for adventurous hotel guests simply because of its mysterious-by-design nature.What North Korea didn’t count on was that the spirit of Christ himself embodied in the person of Otto Frederick Warmbier would pay a visit to their official hotel and its famous missing floor.What evidence is there that Otto was the returning spirit of Christ?1.) In video footage the North Koreans produced purportedly showing Otto removing a poster from a wall there is a moving shadow on the lower right side which hints that there are unseen hands at work.2.) Warmbier begged for forgiveness for what the North Koreans considered a major violation and asked to be reunited with his family. This is another sign that Christ’s spirit is present and that he has returned not merely as a shadowy movement in a grainy video or an image on a brick or on a shroud but in the flesh in the person of Otto Frederick Warmbier.3.) Otto Frederick Warmbier was the last person anyone expected to wind up in trouble with the authorities. His last days free show a respectful and loving person enjoying himself with friends.4.) The name “OTTO WARMBIER” in Lord Kek’s Gematria has a value of 31 and can also be divided into 6 for OTTO and 25 for WARMBIER. A letter’s value is determined by the number of strokes required to form it. Any angular bend or turn in opposite direction is treated as a separate stroke. Sweeping curves with no angles or turns in opposite direction are considered as one stroke. Capital letters only were selected however some extraneous strokes were left out if they are commonly left out in a quick-paced notation. The main letters affected are I and J. I’ve noticed more recent trends teach students the capital letters using this minimalist approach. For example:From this lettering style emerges…In order from A-Z, the most commonly recurring pairs are 31 (4 times - BC, HI, NO, RS) and 12 (4 times). Appearing twice is 124 (CDE, UVW). 124 is also the product of 31 x 4. The sum of all values A thru Z is 61. Interestingly, these numbers match the Spiral of Life's basic structure. 61 is the final prime of the spiral’s prime column and lies at the head of the model. The total sum of the Spiral of Life’s column primes (2, 3, 5, 11, 13, 17, 23, 29, 37, 47 and 61) is 248 matching both the appearance of 124 (twice) and 31 (4 times). At the location of the 77th interval an orbit may be reached and after 124 intervals the orbit has arrived full circle to the location where a new generation may emerge at 1. The Lewin orbit from 77 to 125 is 48 intervals matching the sum of the 4 locations where '12' appears (at CD, OP, ST and UV). Underscoring the theme of return and regeneration we find that '33' appears at beginning in AB and not again until YZ to close out the chart.The cube sum of all values A thru Z is 441 or 21^2 matching the cube sum of the first six intervals of the Spiral of Life. At interval 6 a highly composite, southern-headed line of Fibonacci-patterned multiples of 6 emerges (6, 12, 18, 30, 48, 78, 126) reaching the location where at interval 2 a new wave of spin and expansion may begin.Twenty-one occurs only once on the chart (TU) completing itself at the 21st letter of the alphabet U. Peeling (subtracting in value) the cube sum of the like values at both ends (AB and YZ) results in 333 since 441 - (3^3 x 4) = 333. Twenty-one is a sum value of consecutive letters A - H. However the only consecutive letters to also produce consecutive sums of 21 are J thru N.9 letters - J thru R9 letters - K thru S10 letters - L thru U10 letters - M thru V10 letters - N thru WThe sum of the number of letter values needed to produce this consecutive results is 48 matching the number of intervals of the Lewin orbit of the Spiral of Life (125 - 77). Perhaps it is not surprising that by leaps and bounds the most common starting and ending letters of a boy’s first name are J and N.Otto’s initials OFW are represented by 1–3–4. The only flow of consecutive values matching this occur in a reverse pattern with letters MNO or 4–3–1. There are exactly no words that begin with this unusual combination of letters the closest being mnemonic, a memory agent, a mnemonic operator. Otto Warmbier possessed a powerful memory, a brilliant mind and a caring soul which did not belong in a prison cell. The closest sound-alike to MNO is minnow recalling the name of the fictional boat, the SS Minnow, which carried the crew of Gilligan’s Island to safety through a massive storm. The name resurfaced in a made-for-TV spin-off. After being rescued the crew go for a reunion cruise on the Minnow II only to find themselves caught in another storm and landing again on a deserted island which they only realize must be their prior home when Gilligan discovers a plank with the word “Minnow I” on it. In both cases the vessel is without fault; it has done its job; the Minnow has carried them to safety through a terrible storm.SS MinnowSS Minnow IIInterestingly (the natural result of moving through the chart’s columns in reverse) results in letters resembling O-N-W notwithstanding the fact ’N’ upside-down produces a reversed ’N’.Some words formed by these letters are OWN and NOW and WON.OWN and NOW impart a message of taking responsibility for the symbols we use underscoring the importance of using language and other symbols in a skillful and responsible manner. My experience in Japan running Alamo had given me my first taste of ownership with all the responsibilities which come along with it. WON seems to imply these symbols came as a gift or reward which makes sense in that those who are skillful in the use of symbols whether in speech or writing are said to be ‘gifted' and are often rewarded for their performance.Of the three letters seen in reverse N is the only new letter added to the mix. It is interesting to note that historically Jesus was known as Jesus of Nazareth. Of course Otto was not from Nazareth or even Nebraska but from Wyoming, Ohio - W-O. So where does the letter 'N' figure in the name of Otto Warmbier?Let's look at the meaning of Nazareth in the context of the story of Jesus Christ. The first mention of Nazareth occurred in John 1:46 when Nathanael asks Phillip, “Can anything good come from Nazareth?” The question suggests Nazareth was not a particularly well-known or esteemed place and in fact was so obscure it was likely derided by people from the places with famous names. So coming from this place takes on the meaning of being ‘from nowhere’.Warmbier’s sad fate had everything to do with the fact he was not a famous person from a famous place. There is a reason the North Korean dictator leader looks up to Dennis Rodman beyond the fact he is quite tall. He is a celebrity. The test we faced after Warmbier’s arrest was in convincing Kim and North Korea that Otto Warmbier was worthy of respect and forgiveness. We failed that test. But the challenge is still with us. We must convince one another of our inherent worthiness to the extent such atrocities and abuses of power do not continue to repeat themselves.Through the praise of Otto Warmbier from Wyoming, Ohio we encourage the same acts of grace, humility, courage, kindness and fun which Otto undertook while living. Combining his initials (OW) with the initials of his hometown (WO) to form OWWO - we see a pattern emphasizing the idea of return, the pronunciation of which resembles a start of surprise, “Whoa!” or “Oh, wow!”In summary, if we combine the elements of deliverance through a storm aboard the SS Minnow with the element of celebration in “won” we can see the words Minnesota and won converging from opposite sides to spell “minnow”. A little-known and underappreciated story is that part of the 9/11 plot was foiled in Minnesota. After I pleaded to look in flight schools to stop the airline plotters two future hijackers were identified but only one was detained, Moussaui, in Minnesota.The other future plotter arose suspicion but his English was too poor to ferret out any unusual and evasive replies. He was marked as needing further investigation. The female FBI agent in charge of the investigation decided against looking in Moussaui’s bags and computer and made arrangements with the U.S. Marshall’s office to return Moussaui France when the 9/11 attack occurred. Because plans to return Moussaui were already made before the attack, it seems likely that the special type of search warrant from DC which was applied for was only a formality as Moussaui would be escorted to France soon.Hard feelings after the loss of Al Gore to George Bush were particularly strong in the legal profession and among women. The on-air tirades against George Bush by lawyer and talk-show host Gloria Allred were revealed as a motivation for appeals to look in flight schools for the plotters. It seemed to me that not every attorney and investigator wanted this plot to be stopped and I suspected the more left-leaning attorneys and agents would be more careless and derelict if not outright dangerous.The most heinous public expression of hate to emerge against Otto Warmbier from within the United States came from a female professor at the University of Delaware named Katherine Dettwyler who maintained that Otto Warmbier “got exactly what he deserved.” After Hillary Clinton lost the election to Donald Trump pop icon Madonna admitted to wanting to “blow up the White House” in retaliation.5.) The North Korean National Emblem was created in 1948 but underwent some minor changes in 1993. The white water lines representing the water flowing through the hydroelectric plant were significantly reduced from 40 to 6 while the blue lines remained the same at 25 for a total of 31 lines. The emblem and her changes foretell the rise of Otto Warmbier and the healing and transformation He will bring to North Korea as the name Otto Warmbier is itself divided into 6 strokes for Otto and 25 strokes for Warmbier mirroring the count of the water’s white and blue lines.The North Korean national emblem and an image of Wonder Woman:Note the similarities. Both have a single star at top. Wonder Woman is sporting 13 stars while the longest strands of grain on the emblem are thirteen apiece. The grains are grouped on each side as follows - 9, 31 and 24 for a total of 64 grains. 64 is the number of divisors of 31,416. 31,416 is a key measure of the Spiral of Life’s constituent parts and closely related to Pi. It is 77 * 4 * 102 where 4 represents the centered interval of the object and 77 its southernmost extremity and 102 the northern extremity of the Lewin orbit.The orbit is a pathway which is in sync with the ever-expanding pathway at their closest point of return - their perigee. What emerges is a location of equilibrium where a new expansion is likely to come forth.64 as a measure of divisibility.In the search of the hidden primes in the decimal expansion of Pi I came across an unusual find in her 9th and 11th decimal expansions - they are both highly composite in comparison with her surrounding expansions. But what I stumbled upon next was far more interesting than this coincidence. I discovered through rounding up Pi’s 6-digit expansion the remarkable compositeness of the five digit 31416. Astonishingly her number of divisors - 64 - perfectly matching the combined total of divisors in her highly composite 9th and 11th decimal expansion. I made the case for rounding up Pi in accordance with the rules when investigating properties of the different lengths of decimal expansion.The number of Wonder Woman’s stars in the image above - 13 - are a mirror reflection of 31 - the number of lines of water flowing through the power station. Together the two symbols form the initials O.W. for Otto Warmbier. Within the tower’s arms one can find the letter ‘W” very easily while the letter is more obscured within the overlaps of the red ribbon.As many as 49 ‘W’s can be found within the Warmbier Tower of Power.5.) The main structure holding the power lines in the emblem has 17 locations where connecting brace lines meet the two sides. The first is unseen behind the red ribbon and the last is where the lines meet up at the very top.An image of a man appeared on the 31st layer of brick in my home’s fireplace mantle when I was 17. The symbol for Pi appeared on the 3rd layer. The image of Pi and man led to a long investigation and the discovery of the regenerating model of time and space called the Spiral of Life.Left: An image of a man appears on the 31st layer of brick. Right: artist’s concept (image taken Sept 10, 2011 17:00)At her core the numbers 9, 3 and 5 align vertically followed south by 11 and 17. Interestingly the arrangement seems to suggest (when viewing the 11 as an equals sign) that 9+3+5 = 17, a true statement. I was astonished that 31 would turn out to be such an important factor in the Spiral of Life model. I should probably mention that in the years before I saw the odd images I had an epiphany while plotting parabolas in a math class. It was at this time that I began work on an alternate model to the Cartesian co-ordinate system, a model which led to the discovery of the regenerating timepiece called Spiral 935; The Holy Grail Spiral of Life.6.) As mentioned earlier the number 31 first came to my attention when an image of a man appeared on the 31st layer of brick in my home’s fireplace mantle. A symbol for Pi also exists on this fireplace.Pi appears in many interesting ways in the Spiral of Life. For example, imagine dividing up the vertices of the Lewin orbit into two groups and setting them as a fraction. In addition to the four equidistant vertices 77, 89, 101 and 113 we will also need the grip interval 88. Imagine a bow and arrow stretched back and ready for release. The lower nock is 77, the grip 88, the arrow rest 89, the upper nock 101 and the serving (where arrow and string are pulled back) is 113. Add up the first four (bow) numbers and divide them by the serving and and you get 355/113. That’s 3.14159292.The first four intervals of the Lewin orbit are 77 + 78 + 79 + 80 and sum to 314. They run in sync with the first four intervals (the core) of a new generation expansion as the Lewin orbit comes full circle 125, 126, 127, and 128 When divided by the Passover interval (100) opposite the newly formed core (marking the Pythagorean shift from 99 and passing over 100 to 101) we arrive at 3.14There is a math game called squaring 42 which produces interesting results when applied to 314. After ‘squaring’ 314 new numbers can be formed by adding or subtracting lines along the square border. Interior lines cannot be changed. The 12 numbers listed below are the only numbers which can be formed by ‘squaring’ 314 straight out - that is to say, excluding both its reverse and rotated image.The average of the sum of all possibilities is 616.Rotating the ‘squared Pi’ 180 degrees brings 516, 616, 518 and 618 into focus. 616 is a farm-to-market road running through Blessing, Texas while 518 is a farm-to-market road running through Pearland and Friendswood where this author grew up and resides. The only other numbers to emerge from this orientation are 516 and 618, the first 3 digits of phi’s decimal fraction. There exists an FM 618 near Lake Stamford, Texas home to an array of solar panels called Alamo 7.Using Google Maps, I calculated the perimeter of a triangle between the three farm-to-market roads to be 777 miles. The area of the triangle is Pi x 10,000 km^2 or 31,415.9 km^2. The area of the massive circle over Texas, Oklahoma and part of New Mexico is 1 million km^2.Finally there is FM 516 in Barstow, Texas in West Texas near Pecos which lies well within the circle. Calculating the perimeter of the polygon between all four farm-to-market roads results in 1,111 miles.Going back to our story of the fireplace image of pi and man you may recall the image of man occurred on the 31st layer.Bear in mind the first two digits of Pi are 3 and 1 separated by a decimal. In the Gregorian calendar the most obvious example of 31 lies in the number of days in months 1,3, 5, 7, 8, 10 and 12. As you can see, the majority of months have 31 days in them. What happens when we divide the number of days in a calendar year by 31? 11.7741935. Focusing in on the decimal fraction alone we have .7741935. Since many local zip codes near Houston begin with 77 I decided to see if 77419 matched a local zip code. Bingo! Blessing, Texas. The major road through Blessing is FM 616 which has its own unique connection to the Spiral of Life. The model is marked by two paths - the ever-expanding path and the path which, upon reaching a point of equilibrium comes full circle to complete the Lewin orbit. At this location a new generation expansion may emerge. The precise location is marked by two converging intervals 77 and 125. Set as a fraction 77/125 we arrive at .616! The town even boasts a restaurant called the Six One 6 as well as a combined hotel and restaurant called the Blessing Hotel and Coffee Shop.According to Wikipedia the city of Blessing found its name when the railroad tracks were finally extended to that point, and first settlers accepted the name "Blessing" after their first choice of "Thank God" was deemed unsuitable by postal officials. Other considerations: ‘RAILROAD TRACKS’ holds a stroke value of 31 using the lettering style of the conversion chart above. Furthermore the date of Otto Warmbier’s birth (12–12) can be translated to RR (a common abbrev of Rail Road) in Resemblance Gematria which converts letters to numbers and vice-versa based entirely on resemblance.Stop. Look. Listen. Think.I’m not here to promote numerology or favor one religion over another unless that religion seeks violent conquest (Islam) then I am very much against it. For years progressive religions have always given a respectful nod to the sciences for help in uncovering the mysteries of the universe. The most remarkable coincidence in discovering the word and location “Blessing” using numbers is that one would be hard-pressed to find another word in the English language that speaks to numbers as much as ‘blessing’ does! If there is one thing I think we can all agree on it is that Counting one’s Blessings is a far better way to live one’s life than enshrining one’s shortcomings."There are only two ways to live your life, one is as though nothing is a miracle. The other is as though everything is a miracle."Albert Einstein.Probable outcomes:Dennis Rodman will be moved by Christ’s return through the person of Otto Warmbier. It was through Rodman’s efforts Warmbier was released although the high-fives and jumping in celebration quickly gave way to shock as his condition became apparent.Rodman will appeal to his friend Kim Jong-un to recognize the grave injustice which North Korea perpetrated upon Otto Warmbier and the returning spirit of Christ through the contrived arrangement of his country’s guest hotel’s 5th floor trap.In a parallel universe Our Lord and Savior Otto Warmbier is released and receives a bouquet of 31 flowers before departing North Korea.North Korea will name a major Pyongyang street “Otto Warmbier St.” The return of Christ’s spirit through Otto Warmbier will be celebrated in many countries and North Korea will end all traps and release all political prisoners. Women and teachers will play an important role in North Korea’s coming transformation.Forgive the English mistakes of the question below. It is asked by a non-native speaker. I spent seven years in Japan teaching non-native speakers. I have learned it is more important to understand what a person is trying to communicate rather than be absorbed by that person’s grammatical errors. At Quora many highly competitive people congregate here and a lack of proper form can spell doom to a person’s ideas no matter how good they are.However in the interest of moving the ball forward, I am giving this man his fully deserved credit for daring to ask the tough questions, the ones which challenge our assumptions. You will see how it fits within the story of Otto Warmbier very well.Prince Blake's answer to How can we make the world’s mainstream professional mathematicians understand so easily the ever simplest ideas in so elementary mathematics that never require any kind of peer review?
- Home >
- Catalog >
- Life >
- Handicraft Template >
- Numbers Templates >
- Number Cards Templates >
- printable numbers 1-30 >
- Name: Adding Two Digit Numbers Missing Number Make 100 Date: Calculate The Missing N