cemdogan.com Report : Visit Site


  • Ranking Alexa Global: # 7,996,155

    Server:Apache...

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

    The description :skip to content f30 wing mirror retrofit notes retrofitting dimming and folding mirrors requires 2 cables to passenger mirror. lin bus and power. old mirror pin layout (6 pins) mirror heating –> no...

    This report updates in 24-Aug-2018

Created Date:2007-02-07
Changed Date:2017-05-01

Technical data of the cemdogan.com


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host cemdogan.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/"
Date:Thu, 23 Aug 2018 20:19:28 GMT
Content-Type:text/html; charset=UTF-8

DNS

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

HtmlToText

skip to content f30 wing mirror retrofit notes retrofitting dimming and folding mirrors requires 2 cables to passenger mirror. lin bus and power. old mirror pin layout (6 pins) mirror heating –> not used turn indicator –> pin 2 ground –> pin 3 vertical adjustment –> not used ground –> pin 4 horizontal adjustment –> not used new mirror pin layout (5 pins) empty turn indicator turn indicator ground ground (heating and folding) lin bus power i’ve connected lin from a173*4b pin 27 which was already empty. i ran the cable to the mirror. and for power i used the rear fuse box. the missing ground cable is connected to pin 3. driver’s side is plug and play. install your new mirror and window switch. after finishing connections add 430 to fa and code fem vo. enjoy. author cemdogan posted on 08/04/2018 08/04/2018 categories cars tags bmw , dimming , f30 , folding , pin layout , retrofit , side mirrors leave a comment on f30 wing mirror retrofit notes trigger aws lambda function from s3 to windows with aws ssm preparations; – create your lambda, and connect trigger from s3 as shown below. – grant permissions for your lambda. (use the key icon on the left) – after installing ssm agent to your instance, grant amazonssm rights to your instance. action in python; #09-03-2018 – cem dogan import boto3 import json def lambda_handler(event, context): records = [x for x in event.get(‘records’, []) if x.get(‘eventname’) == ‘objectcreated:put’] sorted_events = sorted(records, key=lambda e: e.get(‘eventtime’)) latest_event = sorted_events[-1] if sorted_events else {} info = latest_event.get(‘s3’, {}) file_key = info.get(‘object’, {}).get(‘key’) bucket_name = info.get(‘bucket’, {}).get(‘name’) command = ‘c:\folder\your_psscript.ps1 ‘ + file_key print command ssm = boto3.client(‘ssm’) ssmresponse = ssm.send_command(instanceids=[‘i-instanceid’], documentname=’aws-runpowershellscript’, parameters= { ‘commands’: [command] } ) return ssmresponse file_key will have the name of the file uploaded to s3 bucket. and bucket_name has the name of the bucket. you can pass these values as argument to your ps script. you can create an s3 put test example and test your code. author cemdogan posted on 13/03/2018 13/03/2018 categories uncategorized tags aws , lambda , powershell , python , ssm leave a comment on trigger aws lambda function from s3 to windows with aws ssm collecting ssl expiration information this small function gathers expiry information from an ssl certificate and calculates days remaining until expire. you may query multiple domains by calling get_cert_exp function in a loop. enjoy! <?php function get_cert_exp($url){ $orignal_parse = parse_url($url, php_url_host); $get = stream_context_create(array(“ssl” => array(“capture_peer_cert” => true))); $read = stream_socket_client(“ssl://”.$orignal_parse.”:443″, $errno, $errstr, 30, stream_client_connect, $get); $cert = stream_context_get_params($read); $certinfo = openssl_x509_parse($cert[‘options’][‘ssl’][‘peer_certificate’]); //$expired= getdate($certinfo[validto]); $end=($certinfo[validto]); $end=substr($end, 0, -1); //remove last char from string $chunks = str_split($end, 2); //convert array to string. each element separated by the given separator. $expire_date = implode(‘:’, $chunks); $expire_date=’20’.$expire_date; // days left to expire date // $gd_a = getdate( $certinfo[‘validto_time_t’] ); $gd_b = getdate( time() ); $a_new = mktime( 12, 0, 0, $gd_a[‘mon’], $gd_a[‘mday’], $gd_a[‘year’] ); $b_new = mktime( 12, 0, 0, $gd_b[‘mon’], $gd_b[‘mday’], $gd_b[‘year’] ); $days_left=round( abs( $a_new – $b_new ) / 86400 ); // end of calculation // if ($days_left <= 50 ) { $days_left=”<b><font color=red>”.$days_left.”</font></b>”; }else{ $days_left=”<b><font color=green>”.$days_left.”</font></b>”; } echo “ssl certificate of <b> $url </b>is valid until “.$expire_date.'</br>’; echo “days remaining until expiration : “. $days_left.'</br>’; } get_cert_exp(“https://your.nice.expiring.domain/”); ?> author cemdogan posted on 23/07/2017 23/07/2017 categories php tags certificate , expire , expiry , php , ssl 1 comment on collecting ssl expiration information collecting ibm v7000 and netapp storage information with php i wrote this small code for our early morning checks to see the summary of ibm v700 and netapp storage systems. this simply collects failed disks, aggregates, volumes and battery status information and alerts of each system for managerial reports on request. or, can be situated at intranet portal. enjoy! <?php include_once(‘header.php’); //here you have session and menu information // //20-01-2016 – cem dogan // // report all php errors #error_reporting(e_all); //required php libraries for ssh connection. php net_ssh2 set_include_path(‘lib/’); include(‘net/ssh2.php’); include(‘file/ansi.php’); $filer_username=”your-read-only-user”; $filer_password=”your-password”; function visit_ssh($server, $username, $password, $command) { #echo $server, $username, $password, $command; $ssh = new net_ssh2($server); if (!$ssh->login($username, $password)) { return (‘login failed’); } else { return $ssh->exec($command); } } ///////////////////////////////// //ibm v7000 part / ///////////////////////////////// $v7000_ip = array( “ams-sv7-01″=>”10.104.1.183”, “dus-sv7-01″=>”10.104.14.110”, ); foreach($v7000_ip as $x => $x_value){ echo ‘<h6><u>’.$x.’ ‘.$curdate.’ : </u></h6>’; echo ‘<pre>’; echo “<u>pool usage;</u></br>”; $filer_result=visit_ssh($x_value, $filer_username, $filer_password, “lsmdiskgrp -delim :”); // echo $filer_result; $lines = explode(php_eol, $filer_result); //put every line into array $lines=array_filter($lines); //clean empty array objects $line_counter=0; $line_count=count($lines); echo ‘<table>’; foreach ($lines as $line) { $item= explode(‘:’, $line); echo ‘<tr>’; if ($line_counter == 0) { //display table header echo “<th>$item[0]</th>”;//id echo “<th>$item[1]</th>”;//name echo “<th>$item[2]</th>”;//status echo “<th>$item[5]</th>”;//capacity echo “<th>$item[7]</th>”;//free capacity echo “<th>$item[15]</th>”;//compression active } else { // table content echo “<td>$item[0]</td>”; echo “<td>$item[1]</td>”; echo “<td>”; if (preg_match(‘/online/’,$item[2])) { echo “<b><font color=green>$item[2]</font></b>”; }else { echo “<font color=red>”.$item[2].”</font>”; } echo “</td>”; echo “<td>$item[5]</td>”; echo “<td>$item[7]</td>”; echo “<td>$item[15]</td>”; } echo ‘</tr>’; $line_counter++; } echo ‘</table>’; echo “<u>battery status;</u> </br>”; $filer_result=visit_ssh($x_value, $filer_username, $filer_password, “lsenclosurebattery -delim :”); $lines = explode(php_eol, $filer_result); //put every line into array $lines=array_filter($lines); //clean empty array objects $line_counter=0; $line_count=count($lines); echo ‘<table>’; foreach ($lines as $line) { $item= explode(‘:’, $line); echo ‘<tr>’; if ($line_counter == 0) { //display table header echo “<th>$item[0]</th>”;//enclosure_id echo “<th>$item[1]</th>”;//battery_id echo “<th>$item[2]</th>”;//status echo “<th>$item[3]</th>”;//charging_status echo “<th>$item[4]</th>”;//recondition_needed echo “<th>$item[5]</th>”;//percent_charged echo “<th>$item[6]</th>”;//end_of_life_warning } else { // table content echo “<td>$item[0]</td>”; echo “<td>$item[1]</td>”; echo “<td>”; if (preg_match(‘/online/’,$item[2])) { echo “<b><font color=green>$item[2]</font></b>”; }else { echo “<font color=red>”.$item[2].”</font>”; } echo “</td>”; echo “<td>

