zedia.net Report : Visit Site


  • Ranking Alexa Global: # 2,081,331

    Server:Apache...
    X-Powered-By:PHP/5.2.17

    The main IP address: 192.195.77.37,Your server -,- ISP:-  TLD:net CountryCode:-

    The description :flash, actionscript, seo and everything in between...

    This report updates in 23-Jun-2018

Created Date:2003-05-27
Changed Date:2016-05-25

Technical data of the zedia.net


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host zedia.net. Currently, hosted in - and its service provider is - .

Latitude: 0
Longitude: 0
Country: - (-)
City: -
Region: -
ISP: -

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.

X-Powered-By:PHP/5.2.17
Transfer-Encoding:chunked
Content-Encoding:gzip
Keep-Alive:timeout=15
Server:Apache
Connection:keep-alive
Date:Sat, 23 Jun 2018 03:09:36 GMT
Content-Type:text/html

DNS

soa:ns47.1and1.com. hostmaster.1and1.com. 2016102001 28800 7200 604800 600
ns:ns48.1and1.com.
ns47.1and1.com.
ipv4:IP:192.195.77.37
ASN:8560
OWNER:ONEANDONE-AS Brauerstrasse 48, DE
Country:US
mx:MX preference = 10, mail exchanger = mx00.1and1.com.
MX preference = 10, mail exchanger = mx01.1and1.com.

HtmlToText

