jak.cx Report : Visit Site


  • Server:LiteSpeed...

    The main IP address: 107.189.2.83,Your server United States,Cheyenne ISP:Frantech Solutions  TLD:cx CountryCode:US

    The description :i figured i should put something here...

    This report updates in 29-Dec-2018

Technical data of the jak.cx


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host jak.cx. Currently, hosted in United States and its service provider is Frantech Solutions .

Latitude: 41.141571044922
Longitude: -104.79132843018
Country: United States (US)
City: Cheyenne
Region: Wyoming
ISP: Frantech Solutions

the related websites

HTTP Header Analysis


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

Content-Length:13892
Content-Encoding:gzip
Accept-Ranges:bytes
Vary:Accept-Encoding, Cookie
Server:LiteSpeed
Last-Modified:Mon, 23 Jan 2017 11:53:51 GMT
Connection:close
Date:Sat, 29 Dec 2018 05:21:28 GMT
Content-Type:text/html; charset=UTF-8
X-Pingback:http://www.jak.cx/xmlrpc.php

DNS

soa:ns1.lime.io. jak.jak.io. 2017012403 3600 7200 1209600 86400
ns:ns1.lime.io.
ns2.lime.io.
ipv4:IP:107.189.2.83
ASN:53667
OWNER:PONYNET - FranTech Solutions, US
Country:US
mx:MX preference = 0, mail exchanger = jak.cx.

HtmlToText

