I hereby claim:
- I am gaissa on github.
- I am gaissa (https://keybase.io/gaissa) on keybase.
- I have a public key ASD2kKJxipo-asB1E6aSNHechREdQBJpjflyx93KicG1bgo
To claim this, I am signing this object:
/** | |
*Submitted for verification at Etherscan.io on 2021-09-05 | |
*/ | |
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.0; | |
/// [MIT License] | |
/// @title Base64 |
// SPDX-License-Identifier: MIT | |
// Source: | |
// https://github.com/ensdomains/ens-contracts/blob/master/contracts/ethregistrar/StringUtils.sol | |
pragma solidity >=0.8.4; | |
library StringUtils { | |
/** | |
* @dev Returns the length of a given string | |
* | |
* @param s The string to measure the length of |
I hereby claim:
To claim this, I am signing this object:
git rm --cached `git ls-files -i --exclude-from=.gitignore` |
UPDATE 2014-12-21: RubyGems 1.8.30, 2.0.15 and 2.2.3 have been released. It requires manual installation, please see instructions below.
Hello,
If you reached this page, means you've hit this SSL error when trying to
jQuery('<SELECTOR>').prop("onclick", null).attr("onclick", null); |
<?php | |
/* | |
* Virtual Themed Page class | |
* | |
* This class implements virtual pages for a plugin. | |
* | |
* It is designed to be included then called for each part of the plugin | |
* that wants virtual pages. | |
* | |
* It supports multiple virtual pages and content generation functions. |
private function sort_array_by_value(&$array, $subfield) | |
{ | |
$sortarray = array(); | |
foreach ($array as $key => $row) | |
{ | |
$sortarray[$key] = $row[$subfield]; | |
} | |
array_multisort($sortarray, SORT_ASC, $array); |
<?php | |
/** | |
* Abstract class which has helper functions to get data from the database | |
*/ | |
abstract class Base_Custom_Data | |
{ | |
/** | |
* The current table name | |
* |
<?php | |
// Variables used in this script: | |
// $summary - text title of the event | |
// $datestart - the starting date (in seconds since unix epoch) | |
// $dateend - the ending date (in seconds since unix epoch) | |
// $address - the event's address | |
// $uri - the URL of the event (add http://) | |
// $description - text description of the event | |
// $filename - the name of this file for saving (e.g. my-event-name.ics) | |
// |