URL analysis for cemdogan.com


http://cemdogan.com/2018/03/
http://cemdogan.com/tag/installation/
http://cemdogan.com/tag/failed-disks/
http://cemdogan.com/tag/f31/
http://cemdogan.com/2016/04/21/redirecting-all-http-requests-to-https-by-redirectmatch/
http://cemdogan.com/2017/05/
http://cemdogan.com/tag/aws/
http://cemdogan.com/page/2/
http://cemdogan.com/tag/dimming-mirror/
http://cemdogan.com/tag/certificate/
http://cemdogan.com/tag/pin-layout/
http://cemdogan.com/2011/04/19/ps3-dualshock-3-r3-tamiri/#comment-13
http://cemdogan.com/2011/04/19/ps3-dualshock-3-r3-tamiri/#comment-14
http://cemdogan.com/2011/04/19/ps3-dualshock-3-r3-tamiri/#comment-15
http://cemdogan.com/tag/retrofit/

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: CEMDOGAN.COM
Registry Domain ID: 799112719_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.godaddy.com
Registrar URL: http://www.godaddy.com
Updated Date: 2017-05-01T18:58:26Z
Creation Date: 2007-02-07T07:41:55Z
Registry Expiry Date: 2021-02-07T07:41:55Z
Registrar: GoDaddy.com, LLC
Registrar IANA ID: 146
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: 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: 2019-01-14T23:19:12Z <<<

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 GoDaddy.com, LLC

