TIME, THE UNHOURLY SYNDROME(THIS IS A PC {PHYSICS AND COMPUTATION} ENTRY FOR THE BOOK)

THE UNHOURLY SYNDROME

It becomes of richer spirit to inject humanity into science than science into humanity.

.edewlogics.

A lie can hardly be contained for long in natural spatial spans neither in time or space. It will cycle without significant presence, lingering superabundantly like some surrogate in postnatal conception. Its foundations will be referential however its countenance or disclosure. And its time will foster ill-obscurity of insignificant peripheral excesses without correlative marks.

Einstein must have reckoned Newton missed the relevant mark woefully when he disregarded time in reckoning the force between two bodies. He asks of it “The force has to pass from one body to another in no time?” He further states that “…motion with infinite speed cannot mean much to any reasonable person…”And with that I decided to make this entry in physics and computations as I discuss a VB.NET program I will title. “Time: the unhourly syndrome.”

I will state my convictions about time over time as someone not merely pulled along as a string without its relevant fabric. Here I find it very interesting that the two men are quite right, at the same time. There is the conception and there is the perception. But for the moment, the perception of time relative to earth developed mainly because of the sun’s relativity with earth. If there is no such perception, that is, no such relativity, there is no such perception or conception.

Armed with this fact, it is impossible not to wonder about the relativity of other celestial entities, other consistutions essentially conceivable and perceptible with what we refer to conceptually and perceptively as ‘time.” It breaks other constitutions down in ways yet un-conceived or rather ill-perceived.

It brings up yet un-reckoned notions of time and all possible questions relative to time in science and computations for all uses of time. Here is a first code in the series that will discuss my conception of time over time- a time program that only intakes seconds and only delivers minutes. If the program is run, the output which has six digits can only function half the time and half the digits. Anything after “360″ seconds is stuck in as much the infinite and therefore unreasonable in the “conceivable modelling” Einstein once referred to.

Time, the unhourly syndrome
Imports System
Public Module Module1
     Public Sub Main()
          Dim userName as string = Nothing
          Dim O as string = nothing
          Dim temp_variable1 as string = nothing
          Dim temp_variable2 as string = nothing
        console.WriteLine ("What is your name?")
          userName = Console.ReadLine()
          console.WriteLine ("What says the time in seconds?")
        O = Console.ReadLine()
                  if (O < 60 and O < 10 ) then
                       Console.WriteLine("00:00:0"+ O)
                  elseif (O >= 10 and O < 60) then
                        Console.WriteLine("00:00:"+ O)
                  elseif (O > 60 and O < 70) then
                        Dim tv1 as string = temp_variable1
                        dim tv2 as string = temp_variable2
                        tv1 = O-60
                        tv2 = math.floor(O/60)
                        Console.WriteLine("00:" + "0"+ tv2 + ":0" + tv1)
                  elseif (O >= 70 and O < 120) then
                        Dim tv1 as string = temp_variable1
                        dim tv2 as string = temp_variable2
                        tv1 = O-60
                        tv2 = math.floor(O/60)
                        Console.WriteLine("00:" + "0" + tv2 + ":" + tv1)
                   elseif(O >= 120 and O < 130) then
                         Dim tv1 as string = temp_variable1
                         dim tv2 as string = temp_variable2
                         tv1 = O-120
                         tv2 = math.floor(O/60)
                         Console.WriteLine("00:" + "0"+ tv2 + ":" + "0" + tv1)
                    elseif (O >= 130 and O < 180) then
                         Dim tv1 as string = temp_variable1
                         dim tv2 as string = temp_variable2
                         tv1 = O-120
                         tv2 = math.floor(O/60)
                         Console.WriteLine("00:" + "0" + tv2 + ":" + tv1)
                     elseif(O >= 180 and O < 190) then
                         Dim tv1 as string = temp_variable1
                         dim tv2 as string = temp_variable2
                         tv1 = O-180
                         tv2 = math.floor(O/60)
                         Console.WriteLine("00:" + "0" + tv2 + ":" + "0" + tv1)
                     elseif(O >= 190 and O < 240) then
                          Dim tv1 as string = temp_variable1
                          dim tv2 as string = temp_variable2
                           tv1 = O-180
                           tv2 = math.floor(O/60)
                           Console.WriteLine("00:" + "0" + tv2 + ":" + tv1)
                      elseif(O >= 240 and O < 250) then
                           Dim tv1 as string = temp_variable1
                           dim tv2 as string = temp_variable2
                           tv1 = O-240
                           tv2 = math.floor(O/60)
                           Console.WriteLine("00:" + "0" + tv2 + ":" + "0" + tv1)
                       elseif(O >= 250 and O < 300) then
                           Dim tv1 as string = temp_variable1
                           dim tv2 as string = temp_variable2
                            tv1 = O-240
                            tv2 = math.floor(O/60)
                            Console.WriteLine("00:" + "0" + tv2 + ":" + tv1)
                       elseif(O >= 300 and O < 310) then
                             Dim tv1 as string = temp_variable1
                             dim tv2 as string = temp_variable2
                             tv1 = O-300
                             tv2 = math.floor(O/60)
                             Console.WriteLine("00:" + "0" + tv2 + ":" + "0" + tv1)
                          elseif(O >= 310 and O < 360) then
                              Dim tv1 as string = temp_variable1
                              dim tv2 as string = temp_variable2
                              tv1 = O-300
                              tv2 = math.floor(O/60)
                            Console.WriteLine("00:" + "0" + tv2 + ":" + tv1)
                           elseif(O = 360) then
                               Dim tv1 as string = temp_variable1
                               dim tv2 as string = temp_variable2
                               tv1 = "0" + "0"
                               tv2 = math.floor(O/60)
                               Console.WriteLine("00:" + "0" + tv2 + ":" + tv1)
                            End If
                End Sub
End Module

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.