skip to content jak dot cx i figured i should put something here configuration for kohana 3 on nginx posted on april 24, 2012 by jak because this was annoying to sort out, i’m going to post it here. location / { try_files $uri $uri/ /index.php?$query_string; } location = /index.php { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; include fastcgi_params; } facebook twitter reddit email posted in code snippits leave a comment php from_time() – a human readable time span phrase posted on april 22, 2012 by jak i’m sure this has been done many times before, but i wanted something to turn a date time string like ‘2 days and 9 hours ago’ to give the last deployment time on a little git deploy tool i’m working on in my spare time. here’s the code… <?php function pluralise($count, $single, $plural = null) { if ($count == 1 || $count == -1) { return $single; } if ($plural == null) { $plural = $single . 's'; } return $plural; } function from_time($time) { $now = new datetime('now'); $then = new datetime($time); $timespan = $now->diff($then); $message = array(); if ($timespan->y) $message[] = $timespan->y.' '.pluralise($timespan->y, 'year'); if ($timespan->m) $message[] = $timespan->m.' '.pluralise($timespan->m, 'month'); if ($timespan->d) $message[] = $timespan->d.' '.pluralise($timespan->d, 'day'); if ($timespan->h) $message[] = $timespan->h.' '.pluralise($timespan->h, 'hour'); if ($timespan->i) $message[] = $timespan->i.' '.pluralise($timespan->i, 'minute'); if ($timespan->s) $message[] = $timespan->s.' '.pluralise($timespan->s, 'second'); if (count($message) == 0) { return 'just now'; } $output = array_shift($message); if ($message) { $output .= ' and '.array_shift($message); } $output .= ' ago'; return $output; } facebook twitter reddit email posted in code snippits , programming tagged php , time leave a comment longest possible delay for a settimeout posted on january 12, 2012 by jak now i don’t know for sure (and never will be unless someone wants to keep a browser open for 26 days), but a bit of cross-browser testing tells me 2147483647 is the maximum number supported across browsers. even though you’re definitely not interested, its probably because this is the upper limit on a 32-bit signed integer. facebook twitter reddit email posted in programming tagged javascript , useless leave a comment office communicator custom status editor v1.5.3 released! posted on may 10, 2011 by jak this releases address the issue where it would not run unless as an administrator. the problem is it modifies the system registry, and places files for communicator to find which require elevated privileges. if you had user access control (uac) enabled on vista or 7, the program wouldn’t work as expected. now it’s fixed, so permission is requested properly. also, i threw together a portable version of office communicator custom status editor so an installer is no longer needed. this weighs in at less than 35kb. hope it helps another couple of thousand people have custom status or custom presences on microsoft office communicator 2007 r2. facebook twitter reddit email posted in my projects tagged appear offline , custom presence , custom status , log conversation , office communicator , record conversation leave a comment allowing user to “sudo” on centos 5.5 posted on may 2, 2011 by jak on ubuntu, its really simple. # adduser jak sudo and you’re done! on centos, theres a couple more steps. as root, run # /usr/sbin/usermod -ag wheel jak then edit the /etc/sudoers file # nano /etc/sudoers go down and find this… ## allows people in group wheel to run all commands # %wheel all=(all) all and remove the hash in front of %wheel so it looks like… ## allows people in group wheel to run all commands %wheel all=(all) all once that’s done, your user “jak” is part of the wheel group, who are allowed to use sudo. facebook twitter reddit email posted in uncategorized tagged linux leave a comment pirates vs ninjas posted on april 20, 2011 by jak required in every final year project: facebook twitter reddit email posted in uncategorized leave a comment check out this mac app: scroll reverser posted on april 17, 2011 by jak scroll reverser for mac, at http://pilotmoon.com/scrollreverser in preparing for lion, i’ve decided to see how the reverse scrolling (i.e your fingers move the page and not the scrollbar) would pan out on my macbook. for web pages, i took to it immediately and it felt right straight away. as i went a little further, with documents and editing in textmate, it also felt natural with only a couple of slip ups reverting to previous behaviour, especially when i was editing rather than just viewing. indeed, when i really needed to get down to some serious editing, reverse scrolling had to be switched off it was such a distraction! my issues became a lot worse when it came to finder though. it didn’t “feel right” when i was scrolling the display of folders and documents, and i repeatedly kept following my instincts and found myself trying to scroll with the scrollbar. i wonder if this is because i don’t feel like i’m moving a document or piece of paper, or maybe, i’ve become used to reverse scrolling through the use of my iphone – which especially make sense when i’m scrolling web pages, but the iphone lacks any kind of file browser and i’ve never had to scroll through a similar interface. this also might explain my difficulties when editing documents – something i rarely ever do on an iphone, as i’m just a consumer of media on that device rather than my macbook pro where i’m both consuming and creating. in summary, the reverse scrolling, which will be default in os x 10.7 lion, is natural for web pages and for viewing documents but frustrating for finder windows where, even if i’m using reverse scrolling fine everywhere else, it just doesn’t “feel right”. facebook twitter reddit email posted in uncategorized leave a comment best way to stop sql injection in php – stack overflow posted on april 11, 2011 by jak use prepared statements. these are sql statements that sent to and parsed by the database server separately from any parameters. if you use pdo you can work with prepared statements like this: $preparedstatement = $db->prepare('select * from employees where name = :name');$preparedstatement->execute(array(':name' => $name));$rows = $preparedstatement->fetchall(); (where $db is a pdo object, see the pdo documentation ) what happens is that the sql statement you pass to prepare is parsed and compiled by the database server. by specifying parameters (either a ? or a named parameter like :name in the example above) you tell the database engine where you want to filter on. then when you call execute the prepared statement is combined with the parameter values you specify. the important thing here is that the parameter values are combined with the compiled statement, not a sql string. sql injection works by tricking the script into including malicious strings when it creates sql to send to the database. so by sending the actual sql separately from the parameters you limit the risk of ending up with something you didn’t intend. any parameters you send when using a prepared statement will just be treated as strings (although the database engine may do some optimization so parameters may end up as numbers too, of course). in the example above, if the $name variable contains 'sarah'; delete * from employees the result would simply be a search for the string “‘sarah’; delete * from employees”, and you will not end up with an empty table. another benefit with using prepared statements is that if you execute the same statement many times in the same session it will only be parsed and compiled once, giving you some speed gains. oh, and since you asked about how to do it for an insert, here’s an example: $preparedstatement = $db->prepare('insert into table (column) values (:column)');$preparedstatement->

URL analysis for jak.cx


