Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
/* Notifs */ | |
#notifications{ | |
margin-left: 714px; | |
width: 454px; | |
} | |
/* Header */ | |
#notification_header div.notif_message_header_left{ | |
color : #484848; | |
width:50%; |
This file contains 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 Lambert93ToGPS{ | |
static $DEFAULT_EPS = 1e-10; | |
static $E_WGS84 = 0.08181919106; | |
static $N = 0.7256077650; | |
static $C = 11754255.426; | |
static $XS = 700000.000; | |
static $YS = 12655612.050; |
This file contains 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
success = false | |
Do | |
strAnswer = InputBox("Choose value :" + vbNewLine + "0 = Num Lock is turned OFF after the logon." + vbNewLine + "1 = Disable Num Lock." + vbNewLine + "2 = Numlock is turned ON after the logon.", "Create File") | |
Select Case strAnswer | |
Case 0 | |
success = true | |
Case 1 | |
success = true |
This file contains 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
number_words = $("#words span").length; | |
var start = Date.now(); | |
$("#words span").each(function(){ | |
text = $(this).text()+" "; | |
for (var i = 0; i < text.length; i++) { | |
code = text.charCodeAt(i); | |
var e = $.Event("keydown", { keyCode: code}); | |
var _e = $.Event("keyup", { keyCode: code}); | |
$("#input").val($("#input").val()+text[i]); | |
$speedtest.keydown($("#input").get(0), e) |