Pinned Loading
-
Convert Decimal to Hexadecimal in Ja...
Convert Decimal to Hexadecimal in Javascript 1// The simple way
2const hex = (number) => number.toString(16)
34console.assert(hex(15) === 'f')
5console.assert(hex(-30) === '-1e')
-
Parse Options Passed to a Bash Script
Parse Options Passed to a Bash Script 1#!/usr/bin/env bash
2# Paste this into a file, chmod 755 it, and try it out
34while :; do
5case $1 in
-
Ruby Shebang
Ruby Shebang 1# with debugging options
2#!/usr/bin/ruby -w
34# regular
5#!/usr/bin/ruby
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.