ozonejunkie.com Report : Visit Site


  • Ranking Alexa Global: # 18,644,837

    Server:Apache...

    The main IP address: 64.90.36.222,Your server United States,Brea ISP:New Dream Network LLC  TLD:com CountryCode:US

    The description :a documented addiction to electronics and tinkering....

    This report updates in 01-Jul-2018

Created Date:2004-12-31
Changed Date:2017-11-29

Technical data of the ozonejunkie.com


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host ozonejunkie.com. Currently, hosted in United States and its service provider is New Dream Network LLC .

Latitude: 33.930221557617
Longitude: -117.88842010498
Country: United States (US)
City: Brea
Region: California
ISP: New Dream Network LLC

HTTP Header Analysis


HTTP Header information is a part of HTTP protocol that a user's browser sends to called Apache containing the details of what the browser wants and will accept back from the web server.

Content-Encoding:gzip
Transfer-Encoding:chunked
Vary:Accept-Encoding
Keep-Alive:timeout=2, max=100
Server:Apache
Connection:Keep-Alive
Link:; rel="https://api.w.org/", ; rel=shortlink
Date:Sun, 01 Jul 2018 15:47:45 GMT
Content-Type:text/html; charset=UTF-8

DNS

soa:ns1.dreamhost.com. hostmaster.dreamhost.com. 2017061700 16704 1800 1814400 14400
ns:ns3.dreamhost.com.
ns2.dreamhost.com.
ns1.dreamhost.com.
ipv4:IP:64.90.36.222
ASN:26347
OWNER:DREAMHOST-AS - New Dream Network, LLC, US
Country:US
mx:MX preference = 0, mail exchanger = mx2.sub3.homie.mail.dreamhost.com.
MX preference = 0, mail exchanger = mx1.sub3.homie.mail.dreamhost.com.

HtmlToText

