| OS version | Arch | File Host | Size | Download Link | Rate Limits |
|---|---|---|---|---|---|
| Windows 1.0 | 8086 | Winworld (Kansas City, Missouri) | 541KB | Download | โ Yes, 25 per day |
| Windows 2.0 | 386 | Winworld (Kansas City, Missouri) | 2.80MB | Download | โ Yes, 25 per day |
| Windows 3.0 | 8086/386 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var geocoder = new google.maps.Geocoder(); | |
| geocoder.geocode({"address":$('#'+settings.findInputId).val()}, function(results, status) { | |
| if (status == google.maps.GeocoderStatus.OK) { | |
| var lat = results[0].geometry.location.lat(), | |
| lng = results[0].geometry.location.lng(), | |
| placeName = results[0].address_components[0].long_name, | |
| latlng = new google.maps.LatLng(lat, lng); | |
| marker.setPosition(latlng); | |
| infowindow.setContent(placeName); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class DefaultController extends Controller | |
| { | |
| /** | |
| * Dashboard page. | |
| * @Permissions(perm="dashboard_view") | |
| * @Route("/", name="ITEDashboardBundle_index") | |
| * @Template() | |
| * @return array |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| prefix="/home/mail" | |
| numPath="$prefix/.num" | |
| if [ ! -f $numPath ]; then | |
| echo "0" > $numPath | |
| chmod 0777 $numPath | |
| fi | |
| num=`cat $numPath` | |
| num=$(($num + 1)) |