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
CREATE FUNCTION shapedescr_sizes( | |
-- Shape-descriptor "as rectangle" for geometry description by sizes. | |
gbase geometry, -- input | |
-- p_seqs integer DEFAULT 8, -- deprecated? for st_buffer(g,w,p_seqs) or point-buffer inference | |
-- p_shape varchar DEFAULT '', -- will be endcap indicator | |
p_decplacesof_zero integer DEFAULT 6, -- precision of zero when rounding delta | |
p_dwmin float DEFAULT 99999999.0, -- change to ex. 0.0001, if to use. | |
p_deltaimpact float DEFAULT 9999.0 -- internal (maximized by probability of negative delta) | |
) RETURNS float[] AS $f$ | |
DECLARE |
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 | |
/** | |
* Organiza dados em "estrutura BrasilProtestos2013-estimCidadeFontes" | |
* dispostos no anexo do artigo "Protestos no Brasil em 2013" da Wikipedia. | |
* NOTA: proxima versao no forno, classes e traducao XML. | |
* http://pt.wikipedia.org/wiki/Protestos_no_Brasil_em_2013 | |
* http://pt.wikipedia.org/wiki/Anexo:Lista_de_cidades_participantes_dos_protestos_no_Brasil_em_2013 | |
* http://pt.wikipedia.org/wiki/Predefini%C3%A7%C3%A3o:BrasilProtestos2013-estimCidadeFontes . | |
*/ | |
header('Content-type: text/html; charset=UTF-8;' );// for txt and HTML source-code |
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 | |
/** | |
* DOMDocument for "Rapid application development". | |
* Do by overloading all DOMDocument methods, and add specialized methods. | |
* v0.1 2013-07-20 by ppkrauss, https://gist.github.com/ppKrauss/6099610 | |
* | |
* Convention over configuration: UTF8, etc. by convention. | |
* Like fDOMDocument, BetterDOMDocument, FluentDOM, etc, to be | |
* a (more frindly interface) wrapper to DOMDocument methods. | |
* Like BetterDOMDocument and fDOMDocument, but NOT extends DOMDocument |
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 | |
/** | |
* Detect language by trigram sample analysis. | |
* Adapted by ppkrauss from http://www.corpuswiki.org/langdetect.html | |
*/ | |
class LangDetect { | |
private $models; | |
private $universeConfig; | |
private $universeOnDetection; | |
private $isoTr3to2; |
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 | |
/** | |
* Simple benchmark-base for use in any simple benchmarking task. | |
* Use at terminal as $php benchmark_base.php | |
* For more complex or memory usage, see | |
* http://php.net/manual/en/ref.xhprof.php | |
* http://php.net/manual/en/function.set-time-limit.php | |
* http://php.net/manual/en/features.gc.performance-considerations.php | |
* From https://gist.github.com/ppKrauss/4cd3c9a5f7cec89be68e | |
*/ |
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
/** | |
* JSON-RPC interface. Mini-lib, independent. | |
* Works fine with REST. | |
* See http://www.jsonrpc.org/specification (only error/code convention have little change) | |
* Free error string code: | |
* "$integer" = "$integer.0" = HTTP status code (only REST) | |
* "$integer.$integer" = status and internal error code (DEFAULT) | |
* use function rpc.errcode_merge() to merge default error reference and add internal part. | |
*/ |
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
/** | |
* object_summable and "Merge sum" functions are for JSONb key-number objects, | |
* most usually key-integer for counting, like json-bags. | |
* They are "key counters", so, to merge two keys, the intValues must be added. | |
* Change the core of jsonb_merge_sum(jsonb,jsonb) to the correct datatype. | |
* The JSON "number" is equivalent to the SQL's ::numeric. | |
* Any invalid or empty JSONb object will be represented as SQL NULL. | |
*/ | |
CREATE or replace FUNCTION jsonb_is_summable(jsonb) RETURNS boolean AS $f$ |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Simple chart with C3 - in 5 minutes! </title> | |
<!-- Here are all the javascripts and css that you need, you can download them or linked them like here --> | |
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/d3/5.9.7/d3.min.js"></script> | |
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/c3/0.7.1/c3.js"></script> | |
<link href="http://cdnjs.cloudflare.com/ajax/libs/c3/0.7.1/c3.css" rel="stylesheet" type="text/css"> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="description" content="showing C3js bug"> | |
<meta charset="utf-8"> | |
<title>Simple chart with C3 - in 5 minutes! </title> | |
<!-- Here are all the javascripts and css that you need, you can download them or linked them like here --> | |
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/d3/5.9.7/d3.min.js"></script> | |
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/c3/0.7.1/c3.js"></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
license: mit |
OlderNewer