Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View JoaquinRuiz's full-sized avatar

Joaquín Ruiz JoaquinRuiz

View GitHub Profile
@JoaquinRuiz
JoaquinRuiz / ajax-json.html
Created February 22, 2019 17:20
AJAX and JSON guide for beginners
<button type="button" onclick="getJSON()">Get the users</button>
<table id="users"></div>
<script>
function getJSON() {
var ajax_req = new XMLHttpRequest();
ajax_req.open('GET', 'https://api.github.com/users', true);
ajax_req.onload = function() {
//status 200 means everything is ok
@JoaquinRuiz
JoaquinRuiz / replace-tilde.php
Created June 22, 2019 16:49
replace tilde php without codification
$unwanted_array = array( 'Š'=>'S', 'š'=>'s', 'Ž'=>'Z', 'ž'=>'z', 'À'=>'A', 'Á'=>'A', 'Â'=>'A', 'Ã'=>'A', 'Ä'=>'A', 'Å'=>'A', 'Æ'=>'A', 'Ç'=>'C', 'È'=>'E', 'É'=>'E',
'Ê'=>'E', 'Ë'=>'E', 'Ì'=>'I', 'Í'=>'I', 'Î'=>'I', 'Ï'=>'I', 'Ñ'=>'N', 'Ò'=>'O', 'Ó'=>'O', 'Ô'=>'O', 'Õ'=>'O', 'Ö'=>'O', 'Ø'=>'O', 'Ù'=>'U',
'Ú'=>'U', 'Û'=>'U', 'Ü'=>'U', 'Ý'=>'Y', 'Þ'=>'B', 'ß'=>'Ss', 'à'=>'a', 'á'=>'a', 'â'=>'a', 'ã'=>'a', 'ä'=>'a', 'å'=>'a', 'æ'=>'a', 'ç'=>'c',
'è'=>'e', 'é'=>'e', 'ê'=>'e', 'ë'=>'e', 'ì'=>'i', 'í'=>'i', 'î'=>'i', 'ï'=>'i', 'ð'=>'o', 'ñ'=>'n', 'ò'=>'o', 'ó'=>'o', 'ô'=>'o', 'õ'=>'o',
'ö'=>'o', 'ø'=>'o', 'ù'=>'u', 'ú'=>'u', 'û'=>'u', 'ý'=>'y', 'þ'=>'b', 'ÿ'=>'y' );
$str = strtr( $str, $unwanted_array );