flash, actionscript, seo and everything in between zedia flash blog blur filter for uitexture in ngui posted by zedia.net in unity3d on october 10th, 2013 shadderrrrs! well that is it, i’m caught in shader land. the thing is, i don’t know jack **** about them. what i am missing mostly from flash in unity are filters like blur, drop shadow and glow. how you would go about doing that in unity would be with shaders (i guess), so i stuck my nose in them. here is my first version of a blur filter/shader. shader "unlit/transparent colored blurred" { properties { _maintex ( "base (rgb), alpha (a)" , 2d ) = "white" { } _distance ( "distance" , float ) = 0.015 } subshader { lod 100 tags { "queue" = "transparent" "ignoreprojector" = "true" "rendertype" = "transparent" } cull off lighting off zwrite off fog { mode off } offset - 1 , - 1 blend srcalpha oneminussrcalpha pass { cgprogram #pragma vertex vertexprogram #pragma fragment fragmentprogram #include "unitycg.cginc" struct appdata_t { float4 vertex : position ; float2 texturecoordinate : texcoord0; fixed4 color : color ; } ; struct vertextofragment { float4 vertex : sv_position; half2 texturecoordinate : texcoord0; fixed4 color : color ; } ; sampler2d _maintex; float4 _maintex_st; float _distance; vertextofragment vertexprogram ( appdata_t vertexdata ) { vertextofragment output; output. vertex = mul ( unity_matrix_mvp, vertexdata. vertex ) ; output. texturecoordinate = transform_tex ( vertexdata. texturecoordinate , _maintex ) ; output. color = vertexdata. color ; return output; } fixed4 fragmentprogram ( vertextofragment input ) : color { float distance = _distance; fixed4 computedcolor = tex2d ( _maintex, input. texturecoordinate ) * input. color ; computedcolor += tex2d ( _maintex, half2 ( input. texturecoordinate . x + distance , input. texturecoordinate . y + distance ) ) * input. color ; computedcolor += tex2d ( _maintex, half2 ( input. texturecoordinate . x + distance , input. texturecoordinate . y ) ) * input. color ; computedcolor += tex2d ( _maintex, half2 ( input. texturecoordinate . x , input. texturecoordinate . y + distance ) ) * input. color ; computedcolor += tex2d ( _maintex, half2 ( input. texturecoordinate . x - distance , input. texturecoordinate . y - distance ) ) * input. color ; computedcolor += tex2d ( _maintex, half2 ( input. texturecoordinate . x + distance , input. texturecoordinate . y - distance ) ) * input. color ; computedcolor += tex2d ( _maintex, half2 ( input. texturecoordinate . x - distance , input. texturecoordinate . y + distance ) ) * input. color ; computedcolor += tex2d ( _maintex, half2 ( input. texturecoordinate . x - distance , input. texturecoordinate . y ) ) * input. color ; computedcolor += tex2d ( _maintex, half2 ( input. texturecoordinate . x , input. texturecoordinate . y - distance ) ) * input. color ; computedcolor = computedcolor / 9 ; return computedcolor; } endcg } } } it works ok, with a lot of restrictions. first, you can only use it for ngui uitextures. i would love it to work with uisprites, but they all share the same atlas, so if you blur one sprite you blur them all! also, for now, you should leave a padding of 10 transparent pixels around your texture for a better effect. the distance parameter is relative to the size of your texture so correct values will change from one texture to the other. anyway you have it, i will keep working on it, but if you see anything that can be improved, don’t be afraid to tell me, i would really like to make it better. blur , filter , ngui , shader , uitexture , unity , unity3d no comments updated version of the masking shader for ngui posted by zedia.net in unity3d on september 23rd, 2013 i did a s hader before to mask a texture so that it doesn’t have to be rectangular. turns out i was using an old version of ngui, so when i updated (to version 2.65) my previous shader didn’t work anymore. also nicki thomas hansen made another shader so that you could use the masked texture inside a clipped panel . in doing so he also explained what ngui was doing and how it was selecting the correct shader. so, based on his alphaclip, i remade my shader so that it works on the new version of ngui. here is the code for it: shader "unlit/transparent colored masked" { properties { _maintex ( "base (rgb), alpha (a)" , 2d ) = "white" { } _alphatex ( "masktexture" , 2d ) = "white" { } } subshader { lod 100 tags { "queue" = "transparent" "ignoreprojector" = "true" "rendertype" = "transparent" } cull off lighting off zwrite off fog { mode off } offset - 1 , - 1 blend srcalpha oneminussrcalpha pass { cgprogram #pragma vertex vertexprogram #pragma fragment fragmentprogram #include "unitycg.cginc" struct appdata_t { float4 vertex : position ; float2 texturecoordinate : texcoord0; fixed4 color : color ; } ; struct vertextofragment { float4 vertex : sv_position; half2 texturecoordinate : texcoord0; fixed4 color : color ; } ; sampler2d _maintex; float4 _maintex_st; sampler2d _alphatex; vertextofragment vertexprogram ( appdata_t vertexdata ) { vertextofragment output; output. vertex = mul ( unity_matrix_mvp, vertexdata. vertex ) ; output. texturecoordinate = transform_tex ( vertexdata. texturecoordinate , _maintex ) ; output. color = vertexdata. color ; return output; } fixed4 fragmentprogram ( vertextofragment input ) : color { fixed4 computedcolor = tex2d ( _maintex, input. texturecoordinate ) * input. color ; fixed4 alphaguide = tex2d ( _alphatex, input. texturecoordinate ) ; if ( alphaguide. a < computedcolor. a ) computedcolor. a = alphaguide. a ; return computedcolor; } endcg } } } funny how writing my previous post solved my future problem by someone else writing an answer post. i will update the previous post so that it points to this post also. update: i renamed all the variables to something readable, i thought it might be useful to understand what it is doing. clipping , masking , ngui , nicki thomas hansen , shader , unity3d no comments kickstarter is my main new way to get games posted by zedia.net in personal on september 19th, 2013 i love kickstarter. i think it is one of the best inventions from this decade. it gives the people a say in what gets made or not and that is a very powerful thing. so i decided that i would participate more to crowd funding. notably in the video game area. since i don’t really have time to get into huge games, the type of games usually found on kickstarter are perfect for me. i’m going to try and buy most of my games from crowd funding. here are two games that i participated in: the fall http://www.kickstarter.com/projects/189665092/the-fall-dark-story-driven-exploration-in-an-alien?ref=live this seems to be made by one guy alone and it looks awesome. just for that it was worth it to help it a bit. also who wouldn’t want a deeper /dark metroid? sunless sea http://www.kickstarter.com/projects/failbetter/sunless-sea?ref=live i liked the looks on this one, plus they said their inspiration was don’t starve, ftl and roguelikes; that has to be good. so there you have it, i think you should back those projects too, so that they are made more awesome. i will leave you with this tip, do not back too many projects at the same time, because you’ll get too many email updates from them. crowd funding , kickstarter , sunless sea , the fall no comments what is coming for ui for unity3d posted by zedia.net in unity3d on september 11th, 2013 as you might have guessed it from previous posts, i am currently building ui using ngui in unity3d. it is quite challenging to do everything i am used to with flash. so when i saw this video from unite 2013 by arenmook, you can’t believe how happy i was. it solve mostly all the problems i have with doing 2d in unity. also i am pretty happy they didn’t go further with the ongui stuff, that was really awkward to use. here is the video (at the 10 minute mark is the very nice slide!): now all i am missing are bitmap filters like blur, drop shadow and glow and you’ll find a pret

URL analysis for zedia.net


http://www.zedia.net/tag/blur/
http://www.zedia.net/wp-content/uploads/2013/10/shaderblurred1.png
http://www.zedia.net/2012/02/
http://www.zedia.net/2009/05/
http://www.zedia.net/tag/compression/
http://www.zedia.net/2011/06/
http://www.zedia.net/2012/10/
http://www.zedia.net/tag/aniso-level/
http://www.zedia.net/tag/ngui/
http://www.zedia.net/tag/unite/
http://www.zedia.net/category/unity3d/
http://www.zedia.net/actionscript-3-tweens-tutorial/
http://www.zedia.net/tag/camera/
http://www.zedia.net/2013/01/
http://www.zedia.net/tag/masking/

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: ZEDIA.NET
Registry Domain ID: 98415199_DOMAIN_NET-VRSN
Registrar WHOIS Server: whois.wildwestdomains.com
Registrar URL: http://www.wildwestdomains.com
Updated Date: 2016-05-25T01:10:31Z
Creation Date: 2003-05-27T16:56:55Z
Registry Expiry Date: 2019-05-27T16:56:55Z
Registrar: Wild West Domains, LLC
Registrar IANA ID: 440
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: 480-624-2505
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientRenewProhibited https://icann.org/epp#clientRenewProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
Name Server: NS47.1AND1.COM
Name Server: NS48.1AND1.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2018-06-23T03:16:38Z <<<

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 Wild West Domains, LLC

SERVERS

  SERVER net.whois-servers.net

  ARGS domain =zedia.net

  PORT 43

  TYPE domain

DOMAIN

  NAME zedia.net

  CHANGED 2016-05-25

  CREATED 2003-05-27

STATUS
clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
clientRenewProhibited https://icann.org/epp#clientRenewProhibited
clientTransferProhibited https://icann.org/epp#clientTransferProhibited
clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited

NSERVER

  NS47.1AND1.COM 217.160.82.158

  NS48.1AND1.COM 217.160.83.158

  REGISTERED yes

Go to top

Mistakes


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

  • www.uzedia.com
  • www.7zedia.com
  • www.hzedia.com
  • www.kzedia.com
  • www.jzedia.com
  • www.izedia.com
  • www.8zedia.com
  • www.yzedia.com
  • www.zediaebc.com
  • www.zediaebc.com
  • www.zedia3bc.com
  • www.zediawbc.com
  • www.zediasbc.com
  • www.zedia#bc.com
  • www.zediadbc.com
  • www.zediafbc.com
  • www.zedia&bc.com
  • www.zediarbc.com
  • www.urlw4ebc.com
  • www.zedia4bc.com
  • www.zediac.com
  • www.zediabc.com
  • www.zediavc.com
  • www.zediavbc.com
  • www.zediavc.com
  • www.zedia c.com
  • www.zedia bc.com
  • www.zedia c.com
  • www.zediagc.com
  • www.zediagbc.com
  • www.zediagc.com
  • www.zediajc.com
  • www.zediajbc.com
  • www.zediajc.com
  • www.zedianc.com
  • www.zedianbc.com
  • www.zedianc.com
  • www.zediahc.com
  • www.zediahbc.com
  • www.zediahc.com
  • www.zedia.com
  • www.zediac.com
  • www.zediax.com
  • www.zediaxc.com
  • www.zediax.com
  • www.zediaf.com
  • www.zediafc.com
  • www.zediaf.com
  • www.zediav.com
  • www.zediavc.com
  • www.zediav.com
  • www.zediad.com
  • www.zediadc.com
  • www.zediad.com
  • www.zediacb.com
  • www.zediacom
  • www.zedia..com
  • www.zedia/com
  • www.zedia/.com
  • www.zedia./com
  • www.zediancom
  • www.zedian.com
  • www.zedia.ncom
  • www.zedia;com
  • www.zedia;.com
  • www.zedia.;com
  • www.zedialcom
  • www.zedial.com
  • www.zedia.lcom
  • www.zedia com
  • www.zedia .com
  • www.zedia. com
  • www.zedia,com
  • www.zedia,.com
  • www.zedia.,com
  • www.zediamcom
  • www.zediam.com
  • www.zedia.mcom
  • www.zedia.ccom
  • www.zedia.om
  • www.zedia.ccom
  • www.zedia.xom
  • www.zedia.xcom
  • www.zedia.cxom
  • www.zedia.fom
  • www.zedia.fcom
  • www.zedia.cfom
  • www.zedia.vom
  • www.zedia.vcom
  • www.zedia.cvom
  • www.zedia.dom
  • www.zedia.dcom
  • www.zedia.cdom
  • www.zediac.om
  • www.zedia.cm
  • www.zedia.coom
  • www.zedia.cpm
  • www.zedia.cpom
  • www.zedia.copm
  • www.zedia.cim
  • www.zedia.ciom
  • www.zedia.coim
  • www.zedia.ckm
  • www.zedia.ckom
  • www.zedia.cokm
  • www.zedia.clm
  • www.zedia.clom
  • www.zedia.colm
  • www.zedia.c0m
  • www.zedia.c0om
  • www.zedia.co0m
  • www.zedia.c:m
  • www.zedia.c:om
  • www.zedia.co:m
  • www.zedia.c9m
  • www.zedia.c9om
  • www.zedia.co9m
  • www.zedia.ocm
  • www.zedia.co
  • zedia.netm
  • www.zedia.con
  • www.zedia.conm
  • zedia.netn
  • www.zedia.col
  • www.zedia.colm
  • zedia.netl
  • www.zedia.co
  • www.zedia.co m
  • zedia.net
  • www.zedia.cok
  • www.zedia.cokm
  • zedia.netk
  • www.zedia.co,
  • www.zedia.co,m
  • zedia.net,
  • www.zedia.coj
  • www.zedia.cojm
  • zedia.netj
  • www.zedia.cmo
Show All Mistakes Hide All Mistakes