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
var ipv4Regex = /^(\d+)\.(\d+)\.(\d+)\.(\d+)$/; | |
function expandIPv6(ipv6ColonNotation) { | |
var pad = "0000" | |
var count = (ipv6ColonNotation.match(/:/g)|| []).length; | |
if (count == 0 || count > 7) { | |
// too few or too many colons | |
return "err"; | |
} | |
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
package ajmas74.experimental.graphics2d; | |
import java.awt.Image; | |
import java.awt.image.BufferedImage; | |
import java.awt.image.ColorModel; | |
import java.awt.image.DataBuffer; | |
import java.awt.image.DataBufferInt; | |
import java.awt.image.DirectColorModel; | |
import java.awt.image.PixelGrabber; | |
import java.awt.image.Raster; |
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/ksh | |
hostname="$1" | |
url_protocol="https://" | |
url_path="/cbace7c0fbe7ffad8af83f61a550dcef/xxxxx_nvwwcsKpsN1qajmbto1_500.jpg" | |
## TODO support CNAMES properly - it throws things off | |
### | |
### IPv4 Health Check |
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
snap = Snap('#mySVG'); | |
gradient = snap.gradient('l(0, 0, 1, 0)red-orange-yellow-green-blue-indigo-violet'); | |
snap.rect(0,0,200,200).attr({ | |
fill: gradient | |
}); |
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
//ref: https://en.wikipedia.org/wiki/Metric_prefix | |
function valueToMagnitude(value, unit, fixedPlaces) { | |
var unitExponents = [ | |
[0,''], | |
[3,'k'], | |
[6,'M'], | |
[9,'G'], | |
[12,'T'], | |
[15,'P'], |
NewerOlder