home electronics software the workshop about contact a documented addiction to electronics and tinkering. welcome, thanks for visiting . i hope you find something here that inspires and excites you! you can follow progress via the rss feed and please feel free to contact me with any questions. happy tinkering! latest entries » usr-htw & thingspeak with python filed under: uncategorized by ozonejunkie — leave a comment december 6, 2014 following on from my previous post about the usr-htw post protocol (found here ), i’ve now written some very basic python code to post this onto thingspeak . below are the live results from my code, though they are likely to go offline randomly. the code that generates this is: usr-htw python code python # -*- coding: utf-8 -*- import socket import httplib, urllib tcp_addr = '10.2.2.250' tcp_port = 8899 pack_len = 11 api_key = 'your api key here' s = socket.socket(socket.af_inet, socket.sock_stream) s.settimeout(30) s.connect((tcp_addr, tcp_port)) bytes_data = zeros(pack_len,int) while true: str_data = s.recv(pack_len) #this should probably have a timeout hex_data = str_data.encode('hex') print hex_data for n in range(0,pack_len): #convert to array of bytes lower = 2*n upper = lower + 2 bytes_data[n] = int(hex_data[lower:upper],16) humid = (((bytes_data[6])<<8)+(bytes_data[7]))/10.0 temp = (((((bytes_data[8])&0x7f)<<8)+(bytes_data[9]))/10.0) if int(bytes_data[8]) & 0x80: #invert temp if sign bit is set temp = -1.0* temp checksum = (uint(sum(bytes_data[0:10])) & 0xff)+1 if checksum == bytes_data[10]: print "valid!" print "temp: " + str(temp) print "hum: " + str(humid) params = urllib.urlencode({'field1': temp, 'field2': humid,'key':api_key}) headers = {"content-type": "application/x-www-form-urlencoded","accept": "text/plain"} conn = httplib.httpconnection("api.thingspeak.com:80") conn.request("post", "/update", params, headers) response = conn.getresponse() print response.status, response.reason data = response.read() conn.close() else: print "invalid. :(" 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 # -*- coding: utf-8 -*- import socket import httplib , urllib tcp_addr = '10.2.2.250' tcp_port = 8899 pack_len = 11 api_key = 'your api key here' s = socket . socket ( socket . af_inet , socket . sock_stream ) s . settimeout ( 30 ) s . connect ( ( tcp_addr , tcp_port ) ) bytes_data = zeros ( pack_len , int ) while true : str_data = s . recv ( pack_len ) #this should probably have a timeout hex_data = str_data . encode ( 'hex' ) print hex_data for n in range ( 0 , pack_len ) : #convert to array of bytes lower = 2 * n upper = lower + 2 bytes_data [ n ] = int ( hex_data [ lower : upper ] , 16 ) humid = ( ( ( bytes_data [ 6 ] ) << 8 ) + ( bytes_data [ 7 ] ) ) / 10.0 temp = ( ( ( ( ( bytes_data [ 8 ] ) & 0x7f ) << 8 ) + ( bytes_data [ 9 ] ) ) / 10.0 ) if int ( bytes_data [ 8 ] ) & 0x80 : #invert temp if sign bit is set temp = - 1.0 * temp checksum = ( uint ( sum ( bytes_data [ 0 : 10 ] ) ) & 0xff ) + 1 if checksum == bytes_data [ 10 ] : print "valid!" print "temp: " + str ( temp ) print "hum: " + str ( humid ) params = urllib . urlencode ( { 'field1' : temp , 'field2' : humid , 'key' : api_key } ) headers = { "content-type" : "application/x-www-form-urlencoded" , "accept" : "text/plain" } conn = httplib . httpconnection ( "api.thingspeak.com:80" ) conn . request ( "post" , "/update" , params , headers ) response = conn . getresponse ( ) print response . status , response . reason data = response . read ( ) conn . close ( ) else : print "invalid. :(" tweet share this: tags: usr-htw comment opening up the usr-htw wifi temperature & humidity sensor filed under: electronics by ozonejunkie — 7 comments december 5, 2014 the usr-htw unit tl;dr: the usr-htw unit is a us$40 wifi enabled temperature & humidity sensor being produced in china. out of the box it has an easy to use webpage to configure the wireless settings and runs a tcp server on port 8899. on connecting to this port, every 20-21 seconds it sends an 11 byte data string containing the current temperature and humidity sensor value in an easy to decode format. i’ve decided to write this post with a considerable amount of detail, just so some users new to this can get a grasp of how i approached the problem. whilst i admit i don’t see this as a challenge, as someone great once said “nothing is hard when you know how to do it!”. the unit this sensor is just one of the many wifi enabled devices starting to show up at very reasonable cost from the usual channels (aliexpress, ebay). it typically seems to be running at about us$40 per unit, and availability slowly seems to be improving. i ordered my unit a few weeks ago when i first spied them, thinking they looked like a good unit suitable for mounting on the wall for that distributed thermostat project that i have been meaning to get around to for awhile… anyway, the unit finally arrived today and i must say that i am actually pleasantly surprised at the build and assembly quality. this one even looks like the board was cleaned after the surface mount assembly process! the only thing to be somewhat careful of when opening the case was the rf cable running to the wireless antenna. the antenna uses a standard u.fl connector, so upgrading would be easy if required – just remove a dab of hot glue. inside the rear cover. the wifi antenna for those that are interested, the sensor is the am2302 (dht22) connected to an stm8s105 microcontroller, a holtek ht1621b lcd controller, and power is provided by an m2303adn voltage regulator, allowing the board to accept an advertised 5-24v in. wireless comms is handled by a usr-wifi232-t module. after the obligatory teardown, it was time to power the unit up for the first time, power connection is easy with screw terminals on the back. when the unit initially powers up, the wifi module acts as an access point, allowing easy web-based configuration of the module. simply connect your favourite wireless-accessing device to the network broadcast as usr-htw, open a browser and go to 10.10.100.254, enter admin/admin and you are greeted with the configuration interface. if your native language is closer to english, there is a link provided with a translation. i must admit, i found that sometimes it was necessary to refresh the page a couple of times to get it to load, but after not too long i had the device on my resident wifi connection. factory software my first point of call was to test the device with the manufacturer software “usr lonhand setup software”, found at http://www.usr.so/download/117.html . this install was pretty seamless, after guessing my way through the chinese installer. it extracted a single file into the program files folder, and after running this program it successfully found my sensor, and reported to me it’s current temperature and humidity value. it’s at this point that it is probably pertinent to mention that a brief press on the “refresh” button on the front of the unit sends an update to the software as well. like the web interface, there is an english version of this user interface should you click on en in the bottom left hand corner. it’s also possible to change the name of both the temperature and humidity sensors by clicking on the text just to the left of their value. satisfied that the device worked to the specifications, it was really time for the fun to begin! whilst there was a considerable amount of information available about the at commands used in the module, there wasn’t any available about the actual protocol that transfers the temperature. my aim was to be able to use this for data logging with the minimal amount of effort possible, so i wanted to run with completely default parameters on the unit itself. if it’s good enough for them, it’ll do for me! protocol discove

