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
[ | |
{ | |
"bank": "markazi", | |
"title": "اداره معاملات ریالی بانک مرکزی", | |
"bin": "636795" | |
}, | |
{ | |
"bank": "sanat", | |
"title": "بانک صنعت و معدن", | |
"bin": "627961" |
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
#!/bin/bash -e | |
# | |
# Copyright (c) 2019-2021 Oracle and/or its affiliates. All rights reserved. | |
# Licensed under the GNU General Public License Version 3 as shown at https://www.gnu.org/licenses/gpl-3.0.txt. | |
# This script is made to generate certificates to run the olcne control plane (agent, api-server and cli) | |
# See the help text for more information | |
# User inputs that can be modified by the CLI | |
DEBUG="false" |
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
// Make sure js-cookies are loaded before this code | |
function verifyAge(gaurdingPage = "./age-verification.html") { | |
if (!Cookies.get("age-verification")) | |
{ | |
Cookies.set("intended", window.location.href); | |
window.location.replace(gaurdingPage); | |
} | |
} | |
function checkAge(homePage = "./index.html", awayPage = "https://www.google.com/?q=") { |
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 | |
// PHP ^7.1 | |
$ar1 = [1,2,5,9,-1,3,4,5]; // test array #1 | |
$ar2 = [1,2,4,4,9,3,4,5,3]; // test array #2 | |
/** | |
* Function that finds indices of x-complements to an element in an array | |
* | |
* @param array arr an array of integer/float numbers | |
* @param int sum the base for complements |
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
(?(DEFINE)(?<delim_date>\/)(?<delim_time>:)(?<delim_datetime>-)(?<delim_fractime>\.)(?<delim_ampm> ))^(?:\d{4}(?&delim_date)(?:0*[1-6](?&delim_date)0*(?:[1-9]|[1-2]\d|3[01])|0*(?:[7-9]|1[01])(?&delim_date)0*(?:[1-9]|[1-2]\d|30))|\d{4}(?&delim_date)0*12(?&delim_date)0*(?:[1-9]|[1-2]\d)|\d{2}(?:[02468][37]|[13579][159])(?&delim_date)0*12(?&delim_date)0*30)(?:(?&delim_datetime)(?:0*(?:\d|1\d|2[0-3])(?&delim_time)0*(?:\d|[1-5]\d)(?&delim_time)0*(?:\d|[1-5]\d)(?:(?&delim_fractime)\d+)?(?!(?&delim_ampm)(?i)(?:AM|PM)(?-i))|0*(?:\d|1[0-2])(?&delim_time)0*(?:\d|[1-5]\d)(?&delim_time)0*(?:\d|[1-5]\d)(?:(?&delim_fractime)\d+)?(?&delim_ampm)(?i)(?:AM|PM)(?-i)))?$ |
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
{ | |
"name": "laravel/laravel", | |
"description": "The Laravel Framework.", | |
"keywords": ["framework", "laravel"], | |
"license": "MIT", | |
"require-dev": { | |
"way/generators": "2.*", | |
"codeception/codeception": "*", | |
"barryvdh/laravel-debugbar": "1.*", | |
"barryvdh/laravel-ide-helper": "1.*", |