The night when we released our AppSurfer mobile app… | Akshay Deo The night when we released our AppSurfer mobile app… · Akshay Deo

The night when we released our AppSurfer mobile app…


Its one of the biggest day for us, as a company, as entrepreneurs, as technology lovers!! We released out the first version of mobile app AppSurfer on 21st early morning (like 1.30 am early :P). We were happy, and equally nervous. And at the same time Google play was giving us a bit of hard time :D. We were kind of polling onto our expected web page on Google Play and it was returning 404 :-/. We were kind of sleepy, exhausted and equally excited to see our product page on Google play. We were too bored to click refresh again and again. And then the programmer within us resulted into this script

import urllib
import urllib.request
import sys
from multiprocessing import Process
import time

def read_page():
print("reading source")
req = urllib.request.Request("https://play.google.com/store/apps/details?id=main.java.com.appsurfer")
try:
page_source = urllib.request.urlopen(req)
except:
print("no")
return
print("AppSurfer app is up \m/ yohoooooo !!")

if **name** == "**main**":
#sendmail()
while(True):
read_page()
time.sleep(15)

Output:

reading source
no
reading source
no
reading source
no
reading source
no
reading source
no
reading source
no
reading source
no
reading source
AppSurfer app is up \m/ yohoooooo !!
reading source
AppSurfer app is up \m/ yohoooooo !!

And finally we saw AppSufer is up, it was almost 3.25 am. But nevertheless, its a big day for us. We are sure that you are gonna like AppSurfer service, and tune in with us for exciting upcoming updates.

P.S. If you liked inception, I am sure you are gonna like this page


powered by TinyLetter



Comments