Example inputs:
| Variable | Value |
|---|---|
| key | the shared secret key here |
| message | the message to hash here |
Reference outputs for example inputs above:
| Type | Hash |
Example inputs:
| Variable | Value |
|---|---|
| key | the shared secret key here |
| message | the message to hash here |
Reference outputs for example inputs above:
| Type | Hash |
| #!/usr/bin/env php | |
| <?php | |
| /** | |
| * Magic 8 Ball IRC bot | |
| * Created by Lance Brignoni | |
| * Converted to PHP by Arnold Daniels | |
| * This program is free software; you can redistribute it and/or modify | |
| * it under the terms of the GNU General Public License as published by | |
| * the Free Software Foundation; either version 3 of the License, or | |
| * (at your option) any later version. |
| #!/bin/bash | |
| #### | |
| # Split MySQL dump SQL file into one file per table | |
| # based on http://blog.tty.nl/2011/12/28/splitting-a-database-dump | |
| #### | |
| if [ $# -lt 1 ] ; then | |
| echo "USAGE $0 DUMP_FILE [TABLE]" | |
| exit |
| #!/bin/env python | |
| from openai import OpenAI | |
| import sys | |
| import os | |
| import argparse | |
| def translate_stdin_to_stdout(target_language, translate_lines=False, translate_po=False, instructions=""): | |
| client = OpenAI() |
| //this script is based on coding by Reverse Fad http://www.revfad.com | |
| function flip() { | |
| var result = flipString(document.f.original.value.toLowerCase()); | |
| document.f.flipped.value = result; | |
| } | |
| function flipString(aString) { | |
| var last = aString.length - 1; | |
| var result = new Array(aString.length) | |
| for (var i = last; i >= 0; --i) { | |
| var c = aString.charAt(i) |
| <?php | |
| /** | |
| * Stream filter to convert HTML5 to XML. | |
| * | |
| * <code> | |
| * $dsn = "php://filter/read=htmltoxml/resource=" . $url; | |
| * $xml = XMLReader::open($dsn); | |
| * </code> | |
| * |
| cmake_minimum_required(VERSION 3.8) | |
| project(php C) | |
| # 32bit or 64bit | |
| set(BITNESS 32) | |
| if(CMAKE_SIZEOF_VOID_P EQUAL 8) | |
| set(BITNESS 64) | |
| endif() | |
| # Global definitions |
| <?php | |
| /** | |
| * Turn all URLs in clickable links. | |
| * | |
| * @param string $value | |
| * @param array $protocols http/https, ftp, mail, twitter | |
| * @param array $attributes | |
| * @return string | |
| */ | |
| public function linkify($value, $protocols = array('http', 'mail'), array $attributes = array()) |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Ice Breaker</title> | |
| <link rel="stylesheet" href="https://unpkg.com/mvp.css"> | |
| <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@chgibb/css-spinners@2.2.1/css/spinner/three-quarters.min.css"> | |
| </head> | |
| <body> | |
| <header> |
| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteRule ^(.*)$ ../thumb.php [QSA,L] | |
| </IfModule> |