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
[info] | |
name = Clean sounds & Short TTS | |
version = 1.3 | |
author = portapipe from MinatoriUnti | |
readonly = 1 | |
[soundfiles] | |
# | |
# Connection | |
# |
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
var province = { | |
'AG' : 'Agrigento', | |
'AL' : 'Alessandria', | |
'AN' : 'Ancona', | |
'AO' : 'Aosta', | |
'AR' : 'Arezzo', | |
'AP' : 'Ascoli Piceno', | |
'AT' : 'Asti', | |
'AV' : 'Avellino', | |
'BA' : 'Bari', |
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
[{ | |
"id": 1, | |
"name": "Afghanistan", | |
"isoAlpha2": "AF", | |
"isoAlpha3": "AFG", | |
"isoNumeric": 4, | |
"currency": { | |
"code": "AFN", | |
"name": "Afghani", | |
"symbol": "؋" |
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 | |
/* | |
* Libreria per la creazione di calendari .ics (Apple e Google calendar per dirne alcuni) | |
* Allego il file ics.php per la creazione | |
* Autore del binomio: portapipe | |
* Codice su Github Gist: https://gist.github.com/portapipe/25306c4260409ea023d1fb2b3f9fbecb | |
*/ | |
$time = time(); |
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 | |
$config["full_tag_open"] = '<ul class="pagination">'; | |
$config["full_tag_close"] = '</ul>'; | |
$config["first_link"] = "«"; | |
$config["first_tag_open"] = "<li>"; | |
$config["first_tag_close"] = "</li>"; | |
$config["last_link"] = "»"; | |
$config["last_tag_open"] = "<li>"; |
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 | |
function guid() | |
{ | |
if (function_exists('com_create_guid') === true) | |
return trim(com_create_guid(), '{}'); | |
$data = openssl_random_pseudo_bytes(16); | |
$data[6] = chr(ord($data[6]) & 0x0f | 0x40); // set version to 0100 | |
$data[8] = chr(ord($data[8]) & 0x3f | 0x80); // set bits 6-7 to 10 | |
return vsprintf('%s%s-%s-%s-%s-%s%s%s', str_split(bin2hex($data), 4)); |
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
<!-- jQuery (comment the next line if you've already loaded it) --> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> | |
<!-- CSS --> | |
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/chosen/1.8.7/chosen.min.css"> | |
< | |
<!-- JS --> | |
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/chosen/1.8.7/chosen.jquery.min.js"></script> | |
<script> |
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
<!-- Bootstrap (comment it if you've already loaded it) --> | |
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script> | |
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet" type="text/css" /> | |
<!-- datePicker --> | |
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.3.0/css/datepicker.css" rel="stylesheet" type="text/css" /> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.3.0/js/bootstrap-datepicker.js"></script> | |
<!-- Fontawesome... you must have it always! => --> | |
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous"> |
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
<html> | |
<head> | |
<script type="text/javascript" src="https://code.jquery.com/jquery-2.2.4.js"></script> | |
<style> | |
.dropzones{ | |
border: 2px dashed grey; | |
height: 80px; | |
text-align: center; | |
padding-top: 40px; | |
cursor: pointer; |
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
<h2 align="center">Ricerca real-time in jQuery</h2> | |
<br/> | |
<div class="row "> | |
<div class="panel-group"> | |
<input type="text" id="filtro" class="form-control" placeholder="Cerca qualcosa, ad esempio 'spaghetti'" /> | |
<br/> | |
<div class="contenuto"> | |
A Milano ci sono degli ottimi ristoranti! |
OlderNewer