URL analysis for ozonejunkie.com


http://www.ozonejunkie.com/#top

Whois Information


Whois is a protocol that is access to registering information. You can reach when the website was registered, when it will be expire, what is contact details of the site with the following informations. In a nutshell, it includes these informations;

Domain Name: OZONEJUNKIE.COM
Registry Domain ID: 138559761_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.dreamhost.com
Registrar URL: http://www.DreamHost.com
Updated Date: 2017-11-29T08:21:46Z
Creation Date: 2004-12-31T07:30:47Z
Registry Expiry Date: 2018-12-31T07:30:47Z
Registrar: DreamHost, LLC
Registrar IANA ID: 431
Registrar Abuse Contact Email:
Registrar Abuse Contact Phone:
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: NS1.DREAMHOST.COM
Name Server: NS2.DREAMHOST.COM
Name Server: NS3.DREAMHOST.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2018-07-09T14:21:53Z <<<

For more information on Whois status codes, please visit https://icann.org/epp

NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.

TERMS OF USE: You are not authorized to access or query our Whois
database through the use of electronic processes that are high-volume and
automated except as reasonably necessary to register domain names or
modify existing registrations; the Data in VeriSign Global Registry
Services' ("VeriSign") Whois database is provided by VeriSign for
information purposes only, and to assist persons in obtaining information
about or related to a domain name registration record. VeriSign does not
guarantee its accuracy. By submitting a Whois query, you agree to abide
by the following terms of use: You agree that you may use this Data only
for lawful purposes and that under no circumstances will you use this Data
to: (1) allow, enable, or otherwise support the transmission of mass
unsolicited, commercial advertising or solicitations via e-mail, telephone,
or facsimile; or (2) enable high volume, automated, electronic processes
that apply to VeriSign (or its computer systems). The compilation,
repackaging, dissemination or other use of this Data is expressly
prohibited without the prior written consent of VeriSign. You agree not to
use electronic processes that are automated and high-volume to access or
query the Whois database except as reasonably necessary to register
domain names or modify existing registrations. VeriSign reserves the right
to restrict your access to the Whois database in its sole discretion to ensure
operational stability. VeriSign may restrict or terminate your access to the
Whois database for failure to abide by these terms of use. VeriSign
reserves the right to modify these terms at any time.

The Registry database contains ONLY .COM, .NET, .EDU domains and
Registrars.

  REGISTRAR DreamHost, LLC

SERVERS

  SERVER com.whois-servers.net

  ARGS domain =ozonejunkie.com

  PORT 43

  TYPE domain

DOMAIN

  NAME ozonejunkie.com

  CHANGED 2017-11-29

  CREATED 2004-12-31

STATUS
clientTransferProhibited https://icann.org/epp#clientTransferProhibited

NSERVER

  NS1.DREAMHOST.COM 64.90.62.230

  NS2.DREAMHOST.COM 208.97.182.10

  NS3.DREAMHOST.COM 66.33.205.230

  REGISTERED yes

Go to top

Mistakes


