Pages

Tuesday, February 11, 2014

Simple HTML5 script and google map.

Today I found one old html script ( few ages ago ). In the past I worked with html5 and this is simple example I make it.
The 'simple script and can be use with any features of google API.
About Google API you can learn more from developers google maps.
Let's see this script :
<html>
<head>

<style type="text/css">
  html { height: 100% }
  body { height: 100%; margin: 10px; padding: 10px }
  #map_canvas { height: 50% }
</style>
<script src="//maps.google.com/maps/api/js?sensor=true" type="text/javascript">
</script>
<script type="text/javascript">
  function initialize() {
    var latlng = new google.maps.LatLng(33, 16);
    var myOptions = {
      zoom: 2,
      center: latlng,
      mapTypeId: google.maps.MapTypeId.TERRAIN 
    };
    var map = new google.maps.Map(document.getElementById("map_canvas"),
        myOptions);
  }

</script>
</head>
<body onload="initialize()">
  <div id="map_canvas" style="height: 50%; width: 100%;">
</div>
</body>
</html>

Fedora style - airport security OS .

... the airport computer has a new operating system ... Fedora .


Wednesday, January 15, 2014

Linux - NVIDIA has released R331.38 drivers

NVIDIA has released a new set of graphics drivers for Linux, Solaris and FreeBSD.
R331.38 comes with bugfixes and OpenGL improvements.
Also R331.38 is an OpenGL 4.4 and exposes 291 GL extensions + 28 GLX extensions. Read more about this here.

Wednesday, December 25, 2013

Moving a city to Linux would save it over €11 million.

"The Munich city authority migrated around 14,800 of the 15,000 or so PCs on its network to LiMux, its own Linux distribution based on Ubuntu, exceeding its initial goal of migrating 12,000 desktops."
... and this would save it over €11 million. You can read more about this here.

Saturday, December 21, 2013

News about google : Google Compute Engine is now Generally Available

The last newsletter from Google comes with ...

Google Compute Engine is now Generally Available with a 99.95% monthly SLA and 24x7 support. We've eliminated maintenance windows with live migration, cut prices by 10%, added support for Red Hat, SUSE, FreeBSD, or any Linux variant you want, and introduced new 16-core instances.

Google Compute Engine is Generally Available (GA), offering virtual machines that are performant, scalable, reliable, and offer industry-leading security features like encryption of data at rest.
Also, the Compute Engine supported two of the most popular Linux distributions, Debian and Centos and support for SUSE and Red Hat Enterprise Linux (in Limited Preview) and FreeBSD.



Sunday, December 1, 2013

Using SOHO LASCO C3 instrument from helioviewer website I saw the comet C/2012 S1 ISON.
I make one python script to take this image using sunpy ... (see here)

Monday, October 28, 2013

Using Codenvy with Google App Engine – testing with default python project .

Today I tested Codenvy with Google App Engine.
Is easy to make all settings ... I test it default project from Codenvy.
Is working very well.
See more in this tutorial.