Benchmark Name | Min | Geomean | Median | Mean | Max | Total (ms) | Total (min) |
---|---|---|---|---|---|---|---|
Bounce | 523 | 539 | 527.11 | 524 | 527.08 | 105421 | 1.76 |
CD | 530 | 548 | 536.34 | 532 | 536.3 | 107267 | 1.79 |
DeltaBlue | 269 | 392 | 345.26 | 346 | 344.9 | 69052 | 1.15 |
Havlak | 1130 | 1194 | 1158.87 | 1159 | 1158.82 | 231774 | 3.86 |
Json | 311 | 327 | 315.29 | 313 | 315.25 | 63058 | 1.05 |
List | 318 | 352 | 320.5 | 319 | 320.46 | 64100 | 1.07 |
Mandelbrot | 129 | 158 | 130.72 | 130 | 130.67 | 26143 | 0.44 |
Discover gists
This file contains 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
using System; | |
namespace clinic | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int reseptionTime = 10; | |
int minutesInHours = 60; |
This file contains 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
/mvnw text eol=lf | |
*.cmd text eol=crlf |
This file contains 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
<script src="https://gist.github.com/Arafat123456788/229ab68400b2d22c9b5d530d61ab2e69.js"></script> |
This file contains 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
<?xml version="1.0" encoding="utf-8"?> | |
<fileSnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<files> | |
<file path="C:\ProgramData\chocolatey\lib\python2-x86_32\python2-x86_32.nupkg" checksum="617B2AE9804C04266D4335A14892D61B" /> | |
<file path="C:\ProgramData\chocolatey\lib\python2-x86_32\python2-x86_32.nuspec" checksum="B644385C4E671844C08DC3D009CB9079" /> | |
<file path="C:\ProgramData\chocolatey\lib\python2-x86_32\tools\chocolateyInstall.ps1" checksum="2250BBB6E7E442C010DD436EB74E608F" /> | |
</files> | |
</fileSnapshot> |
This guide provides instructions for testing the inactivity modal implementation for products added to the cart on the Serena & Lily website.
This JavaScript code is designed to display a modal after a period of user inactivity (currently set to 30 seconds). The modal shows product details, including the name, quantity, price, and other relevant information of the last item added to the cart.
This file contains 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
School of Nursing, Port Harcourt 2025/2026 {O8125777035} Admission Form Is STILL ON SALE.. Call DR.MRS ALICE OGUNSOLA on {O8125777035}.The Management of the school hereby inform the general public of the sales of the general Nursing Admission form into the School of Nursing, Also midwifery, post-basic midwifery form, post-basic nursing form and internship form are still on sale for more information on purchase of the form and admission assistance call Admin Officer{O8125777035} |
This file contains 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
import time | |
import analogio | |
import board | |
import neopixel | |
photocell_pin = board.A2 | |
photocell = analogio.AnalogIn(photocell_pin) | |
light = photocell.value | |
pixel_pin = board.D2 |
This file contains 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
<?xml version="1.0" encoding="utf-8"?> | |
<registrySnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<user>S-1-5-21-2270195762-3335344054-2709297393-1000</user> | |
<keys> | |
<key installerType="Msi" displayName="APM Insight .NET Agent" displayVersion="6.8.1"> | |
<RegistryView>Registry32</RegistryView> | |
<KeyPath>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{9AFDE4E4-55DB-41E5-8879-1A0390390584}</KeyPath> | |
<DefaultValue /> | |
<InstallLocation><![CDATA[]]></InstallLocation> | |
<UninstallString><![CDATA[MsiExec.exe /I{9AFDE4E4-55DB-41E5-8879-1A0390390584}]]></UninstallString> |
This file contains 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
public class ShipmentWrapper { | |
private Shipment shipment; | |
} | |
public class Shipment { | |
private Long id; | |
private Shipment typeId; | |
} |