The following list shows you to spelling mistakes possible of the internet users for the website searched .

  • www.uozonejunkie.com
  • www.7ozonejunkie.com
  • www.hozonejunkie.com
  • www.kozonejunkie.com
  • www.jozonejunkie.com
  • www.iozonejunkie.com
  • www.8ozonejunkie.com
  • www.yozonejunkie.com
  • www.ozonejunkieebc.com
  • www.ozonejunkieebc.com
  • www.ozonejunkie3bc.com
  • www.ozonejunkiewbc.com
  • www.ozonejunkiesbc.com
  • www.ozonejunkie#bc.com
  • www.ozonejunkiedbc.com
  • www.ozonejunkiefbc.com
  • www.ozonejunkie&bc.com
  • www.ozonejunkierbc.com
  • www.urlw4ebc.com
  • www.ozonejunkie4bc.com
  • www.ozonejunkiec.com
  • www.ozonejunkiebc.com
  • www.ozonejunkievc.com
  • www.ozonejunkievbc.com
  • www.ozonejunkievc.com
  • www.ozonejunkie c.com
  • www.ozonejunkie bc.com
  • www.ozonejunkie c.com
  • www.ozonejunkiegc.com
  • www.ozonejunkiegbc.com
  • www.ozonejunkiegc.com
  • www.ozonejunkiejc.com
  • www.ozonejunkiejbc.com
  • www.ozonejunkiejc.com
  • www.ozonejunkienc.com
  • www.ozonejunkienbc.com
  • www.ozonejunkienc.com
  • www.ozonejunkiehc.com
  • www.ozonejunkiehbc.com
  • www.ozonejunkiehc.com
  • www.ozonejunkie.com
  • www.ozonejunkiec.com
  • www.ozonejunkiex.com
  • www.ozonejunkiexc.com
  • www.ozonejunkiex.com
  • www.ozonejunkief.com
  • www.ozonejunkiefc.com
  • www.ozonejunkief.com
  • www.ozonejunkiev.com
  • www.ozonejunkievc.com
  • www.ozonejunkiev.com
  • www.ozonejunkied.com
  • www.ozonejunkiedc.com
  • www.ozonejunkied.com
  • www.ozonejunkiecb.com
  • www.ozonejunkiecom
  • www.ozonejunkie..com
  • www.ozonejunkie/com
  • www.ozonejunkie/.com
  • www.ozonejunkie./com
  • www.ozonejunkiencom
  • www.ozonejunkien.com
  • www.ozonejunkie.ncom
  • www.ozonejunkie;com
  • www.ozonejunkie;.com
  • www.ozonejunkie.;com
  • www.ozonejunkielcom
  • www.ozonejunkiel.com
  • www.ozonejunkie.lcom
  • www.ozonejunkie com
  • www.ozonejunkie .com
  • www.ozonejunkie. com
  • www.ozonejunkie,com
  • www.ozonejunkie,.com
  • www.ozonejunkie.,com
  • www.ozonejunkiemcom
  • www.ozonejunkiem.com
  • www.ozonejunkie.mcom
  • www.ozonejunkie.ccom
  • www.ozonejunkie.om
  • www.ozonejunkie.ccom
  • www.ozonejunkie.xom
  • www.ozonejunkie.xcom
  • www.ozonejunkie.cxom
  • www.ozonejunkie.fom
  • www.ozonejunkie.fcom
  • www.ozonejunkie.cfom
  • www.ozonejunkie.vom
  • www.ozonejunkie.vcom
  • www.ozonejunkie.cvom
  • www.ozonejunkie.dom
  • www.ozonejunkie.dcom
  • www.ozonejunkie.cdom
  • www.ozonejunkiec.om
  • www.ozonejunkie.cm
  • www.ozonejunkie.coom
  • www.ozonejunkie.cpm
  • www.ozonejunkie.cpom
  • www.ozonejunkie.copm
  • www.ozonejunkie.cim
  • www.ozonejunkie.ciom
  • www.ozonejunkie.coim
  • www.ozonejunkie.ckm
  • www.ozonejunkie.ckom
  • www.ozonejunkie.cokm
  • www.ozonejunkie.clm
  • www.ozonejunkie.clom
  • www.ozonejunkie.colm
  • www.ozonejunkie.c0m
  • www.ozonejunkie.c0om
  • www.ozonejunkie.co0m
  • www.ozonejunkie.c:m
  • www.ozonejunkie.c:om
  • www.ozonejunkie.co:m
  • www.ozonejunkie.c9m
  • www.ozonejunkie.c9om
  • www.ozonejunkie.co9m
  • www.ozonejunkie.ocm
  • www.ozonejunkie.co
  • ozonejunkie.comm
  • www.ozonejunkie.con
  • www.ozonejunkie.conm
  • ozonejunkie.comn
  • www.ozonejunkie.col
  • www.ozonejunkie.colm
  • ozonejunkie.coml
  • www.ozonejunkie.co
  • www.ozonejunkie.co m
  • ozonejunkie.com
  • www.ozonejunkie.cok
  • www.ozonejunkie.cokm
  • ozonejunkie.comk
  • www.ozonejunkie.co,
  • www.ozonejunkie.co,m
  • ozonejunkie.com,
  • www.ozonejunkie.coj
  • www.ozonejunkie.cojm
  • ozonejunkie.comj
  • www.ozonejunkie.cmo
Show All Mistakes Hide All Mistakes