http://www.jak.cx/2011/05/allowing-user-to-sudo-on-centos-5-5/
http://www.jak.cx/tag/chatback/
http://www.jak.cx/2012/04/configuration-for-kohana-3-on-nginx/?share=reddit
http://www.jak.cx/tag/itunes/
http://www.jak.cx/tag/record-conversation/
http://www.jak.cx/2011/01/
http://www.jak.cx/2012/04/php-from_time-a-human-readable-time-span-phrase/
http://www.jak.cx/tag/javascripts/
http://www.jak.cx/tag/tips/
http://www.jak.cx/2009/08/open-web-page-in-the-default-browser-c-net/comment-page-1/#comment-451
http://www.jak.cx/2012/04/configuration-for-kohana-3-on-nginx/?share=twitter
http://www.jak.cx/2011/04/check-out-this-mac-app-scroll-reverser-2/?share=facebook
http://www.jak.cx/tag/update/
http://www.jak.cx/2010/11/
http://www.jak.cx/tag/windows-live/

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: jak.cx
Domain ID: 154719-CoCCA
WHOIS Server: whois.nic.cx
Referral URL:
Updated Date: 2017-05-22T15:24:30.342Z
Creation Date: 2008-04-16T22:04:58.993Z
Registry Expiry Date: 2018-04-16T22:04:58.999Z
Sponsoring Registrar: Dynamic Network Services
Domain Status: clientDeleteProhibited
Domain Status: clientUpdateProhibited
Domain Status: clientTransferProhibited
Registrant ID: 480653-CoCCA
Registrant Name: Jak Spalding
Registrant Street: 366 Bideford Green
Registrant City: Leighton Buzzard
Registrant State/Province: GB
Registrant Postal Code: LU7 2TX
Registrant Country: GB
Registrant Phone: +44.8713155305
Registrant Phone Ext:
Registrant Email: [email protected]
Admin ID: 480653-CoCCA
Admin Name: Jak Spalding
Admin Street: 366 Bideford Green
Admin City: Leighton Buzzard
Admin State/Province: GB
Admin Postal Code: LU7 2TX
Admin Country: GB
Admin Phone: +44.8713155305
Admin Phone Ext:
Admin Email: [email protected]
Billing ID: 480653-CoCCA
Billing Name: Jak Spalding
Billing Street: 366 Bideford Green
Billing City: Leighton Buzzard
Billing State/Province: GB
Billing Postal Code: LU7 2TX
Billing Country: GB
Billing Phone: +44.8713155305
Billing Phone Ext:
Billing Email: [email protected]
Tech ID: 480653-CoCCA
Tech Name: Jak Spalding
Tech Street: 366 Bideford Green
Tech City: Leighton Buzzard
Tech State/Province: GB
Tech Postal Code: LU7 2TX
Tech Country: GB
Tech Phone: +44.8713155305
Tech Phone Ext:
Tech Email: [email protected]
Name Server: ns2.fairthorn.uk
Name Server: ns1.fairthorn.uk
DNSSEC: unsigned
Additional Section
Redemption Expiry Date:
>>> Last update of WHOIS database: 2017-08-19T12:45:33.375Z <<<

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. Whois database is provided by Christmas Island Domain Administration Limited ("cxDA").

cxDA makes every effort to maintain the completeness and accuracy of the Whois data, but cannot guarantee that the results are error-free. Therefore, any data provided through the Whois service are on an "as is" basis without any warranties. BY USING THE WHOIS SERVICE AND THE DATA CONTAINED HEREIN OR IN ANY REPORT GENERATED WITH RESPECT THERETO, IT IS ACCEPTED THAT CIIA IS NOT LIABLE FOR ANY DAMAGES OF ANY KIND ARISING OUT OF, OR IN CONNECTION WITH, THE REPORT OR THE INFORMATION PROVIDED BY THE WHOIS SERVICE, NOR OMISSIONS OR MISSING INFORMATION. THE RESULTS OF ANY WHOIS REPORT OR INFORMATION PROVIDED BY THE WHOIS SERVICE CANNOT BE RELIED UPON IN CONTEMPLATION OF LEGAL PROCEEDINGS WITHOUT FURTHER VERIFICATION, NOR DO SUCH RESULTS CONSTITUTE A LEGAL OPINION. Acceptance of the results of the Whois constitutes acceptance of these terms, conditions and limitations. Whois data may be requested only for lawful purposes, in particular, to protect legal rights and obligations. Illegitimate uses of Whois data include, but are not limited to, unsolicited email, data mining, direct marketing or any other improper purpose. Any request made for Whois data will be documented by cxDA but will not be used for any commercial purpose whatsoever. NOTE: FAILURE TO LOCATE A RECORD IN THE WHOIS DATABASE IS NOT INDICATIVE OF THE AVAILABILITY OF A DOMAIN NAME.

