layout : lab title : jQuery LoadingOverlay description : A flexible loading overlay jQuery plugin updated : 2018-09-24 getit : github : gasparesganga/jquery-loading-overlay download : true npm : gasparesganga-jquery-loading-overlay bower : gasparesganga-jquery-loading-overlay
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
[ | |
{"name": "product_name", "type": "string", "unique_values": "10", "samples": ["Call of Duty", "FIFA 2023", "Fable III"]} | |
] |
NokiaTool is a simple Bash script (nokiatool.sh
) that allows you to use an undocumented serial connection in USB-enabled MediaTek-based Nokia feature phones manufactured by Microsoft (even the most basic ones, like the new 105) in order to control them from your PC.
This project is an ongoing work and uses only some bits and pieces of information about the phone internals available to the public, so under any circumstances don't consider it stable or a replacement for official tools if any are present.
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 array_data = [["Romania","Alba","Urban","Aiud"],["Romania","Alba","Urban","Alba iulia"],["Romania","Alba","Urban","Baia de aries"],["Romania","Alba","Urban","Blaj"],["Romania","Alba","Urban","Campeni"],["Romania","Alba","Urban","Cugir"],["Romania","Alba","Urban","Ocna mures"],["Romania","Alba","Urban","Sebes"],["Romania","Alba","Urban","Teius"],["Romania","Alba","Urban","Zlatna"],["Romania","Alba","Rural","Albac"],["Romania","Alba","Rural","Almasu mare"],["Romania","Alba","Rural","Arieseni"],["Romania","Alba","Rural","Avram iancu"],["Romania","Alba","Rural","Berghin"],["Romania","Alba","Rural","Bistra"],["Romania","Alba","Rural","Blandiana"],["Romania","Alba","Rural","Bucerdea granoasa"],["Romania","Alba","Rural","Bucium"],["Romania","Alba","Rural","Calnic"],["Romania","Alba","Rural","Cenade"],["Romania","Alba","Rural","Cergau"],["Romania","Alba","Rural","Ceru-bacainti"],["Romania","Alba","Rural","Cetatea de balta"],["Romania","Alba","Rural","Ciugud"],["Romania","Alba","Rural","Ciuruleasa"],["Romania","Al |
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
validator.addRule( | |
'customer-type-validation', | |
function (value) { | |
console.log(value); | |
var customerTypeSelector = $('[name=custom_attributes\\[customer_type\\]] option:selected').text(); | |
console.log(customerTypeSelector); | |
if(value === 'hello') { | |
return true; | |
} else { | |
return false; |
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 MY_Loader extends CI_Loader { | |
public function template($template_name, $vars = array(), $return = FALSE) | |
{ | |
if($return): | |
$content = $this->view('templates/header', $vars, $return); | |
$content .= $this->view($template_name, $vars, $return); | |
$content .= $this->view('templates/footer', $vars, $return); | |
return $content; |
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
-- Levenshtein function | |
-- Source: https://openquery.com.au/blog/levenshtein-mysql-stored-function | |
-- Levenshtein reference: http://en.wikipedia.org/wiki/Levenshtein_distance | |
-- Arjen note: because the levenshtein value is encoded in a byte array, distance cannot exceed 255; | |
-- thus the maximum string length this implementation can handle is also limited to 255 characters. | |
DELIMITER $$ | |
DROP FUNCTION IF EXISTS LEVENSHTEIN $$ | |
CREATE FUNCTION LEVENSHTEIN(s1 VARCHAR(255) CHARACTER SET utf8, s2 VARCHAR(255) CHARACTER SET utf8) |
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 | |
/** | |
* Clasa face transpunerea numerelor in cuvinte | |
* E dezvoltata doar pentru limba ROMANA | |
**/ | |
class NConv { | |
/** | |
* Methoda de separare a grupurilor de 3 cifre, si conversie (functie de nivel) | |
* Va returna [NaN] daca parametrul de intrare $num nu e numeric |
I hereby claim:
- I am albertomario on github.
- I am albertomario (https://keybase.io/albertomario) on keybase.
- I have a public key ASBVNmGjDG7Nyu9l9klzcgPLOe4UhLf0F1JqQLzShWd3bwo
To claim this, I am signing this object:
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 | |
namespace Phasic\Core; | |
class Router { | |
private static $routes = array(); | |
private function __construct() {} | |
private function __clone() {} |
NewerOlder