cooldatasoft.com Report : Visit Site


  • Ranking Alexa Global: # 17,937,979

    Server:Apache/2.4.25 (Debia...
    X-Powered-By:PHP/7.2.3

    The main IP address: 109.74.197.74,Your server United Kingdom,London ISP:Linode LLC  TLD:com CountryCode:GB

    The description :cooldatasoft limited it solutions for all home basket checkout my account shop setting up your ubuntu 16.04 lts for java development posted on 23rd april 2018 23rd april 2018 by fmucar it is always go...

    This report updates in 29-Jul-2018

Created Date:2005-09-02
Changed Date:2016-09-23

Technical data of the cooldatasoft.com


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

Latitude: 51.508529663086
Longitude: -0.12574000656605
Country: United Kingdom (GB)
City: London
Region: England
ISP: Linode LLC

HTTP Header Analysis


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

Content-Length:8234
X-Powered-By:PHP/7.2.3
Set-Cookie:MBiyaRkd=lPpdZHGj; expires=Mon, 30-Jul-2018 15:25:35 GMT; Max-Age=86400; path=/, GPUjmRNJ=FU%5Bc4IBK; expires=Mon, 30-Jul-2018 15:25:35 GMT; Max-Age=86400; path=/, NtqCnw_iPYu=3cdD8mnoZTP; expires=Mon, 30-Jul-2018 15:25:35 GMT; Max-Age=86400; path=/
Content-Encoding:gzip
Vary:Accept-Encoding
Keep-Alive:timeout=5, max=100
Server:Apache/2.4.25 (Debian)
Connection:Keep-Alive
Link:; rel="https://api.w.org/"
Date:Sun, 29 Jul 2018 15:25:35 GMT
Content-Type:text/html; charset=UTF-8

DNS

soa:ns1.linode.com. fmucar.cooldatasoft.com. 2018031020 14400 14400 1209600 86400
ns:ns1.linode.com.
ns3.linode.com.
ns4.linode.com.
ns2.linode.com.
ns5.linode.com.
ipv4:IP:109.74.197.74
ASN:63949
OWNER:LINODE-AP Linode, LLC, US
Country:GB
mx:MX preference = 10, mail exchanger = ASPMX2.GOOGLEMAIL.com.
MX preference = 5, mail exchanger = ALT1.ASPMX.L.GOOGLE.com.
MX preference = 5, mail exchanger = ALT2.ASPMX.L.GOOGLE.com.
MX preference = 1, mail exchanger = ASPMX.L.GOOGLE.com.
MX preference = 10, mail exchanger = ASPMX3.GOOGLEMAIL.com.

HtmlToText

cooldatasoft limited it solutions for all home basket checkout my account shop setting up your ubuntu 16.04 lts for java development posted on 23rd april 2018 23rd april 2018 by fmucar it is always good to idea to automate setup to speed up your development. in case you need to setup your computer from scratch it can be very painful and a long process taking days if not weeks. your laptop might get broken, stolen or you might just want a fresh installation. the script i have is optimised for myself but can easily be modified for yourself as well. it first downloads the setup files for below applications: intellij idea community edition ide android studio ide studio-3t (formerly called robomongo) xmind zoom exodus crypto coin wallet below is the script to download files off internet; #!/usr/bin/env bash function downloadifnotexists { if [ -f "$1" ] then #0 = true echo "already exists : $1" return 0 else # 1 = false echo "downloading : $1" wget -p /opt/setup/ -u 'mozilla/5.0 (x11; linux x86_64; rv:30.0) gecko/20100101 firefox/30.0' "$2" return 1 fi } #!/usr/bin/env bash #include functions.sh for utils . functions.sh --source-only #idea intellij downloadifnotexists /opt/setup/ideaic-2018.1.1.tar.gz https://download.jetbrains.com/idea/ideaic-2018.1.1.tar.gz #android studio downloadifnotexists /opt/setup/android-studio-ide-173.4697961-linux.zip https://dl.google.com/dl/android/studio/ide-zips/3.1.1.0/android-studio-ide-173.4697961-linux.zip #3t studio - robomongo downloadifnotexists /opt/setup/studio-3t-linux-x64.tar.gz https://download.studio3t.com/studio-3t/linux/2018.2.5/studio-3t-linux-x64.tar.gz #xmind downloadifnotexists /opt/setup/xmind-8-update7-linux.zip https://www.xmind.net/xmind/downloads/xmind-8-update7-linux.zip #zoom downloadifnotexists /opt/setup/zoom_amd64.deb https://zoom.us/client/latest/zoom_amd64.deb #exodus downloadifnotexists /opt/setup/exodus-linux-x64-1.49.0.zip https://exodusbin.azureedge.net/releases/exodus-linux-x64-1.49.0.zip then it will install below programs from ubuntu repos: virtualbox docker docker-compose chrome browser dropbox open-jdk-8 ubuntu-restricted-extras htop thunderbird git pinta gparted terminator yakuake sl vlc code2html maven openssh-server xclip toilet figlet cowsay libav-tools #!/usr/bin/env bash #check if the running has root privileges if [ "$euid" -ne 0 ] then echo "please run as root" exit fi user="fmucar" #download program setup files first ./download_programs.sh chown -r $user:$user /opt #add java_home echo "java_home=\"/usr/lib/jvm/java-8-openjdk-amd64/\"" >> /etc/environment source /etc/environment #virtualbox installation apt-get install -y virtualbox virtualbox-ext-pack #docker apt-get -y install apt-transport-https ca-certificates curl software-properties-common curl -fssl https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - apt-key fingerprint 0ebfcd88 add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" apt-get update apt-get -y install docker-ce #docker-compose curl -l https://github.com/docker/compose/releases/download/1.21.0/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose chmod +x /usr/local/bin/docker-compose docker-compose --version #systemctl status docker usermod -ag docker $user docker info #install zoom dpkg -i /opt/setup/zoom_amd64.deb sudo apt-get -f install #install chrome wget -q -o - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list' apt-get update apt-get -y install google-chrome-stable #dropbox sudo -h -u $user bash -c 'cd ~ && wget -o - "https://www.dropbox.com/download?plat=lnx.x86_64" | tar xzf -' sudo -h -u $user bash -c '~/.dropbox-dist/dropboxd &' #install new programs sudo apt-get install openjdk-8-jdk apt-get -y install ubuntu-restricted-extras apt-get -y install htop apt-get -y install thunderbird apt-get -y install git apt-get -y install pinta apt-get -y install gparted apt-get -y install terminator apt-get -y install yakuake apt-get -y install sl apt-get -y install vlc apt-get -y install code2html apt-get -y install maven apt-get -y install openssh-server apt-get -y install xclip apt-get -y install toilet apt-get -y install figlet apt-get -y install cowsay apt-get -y install libav-tools #idea extract tar -xzvf /opt/setup/ideaic-2018.1.1.tar.gz -c /opt/ #mongodb entry for /etc/hosts for docker mongodb echo '127.0.0.1 mongodb' >> /etc/hosts #android studio apt-get -y install libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1 libbz2-1.0:i386 unzip /opt/setup/android-studio-ide-173.4697961-linux.zip -d /opt/ #xminf - mind mapping software mkdir -p /opt/xmind unzip /opt/setup/xmind-8-update7-linux.zip -d /opt/xmind/ #exodus wallet mkdir -p /opt/exodus unzip /opt/setup/exodus-linux-x64-1.49.0.zip -d /opt/exodus/ #robomongo mkdir -p /opt/studio-3t tar -xzvf /opt/setup/studio-3t-linux-x64.tar.gz -c /opt/studio-3t chmod +x /opt/studio-3t/studio-3t-linux-x64.sh /opt/studio-3t/studio-3t-linux-x64.sh & #change ownership to user for those programs chown -r $user:$user /opt #update existing programs first apt-get update apt-get -y upgrade #.gradle.properties - for android signing apk release files mkdir -p /home/$user/.gradle cat > /home/$user/.gradle/gradle.properties << 'eof' release_store_file=/home/$user/workspace/android/prod.keystore release_store_password=[put tore password here] release_key_alias=[put key alias here] release_key_password=[ut key password here] eof chown -r $user:$user /home/$user/.gradle #create .m2 & github token files sudo -h -u $user bash -c 'mkdir -p /home/$user/.m2/' sudo -h -u $user bash -c 'touch /home/$user/.m2/github-token' sudo -h -u $user bash -c 'touch /home/$user/.m2/settings.xml' sudo -h -u $user bash -c 'mkdir -p /home/$user/.m2/' cat > /home/$user/.m2/github-token << 'eof' [place your github token here] eof cat > /home/$user/.m2/settings.xml << 'eof' [place your settings.xml content here] eof #setup ssh keys sudo -h -u $user bash -c 'mkdir -p /home/$user/.ssh' cat > /home/$user/.ssh/id_rsa << 'eof' [place your private key here] eof # setup ssh public key cat > /home/$user/.ssh/id_rsa.pub << 'eof' [place your public key here] eof #update access rights for ssh keys chown -r $user:$user /home/$user/.ssh chmod 0700 /home/$user/.ssh chmod 0644 /home/$user/.ssh/id_rsa.pub chmod 0600 /home/$user/.ssh/id_rsa chown -r $user:$user /home/$user chown -r $user:$user /opt/ #setup workspace and clone repos ./clonegitrepos.sh apt-get update apt-get upgrade apt-get -y autoremove echo "finished" lsb_release -a and finally, update the following file to clone your own repos #!/usr/bin/env bash #workspace setup git config --global user.email "[place your email here]" git config --global user.name "[place your name here]" git config --global push.default simple #cooldatasoft github - [replace with your own repositories] #you should have setup your ssh keys to get access to the repos sudo -h -u $user bash -c 'mkdir -p /home/$user/workspace/cooldatasoft-github' cd /home/$user/workspace/cooldatasoft-github sudo -h -u $user bash -c 'git clone [email protected]:cooldatasoft/cds-parent.git' sudo -h -u $user bash -c 'git clone [email protected]:cooldatasoft/cds-build-tools.git' sudo -h -u $user bash -c 'git clone [email protected]:cooldatasoft/wicket-menu.git' sudo -h -u $user bash -c 'git clone [email protected]:cooldatasoft/object-sampler.git' sudo -h -u $user bash -c 'git clone [email protected]:cooldatasoft/cds-util.git' chown -r $user:$user /home/$user/ github repo for scripts posted in ubuntu httpurl parameter encoding in java posted on 6th april 2018 23rd april 2018 by fmucar some already know that there is urlencoder class in java but not many know that this class is actually not for url encoding but for form encoding if you have look at the javadocs. there

URL analysis for cooldatasoft.com


http://www.cooldatasoft.com/wp-login.php
http://www.cooldatasoft.com/2018/04/06/httpurl-encoding-in-java/
http://www.cooldatasoft.com/comments/feed/
http://www.cooldatasoft.com/author/fmucar/
http://www.cooldatasoft.com/2018/04/23/setting-up-your-ubuntu/
http://www.cooldatasoft.com/category/ubuntu/
http://www.cooldatasoft.com/category/java/
http://www.cooldatasoft.com/shop/
http://www.cooldatasoft.com/basket/
http://www.cooldatasoft.com/feed/
http://www.cooldatasoft.com/checkout/
http://www.cooldatasoft.com/my-account/
http://www.cooldatasoft.com/2018/04/

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: COOLDATASOFT.COM
Registry Domain ID: 204524317_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.enom.com
Registrar URL: http://www.enom.com
Updated Date: 2016-09-23T15:58:42Z
Creation Date: 2005-09-02T11:52:22Z
Registry Expiry Date: 2018-09-02T11:52:22Z
Registrar: eNom, Inc.
Registrar IANA ID: 48
Registrar Abuse Contact Email:
Registrar Abuse Contact Phone:
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: NS1.LINODE.COM
Name Server: NS2.LINODE.COM
Name Server: NS3.LINODE.COM
Name Server: NS4.LINODE.COM
Name Server: NS5.LINODE.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2017-09-25T08:27:18Z <<<

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 eNom, Inc.

SERVERS

  SERVER com.whois-servers.net

  ARGS domain =cooldatasoft.com

  PORT 43

  TYPE domain

DOMAIN

  NAME cooldatasoft.com

  CHANGED 2016-09-23

  CREATED 2005-09-02

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

NSERVER

  NS1.LINODE.COM 162.159.27.72

  NS2.LINODE.COM 162.159.24.39

  NS3.LINODE.COM 162.159.25.129

  NS4.LINODE.COM 162.159.26.99

  NS5.LINODE.COM 162.159.24.25

  REGISTERED yes

Go to top

Mistakes


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

  • www.ucooldatasoft.com
  • www.7cooldatasoft.com
  • www.hcooldatasoft.com
  • www.kcooldatasoft.com
  • www.jcooldatasoft.com
  • www.icooldatasoft.com
  • www.8cooldatasoft.com
  • www.ycooldatasoft.com
  • www.cooldatasoftebc.com
  • www.cooldatasoftebc.com
  • www.cooldatasoft3bc.com
  • www.cooldatasoftwbc.com
  • www.cooldatasoftsbc.com
  • www.cooldatasoft#bc.com
  • www.cooldatasoftdbc.com
  • www.cooldatasoftfbc.com
  • www.cooldatasoft&bc.com
  • www.cooldatasoftrbc.com
  • www.urlw4ebc.com
  • www.cooldatasoft4bc.com
  • www.cooldatasoftc.com
  • www.cooldatasoftbc.com
  • www.cooldatasoftvc.com
  • www.cooldatasoftvbc.com
  • www.cooldatasoftvc.com
  • www.cooldatasoft c.com
  • www.cooldatasoft bc.com
  • www.cooldatasoft c.com
  • www.cooldatasoftgc.com
  • www.cooldatasoftgbc.com
  • www.cooldatasoftgc.com
  • www.cooldatasoftjc.com
  • www.cooldatasoftjbc.com
  • www.cooldatasoftjc.com
  • www.cooldatasoftnc.com
  • www.cooldatasoftnbc.com
  • www.cooldatasoftnc.com
  • www.cooldatasofthc.com
  • www.cooldatasofthbc.com
  • www.cooldatasofthc.com
  • www.cooldatasoft.com
  • www.cooldatasoftc.com
  • www.cooldatasoftx.com
  • www.cooldatasoftxc.com
  • www.cooldatasoftx.com
  • www.cooldatasoftf.com
  • www.cooldatasoftfc.com
  • www.cooldatasoftf.com
  • www.cooldatasoftv.com
  • www.cooldatasoftvc.com
  • www.cooldatasoftv.com
  • www.cooldatasoftd.com
  • www.cooldatasoftdc.com
  • www.cooldatasoftd.com
  • www.cooldatasoftcb.com
  • www.cooldatasoftcom
  • www.cooldatasoft..com
  • www.cooldatasoft/com
  • www.cooldatasoft/.com
  • www.cooldatasoft./com
  • www.cooldatasoftncom
  • www.cooldatasoftn.com
  • www.cooldatasoft.ncom
  • www.cooldatasoft;com
  • www.cooldatasoft;.com
  • www.cooldatasoft.;com
  • www.cooldatasoftlcom
  • www.cooldatasoftl.com
  • www.cooldatasoft.lcom
  • www.cooldatasoft com
  • www.cooldatasoft .com
  • www.cooldatasoft. com
  • www.cooldatasoft,com
  • www.cooldatasoft,.com
  • www.cooldatasoft.,com
  • www.cooldatasoftmcom
  • www.cooldatasoftm.com
  • www.cooldatasoft.mcom
  • www.cooldatasoft.ccom
  • www.cooldatasoft.om
  • www.cooldatasoft.ccom
  • www.cooldatasoft.xom
  • www.cooldatasoft.xcom
  • www.cooldatasoft.cxom
  • www.cooldatasoft.fom
  • www.cooldatasoft.fcom
  • www.cooldatasoft.cfom
  • www.cooldatasoft.vom
  • www.cooldatasoft.vcom
  • www.cooldatasoft.cvom
  • www.cooldatasoft.dom
  • www.cooldatasoft.dcom
  • www.cooldatasoft.cdom
  • www.cooldatasoftc.om
  • www.cooldatasoft.cm
  • www.cooldatasoft.coom
  • www.cooldatasoft.cpm
  • www.cooldatasoft.cpom
  • www.cooldatasoft.copm
  • www.cooldatasoft.cim
  • www.cooldatasoft.ciom
  • www.cooldatasoft.coim
  • www.cooldatasoft.ckm
  • www.cooldatasoft.ckom
  • www.cooldatasoft.cokm
  • www.cooldatasoft.clm
  • www.cooldatasoft.clom
  • www.cooldatasoft.colm
  • www.cooldatasoft.c0m
  • www.cooldatasoft.c0om
  • www.cooldatasoft.co0m
  • www.cooldatasoft.c:m
  • www.cooldatasoft.c:om
  • www.cooldatasoft.co:m
  • www.cooldatasoft.c9m
  • www.cooldatasoft.c9om
  • www.cooldatasoft.co9m
  • www.cooldatasoft.ocm
  • www.cooldatasoft.co
  • cooldatasoft.comm
  • www.cooldatasoft.con
  • www.cooldatasoft.conm
  • cooldatasoft.comn
  • www.cooldatasoft.col
  • www.cooldatasoft.colm
  • cooldatasoft.coml
  • www.cooldatasoft.co
  • www.cooldatasoft.co m
  • cooldatasoft.com
  • www.cooldatasoft.cok
  • www.cooldatasoft.cokm
  • cooldatasoft.comk
  • www.cooldatasoft.co,
  • www.cooldatasoft.co,m
  • cooldatasoft.com,
  • www.cooldatasoft.coj
  • www.cooldatasoft.cojm
  • cooldatasoft.comj
  • www.cooldatasoft.cmo
Show All Mistakes Hide All Mistakes