? 2000-2016 CiiA, All rights reserved.

SERVERS

  SERVER cx.whois-servers.net

  ARGS jak.cx

  PORT 43

  TYPE domain

DOMAIN

  NAME jak.cx

NSERVER

  NS2.LIME.IO (DOES NOT EXIST)

  NS1.LIME.IO (DOES NOT EXIST)

  REGISTERED yes

Go to top

Mistakes


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

  • www.ujak.com
  • www.7jak.com
  • www.hjak.com
  • www.kjak.com
  • www.jjak.com
  • www.ijak.com
  • www.8jak.com
  • www.yjak.com
  • www.jakebc.com
  • www.jakebc.com
  • www.jak3bc.com
  • www.jakwbc.com
  • www.jaksbc.com
  • www.jak#bc.com
  • www.jakdbc.com
  • www.jakfbc.com
  • www.jak&bc.com
  • www.jakrbc.com
  • www.urlw4ebc.com
  • www.jak4bc.com
  • www.jakc.com
  • www.jakbc.com
  • www.jakvc.com
  • www.jakvbc.com
  • www.jakvc.com
  • www.jak c.com
  • www.jak bc.com
  • www.jak c.com
  • www.jakgc.com
  • www.jakgbc.com
  • www.jakgc.com
  • www.jakjc.com
  • www.jakjbc.com
  • www.jakjc.com
  • www.jaknc.com
  • www.jaknbc.com
  • www.jaknc.com
  • www.jakhc.com
  • www.jakhbc.com
  • www.jakhc.com
  • www.jak.com
  • www.jakc.com
  • www.jakx.com
  • www.jakxc.com
  • www.jakx.com
  • www.jakf.com
  • www.jakfc.com
  • www.jakf.com
  • www.jakv.com
  • www.jakvc.com
  • www.jakv.com
  • www.jakd.com
  • www.jakdc.com
  • www.jakd.com
  • www.jakcb.com
  • www.jakcom
  • www.jak..com
  • www.jak/com
  • www.jak/.com
  • www.jak./com
  • www.jakncom
  • www.jakn.com
  • www.jak.ncom
  • www.jak;com
  • www.jak;.com
  • www.jak.;com
  • www.jaklcom
  • www.jakl.com
  • www.jak.lcom
  • www.jak com
  • www.jak .com
  • www.jak. com
  • www.jak,com
  • www.jak,.com
  • www.jak.,com
  • www.jakmcom
  • www.jakm.com
  • www.jak.mcom
  • www.jak.ccom
  • www.jak.om
  • www.jak.ccom
  • www.jak.xom
  • www.jak.xcom
  • www.jak.cxom
  • www.jak.fom
  • www.jak.fcom
  • www.jak.cfom
  • www.jak.vom
  • www.jak.vcom
  • www.jak.cvom
  • www.jak.dom
  • www.jak.dcom
  • www.jak.cdom
  • www.jakc.om
  • www.jak.cm
  • www.jak.coom
  • www.jak.cpm
  • www.jak.cpom
  • www.jak.copm
  • www.jak.cim
  • www.jak.ciom
  • www.jak.coim
  • www.jak.ckm
  • www.jak.ckom
  • www.jak.cokm
  • www.jak.clm
  • www.jak.clom
  • www.jak.colm
  • www.jak.c0m
  • www.jak.c0om
  • www.jak.co0m
  • www.jak.c:m
  • www.jak.c:om
  • www.jak.co:m
  • www.jak.c9m
  • www.jak.c9om
  • www.jak.co9m
  • www.jak.ocm
  • www.jak.co
  • jak.cxm
  • www.jak.con
  • www.jak.conm
  • jak.cxn
  • www.jak.col
  • www.jak.colm
  • jak.cxl
  • www.jak.co
  • www.jak.co m
  • jak.cx
  • www.jak.cok
  • www.jak.cokm
  • jak.cxk
  • www.jak.co,
  • www.jak.co,m
  • jak.cx,
  • www.jak.coj
  • www.jak.cojm
  • jak.cxj
  • www.jak.cmo
Show All Mistakes Hide All Mistakes