I hereby claim:
- I am unquietcode on github.
- I am unquietcode (https://keybase.io/unquietcode) on keybase.
- I have a public key ASDL4ha8bU25uQvATXGnhAGcrJKFfk_Khbcbs9QUZLCEbgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
# based on: | |
# https://charleslavery.com/notes/aws-ses-smtp-password-from-secret-key-python.html | |
import hashlib | |
import hmac | |
import base64 | |
key = bytes('aws-secret-access-key').encode('utf-8') | |
message = bytes('SendRawEmail').encode('utf-8') |
(extracted from the now defunct SGI project at http://lavarand.sgi.com/cgi-bin/how.cgi via the magical Internet Archive Wayback Machine)
Lava Lamps can be used as a source of randomness, which can be used to establish a random number generator. The output of the RNG can then be consumed by various computer applications.
valueOrCopy = (obj) -> | |
if not obj | |
return undefined | |
else if obj instanceof Array | |
newObj = [] | |
newObj.push(x) for x in obj | |
return newObj | |
else if (typeof obj).toLowerCase() is 'object' |
var B = require('./B'); | |
console.log("hello"); |
import com.fasterxml.jackson.core.JsonParser; | |
import com.fasterxml.jackson.core.JsonProcessingException; | |
import com.fasterxml.jackson.core.Version; | |
import com.fasterxml.jackson.databind.*; | |
import com.fasterxml.jackson.databind.deser.Deserializers; | |
import com.fasterxml.jackson.databind.node.ObjectNode; | |
import java.io.IOException; | |
import java.util.Iterator; |
{ | |
name: "Object" | |
version: "1" | |
parents: [] | |
properties: { | |
name: "string" | |
version: "string" | |
parents: "string*" | |
properties: "object" |
public enum API { | |
@Deprecated Version1, | |
Version2( | |
add(Feature.BLUE_ICONS) | |
), | |
Version3( | |
parent(Version2), |
package com.sb.server.web; | |
import org.springframework.core.annotation.AnnotationUtils; | |
import org.springframework.http.HttpStatus; | |
import org.springframework.web.servlet.View; | |
import org.springframework.web.servlet.mvc.condition.PatternsRequestCondition; | |
import org.springframework.web.servlet.mvc.method.RequestMappingInfo; | |
import org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping; | |
import org.springframework.web.servlet.view.RedirectView; |