SERVERS

  SERVER com.whois-servers.net

  ARGS domain =cemdogan.com

  PORT 43

  TYPE domain

DOMAIN

  NAME cemdogan.com

  CHANGED 2017-05-01

  CREATED 2007-02-07

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

  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.ucemdogan.com
  • www.7cemdogan.com
  • www.hcemdogan.com
  • www.kcemdogan.com
  • www.jcemdogan.com
  • www.icemdogan.com
  • www.8cemdogan.com
  • www.ycemdogan.com
  • www.cemdoganebc.com
  • www.cemdoganebc.com
  • www.cemdogan3bc.com
  • www.cemdoganwbc.com
  • www.cemdogansbc.com
  • www.cemdogan#bc.com
  • www.cemdogandbc.com
  • www.cemdoganfbc.com
  • www.cemdogan&bc.com
  • www.cemdoganrbc.com
  • www.urlw4ebc.com
  • www.cemdogan4bc.com
  • www.cemdoganc.com
  • www.cemdoganbc.com
  • www.cemdoganvc.com
  • www.cemdoganvbc.com
  • www.cemdoganvc.com
  • www.cemdogan c.com
  • www.cemdogan bc.com
  • www.cemdogan c.com
  • www.cemdogangc.com
  • www.cemdogangbc.com
  • www.cemdogangc.com
  • www.cemdoganjc.com
  • www.cemdoganjbc.com
  • www.cemdoganjc.com
  • www.cemdogannc.com
  • www.cemdogannbc.com
  • www.cemdogannc.com
  • www.cemdoganhc.com
  • www.cemdoganhbc.com
  • www.cemdoganhc.com
  • www.cemdogan.com
  • www.cemdoganc.com
  • www.cemdoganx.com
  • www.cemdoganxc.com
  • www.cemdoganx.com
  • www.cemdoganf.com
  • www.cemdoganfc.com
  • www.cemdoganf.com
  • www.cemdoganv.com
  • www.cemdoganvc.com
  • www.cemdoganv.com
  • www.cemdogand.com
  • www.cemdogandc.com
  • www.cemdogand.com
  • www.cemdogancb.com
  • www.cemdogancom
  • www.cemdogan..com
  • www.cemdogan/com
  • www.cemdogan/.com
  • www.cemdogan./com
  • www.cemdoganncom
  • www.cemdogann.com
  • www.cemdogan.ncom
  • www.cemdogan;com
  • www.cemdogan;.com
  • www.cemdogan.;com
  • www.cemdoganlcom
  • www.cemdoganl.com
  • www.cemdogan.lcom
  • www.cemdogan com
  • www.cemdogan .com
  • www.cemdogan. com
  • www.cemdogan,com
  • www.cemdogan,.com
  • www.cemdogan.,com
  • www.cemdoganmcom
  • www.cemdoganm.com
  • www.cemdogan.mcom
  • www.cemdogan.ccom
  • www.cemdogan.om
  • www.cemdogan.ccom
  • www.cemdogan.xom
  • www.cemdogan.xcom
  • www.cemdogan.cxom
  • www.cemdogan.fom
  • www.cemdogan.fcom
  • www.cemdogan.cfom
  • www.cemdogan.vom
  • www.cemdogan.vcom
  • www.cemdogan.cvom
  • www.cemdogan.dom
  • www.cemdogan.dcom
  • www.cemdogan.cdom
  • www.cemdoganc.om
  • www.cemdogan.cm
  • www.cemdogan.coom
  • www.cemdogan.cpm
  • www.cemdogan.cpom
  • www.cemdogan.copm
  • www.cemdogan.cim
  • www.cemdogan.ciom
  • www.cemdogan.coim
  • www.cemdogan.ckm
  • www.cemdogan.ckom
  • www.cemdogan.cokm
  • www.cemdogan.clm
  • www.cemdogan.clom
  • www.cemdogan.colm
  • www.cemdogan.c0m
  • www.cemdogan.c0om
  • www.cemdogan.co0m
  • www.cemdogan.c:m
  • www.cemdogan.c:om
  • www.cemdogan.co:m
  • www.cemdogan.c9m
  • www.cemdogan.c9om
  • www.cemdogan.co9m
  • www.cemdogan.ocm
  • www.cemdogan.co
  • cemdogan.comm
  • www.cemdogan.con
  • www.cemdogan.conm
  • cemdogan.comn
  • www.cemdogan.col
  • www.cemdogan.colm
  • cemdogan.coml
  • www.cemdogan.co
  • www.cemdogan.co m
  • cemdogan.com
  • www.cemdogan.cok
  • www.cemdogan.cokm
  • cemdogan.comk
  • www.cemdogan.co,
  • www.cemdogan.co,m
  • cemdogan.com,
  • www.cemdogan.coj
  • www.cemdogan.cojm
  • cemdogan.comj
  • www.cemdogan.cmo
Show All Mistakes Hide All Mistakes