home
join about login
Ships and Boats

gst

Feb. 15, 2020, 5:11 p.m.

on Ships and Boats

BERLIN EXPRESS - IMO 9229855 - Callsign DGHX - ShipSpotting.com - Ship Photos and Ship Tracker


© Michael Schindler at shipspotting.com

291 views origin
Orion in Red and Blue - Little Planet Soyuz - Austria plans tougher sentences for crimes against women - This is how to train a cat :D How I Trained My Cat - Eu vi eu viiiii O papai noel tava na sinaleira - Noel Guarany | Sem Fronteira (1975) [Álbum Completo/Full Album] - Slava Ukraini! on Steam - Eclipse solar hoje! - Federer pummels Bemelmans to move closer to top spot - Tonella - revisão do limpador de parabrisa do fusca - NASA Awards Contract for Continued Operations of its Jet Propulsi - Major League Baseball notebook: Mariners deal for Colome, Span fr - Guri de Uruguaiana fala sobre hits do Carnaval e exageros no Phot - Trump quip about North Korea's Kim sparks outcry on social media - Newest Crew Launches for the International Space Station - Pipi das Meias Altas Portuguese vol 1 - Cetus Galaxies and Supernova - GLORIA GROOVE - SEDANAPO - Celebrating 28 Years of the Hubble Space Telescope - Climate change: 'Hothouse Earth' risks even if CO2 emissions slas - amizades - Exclusive: North Korea earned $200 million from banned exports, s - Dieguito - A Lesma © ℗ MÚSICA AUTORAL Ensaio - NASA Awards Contract for Aerospace Systems Modeling, Simulation - Wozniacki passes Barty test in Madrid, Sharapova advances - Los candidatos se disputan el poderoso voto del magisterio mexica - The Extraordinary Spiral in LL Pegasi - Southern California as Seen From Apollo 7 - Launching to Observe Our Sun - Fallece un exdiputado federal del PRI tiroteado este fin de seman - gliptodonte encontrado en Picada Varela - At Tranquility Base -  

tutti - social network

Tutti is the simplest social network on internet. Here you can make friends, create communities, sell things, make surveys, comment and share stuff.

gangadhar
GANGADHARA RAO IRLAPATI...
An unfortunate Indian scientist that India throws away

I am an unfortunate Indian scientist subjected to negligence, racism and discrimination despite did enormous researches&studies on earth related issues and made over a 1000 publications. Among them Irlapatism- A New Hypothetical Model Cosmology, National Geoscope Projects, Basics of Global Monsoon Time Scales, Indian Monsoon Time Scale etc. were scientifically&successfully proved out in practice while Artificial rains, Artificial storms, Artificial underground waters etc concepts were uncompleted. Kindly find out my researches in all/any websites/searchengines by searching my name GANGADHARA RAO IRLAPATI and do further researches on my investigations; promote, propagate and recognize me by making references in research papers.Below I describe some of the researches,I did.


Basics of Bio-forecast: This is an easiest and interesting forecasting method.I designed it based on the similar principles such as how creatures sense weather changes&natural calamities in advance. This research can be done easily at home with simple researches and experiments.

Basics of Numerical Weather Periodic Tables: Weather Periodic tables doesn't requires any researches.Weather changes and natural calamities can be assessed by simply studying the numerical weather periodic tables.

Basics of Geoscope&it's National Geoscope projects/Programmes/systems: Geoscope warns earthquakes in advance. Earthquakes can be detected by designing the Geoscope in both simple and hitech methods which can help to predict the earthquakes 24 hrs in advance.

Basics of Global Monsoon Time Scales: Global Monsoon Time Scales are very useful to study the past present and future movements of monsoons and it's weather changes&natural calamities in advance.

Basics of creation(Irlapatism-A New Hypothetical Model of Cosmology): A New Hypothetical Model of Cosmology unravel the mysteries of the universe by studying this theory.

Basics of Indian Monsoon Time Scale: Particularly I have invented the Indian Monsoons Time Scale along with other global monsoon time scales which can help to study the past, present and future movements of monsoons and it's weather problems&natural calamities in advance.

Basics of Artificial rains: I have proposed artificial rains to pour rains in required desert and rain prone areas to save people from droughts and famines and also tried to do some preliminary researches&studies but completed due to lack of support&opportunities. I call on world scientists to do researches that create Artificial rains

Basics of Artificial storms: Artificial storms had proposed and designed by me to pour rain waters in required desert and rain prone areas to save people from droughts and famine. I call on world scientists to do researches that create Artificial storms.

Basics of Artificial underground waters: Artificial underground waters had proposed and designed by me to increase underground waters in required desert and rain prone areas to save people from droughts and famines. I call on world scientists to do researches that create Artificial underground waters.

However much efforts did tho, I couldn't get government's/organizations support&opportunities. I was humiliated&insulted and my researches were ignored&darkened by fundamentalists&superstitioius.Political recommendations&officials support, cash&community, region&religion may play a key role in giving support&opportunities, awards&rewards, respect&recognition.I am a victim of racism, negligence and discrimination

I am now making my life's last journey with hopelessness&sickness and disregard&despair. It is not known how long I will live, or when I will die. Under the aforesaid circumstances, I 'm appealing to world scientists that if world scientists have invented any technology in future that recreate humans of past, Kindly remember&recreate me to complete my uncompleted missions together with world scientists.

GANGADHARA RAO IRLAPATI
gangadhar19582058@gm
Django tips and tricks

As far as I know there is no way for the browser to tell the application what is the user's timezone.
That is a problem when you want to run an international site, mostly when users from different places save time related stuff.
Some people suggest to just ask the user what his timezone is.
I did not want to bother them with that, so I created this little hack.
this involves a context processor and some javascript.

So lets start with the context processor in django.
you start by writing your context_processor.py file
 from django.utils import timezone
def timezone_processor(request):
# look for a cookie that we expect to have the timezone
tz = request.COOKIES.get('local_timezone', None)
if tz:
tz_int = int(tz) # cast to int
# here we decide what will prefix timezone number
# the output of tz_str will be something like:
# Etc/GMT+1, GMT+0, Etc/GMT-2
if tz_int >= 0:
tz_str = 'Etc/GMT+'+tz
else:
tz_str = 'Etc/GMT'+tz
# this forces timezone
timezone.activate(tz_str)
# Now we tell the template that we have a timezone
return {'local_timezone': tz}

For the context processor to work you must declare it in settings.py
 TEMPLATES = [
{
.........
'OPTIONS': {
'context_processors': [
.........
'myapp.context_processors.timezone_processor',
],
},

Ok, so this code just create a timezone string and activates it.
A template context processor returns a dictionary that will be sent to the context of the template when rendering. Here we are returning local_timezone.
But where this cookie come from? Lets go to the template and make this javascript trick.

 <!-- if django already knows timezone we will not run it again -->
{% if not local_timezone %}
<!-- getTimezoneOffset does the trick! -->
<!-- it return minutes so we divide to get hours -->
timezone = new Date().getTimezoneOffset() / 60;
document.cookie = 'local_timezone=" + timezone;
<!-- set a cookie with this value and we are done -->
{% endif %}
*for simplicity I didn't include cookie expires nor half hour timezones like North Korea.

So it's first time the user enters the site. Django doesn't know yet it's timezone.
As local_timezone comes empty, we run this javascript lines, get the timezone offset and save it in a cookie.

Next page the user enters, the context processor will read that cookie and will activate the appropriate timezone.
If you need to activate it the very first time, just make it refresh after setting the cookie.

Well that's it, hope this helps you.
more