Skip to content

Instantly share code, notes, and snippets.

View thib3113's full-sized avatar

Thibaut SEVERAC thib3113

View GitHub Profile
@thib3113
thib3113 / github-metrics.svg
Last active November 1, 2024 00:05
My metrics
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@thib3113
thib3113 / style.css
Created April 4, 2017 09:55
Changement de la taille des notifications sur le site dealabs, plus d'infos :
/* Notifs */
#notifications{
margin-left: 714px;
width: 454px;
}
/* Header */
#notification_header div.notif_message_header_left{
color : #484848;
width:50%;
@thib3113
thib3113 / lambert93ToLong_LAT.php
Created January 28, 2017 15:49
Convert Lamber93 X/Y to GPS long/LAT
<?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;
@thib3113
thib3113 / lock-unlock-verr-num-at-boot-windows.vbs
Created July 3, 2016 14:41
use for set verr num information from boot (lock or not)
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
@thib3113
thib3113 / typing-speed-test.aoeu.eu.cheat.js
Last active September 25, 2018 16:30
http://typing-speed-test.aoeu.eu/ => type fast as your computer can ( copy paste in your console )
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)