Result from onlinephp.io (link w/ code):
float(0.5350112915039062)
float(0.308990478515625)
float(0.5180835723876953)
float(0.2639293670654297)
float(0.5099773406982422)| <?php | |
| function bc(string $exp): string | |
| { | |
| $stack = []; | |
| $tokens = explode(' ', $exp); | |
| foreach ($tokens as $token) { | |
| if (strlen($token) <= 0) continue; | |
| #!/bin/env bash | |
| set -e | |
| DOWNLOAD_URL='https://go.dev/dl/go1.25.1.linux-amd64.tar.gz' | |
| # goM.mm.ff.linux-amd64.tar.gz | |
| GOLANG_TAR_GZ="$(basename $DOWNLOAD_URL)" | |
| # goM.mm.ff.linux-amd64 | |
| GOLANG="$(basename $GOLANG_TAR_GZ .tar.gz)" |
Result from onlinephp.io (link w/ code):
float(0.5350112915039062)
float(0.308990478515625)
float(0.5180835723876953)
float(0.2639293670654297)
float(0.5099773406982422)| <?php | |
| function unwrapE(float $value) | |
| { | |
| $strVal = strval($value); | |
| if (!str_contains($strVal, 'E')) { | |
| return $strVal; | |
| } | |
| for ign in $(find . -name '.gitkeep' ! -path './vendor/*'); do | |
| if [[ $(ls $(dirname $ign) | wc -l | tr -d ' ') > 0 ]]; then | |
| rm $ign | |
| fi; | |
| done |
| <?php | |
| function LOGOP($value, ?string $identifier = null) | |
| { | |
| echo 'LOGOP'; | |
| echo $identifier ? "($identifier)" : ''; | |
| echo ': ' . (string) $value . "\n"; | |
| return $value; | |
| } |
| function easyCreateElement(name, attrs = {}) { | |
| const el = document.createElement(name); | |
| for (const [k, v] of Object.entries(attrs)) { | |
| el.setAttribute(k, v instanceof Element ? v.getAttribute(k) : k); | |
| } | |
| return el; | |
| } |
| # If installed throught `pecl install xdebug` | |
| # zend_extension="<php lib path [/opt/local/lib/php]>/extensions/no-debug-zts-20240924/xdebug.so" | |
| [XDebug] | |
| # -- Debugging | |
| xdebug.mode="debug" | |
| xdebug.start_with_request="trigger" | |
| # -- Profilling | |
| # xdebug.mode="profile" |
| // ==UserScript== | |
| // @name Lower Your Volume with Me | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2025-01-31 | |
| // @description Lower Your Volume with Me | |
| // @author You | |
| // @match *://*/* | |
| // @exclude https://*.youtube.com/watch* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=instagram.com | |
| // @require https://cdn.jsdelivr.net/gh/vanjs-org/mini-van@latest/public/mini-van-latest.nomodule.min.js |
| <?php | |
| /** | |
| * Create a remap object that maps an input array to an output array by a given | |
| * schema. | |
| * | |
| * The schema is an array of `key`-`value` pairs, or a `string` value, where the | |
| * `key` is the key from the input array and the `value` is the key to be mapped | |
| * to in the output array. If a `string` is given, the value will be passed-through. | |
| * |