This file contains hidden or 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
/** | |
* Calculates the Modulo 11 for generating the verification digit of bank slips and bank accounts. | |
* | |
* @author Pablo Costa <[email protected]> | |
* @link www.febraban.org.br | |
* | |
* @param {string} num Numeric string for which the verification digit is to be calculated. | |
* @param {number} [base=9] Maximum value of multiplication. | |
* @param {number} [r=0] Specifies the return type. If 0, returns the verification digit, if 1 returns the remainder. | |
* |
This file contains hidden or 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 parse_block($block) { | |
$return = [ | |
'version' => null, | |
'prevBlockHash' => null, | |
'merkleRoot' => null, | |
'timestamp' => null, | |
'target' => null, | |
'nonce' => null |
This file contains hidden or 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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
char* urlencode(char* originalText) | |
{ | |
// allocate memory for the worst possible case (all characters need to be encoded) | |
char *encodedText = (char *)malloc(sizeof(char)*strlen(originalText)*3+1); | |
This file contains hidden or 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,body { | |
height: 100%; | |
user-select: none; | |
} | |
.container-fixed { | |
bottom: 0; | |
position: fixed; | |
left: 0; | |
right: 0; |
This file contains hidden or 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
; https://www.autoitscript.com/forum/topic/193141-storageau3-localstorage-and-sessionstorage/ | |
; sessionStorage (temporary) | |
; add or modify a key | |
sessionStorage("foo", "bar") | |
store("foo", "bar") | |
sessionStorage_set("foo", "bar") | |
sessionStorage_setItem("foo", "bar") |
This file contains hidden or 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 | |
// Firebase Cloud Messaging Authorization Key | |
define('FCM_AUTH_KEY', 'your key here'); | |
function sendPush($to, $title, $body, $icon, $url) { | |
$postdata = json_encode( | |
[ | |
'notification' => | |
[ |
This file contains hidden or 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 | |
define('SENDGRID_KEY', 'SG.your api key here'); | |
function sendgrid($from, $to, $subject, $message) { | |
$postdata = json_encode( | |
array( | |
'personalizations' => [ | |
[ | |
'to' => [ |
This file contains hidden or 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
#include <Array.au3> ; need only to do _ArrayDisplay, not needed by the lib | |
_ArrayDisplay(ParseStr("foo=bar&test=lol%20123")) | |
#cs | |
Result is: | |
[0][0] = 2 | |
[0][1] = ununsed | |
[1][0] = foo |
This file contains hidden or 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
#include <Array.au3> | |
#Region Math | |
; http://sabemosdetudo.com/ciencias/ask67749-O_que_sao_numeros_relativamente_primos.html | |
Func RelativelyPrime($x, $y) | |
Return gdc($x, $y) = 1 | |
EndFunc | |
; http://stackoverflow.com/a/21480873 | |
Func gdc($a, $b) |
This file contains hidden or 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 | |
/* | |
All Ini-related functions from AutoIt are available. | |
Just add the paamayim nekudotayim (::) between "Ini" and the functio. | |
E.g.: IniWrite becomes Ini::Write, IniReadSectionNames becomes Ini::ReadSectionNames | |
Docs: https://www.autoitscript.com/autoit3/docs/functions/IniWrite.htm | |
*/ | |
include 'phpini.class.php'; |
NewerOlder