I hereby claim:
- I am brainded on github.
- I am brainded (https://keybase.io/brainded) on keybase.
- I have a public key ASAiGbLhWvuZ1MCQwtqngpHc1GMEwf34ogsl4NrfcKpGGQo
To claim this, I am signing this object:
| import { useState, useEffect } from "react"; | |
| const questions = [ | |
| // Cell Structure & Function | |
| { id: 1, section: "Cell Structure & Function", question: "Which of the following is NOT one of the 6 characteristics of living things?", options: ["Can reproduce", "Can photosynthesize", "Can maintain homeostasis", "Has one or more cells"], answer: 1 }, | |
| { id: 2, section: "Cell Structure & Function", question: "Which of the following correctly states the Cell Theory?", options: ["Cells are the largest unit of life", "All living things are composed of cells, all cells come from existing cells, and cells are the smallest unit of life", "Only plants and animals are made of cells", "Cells can spontaneously generate under the right conditions"], answer: 1 }, | |
| { id: 3, section: "Cell Structure & Function", question: "What do ALL cells have in common?", options: ["Cell wall, chloroplast, nucleus", "DNA, ribosomes, and a nucleoid or nucleus", "Mitochondria, Golgi apparatus, ER", "Cytoskeleton, centrioles, lysosomes"] |
| using System; | |
| using System.Text; | |
| using System.Security.Cryptography; | |
| public static class WebhookUtility | |
| { | |
| public static bool IsVerified(string payload, string sharedSecret, string virtuousSignature) | |
| { | |
| byte[] valueByteArray = Encoding.UTF8.GetBytes(payload); | |
| byte[] secretByteArray = Encoding.UTF8.GetBytes(sharedSecret); |
| using System; | |
| using System.Globalization; | |
| using System.Text.RegularExpressions; | |
| using System.Text; | |
| using System.Security.Cryptography; | |
| public class Program | |
| { | |
| public static void Main() | |
| { |
| <?php | |
| function getHmacToken($applicationKey, $requestHttpMethod, $requestUrl) | |
| { | |
| $privateKey = "VIRTUOUS_API_KEY"; | |
| $nonce = uniqid(); | |
| $timestamp = (string)time(); | |
| $toBeHashed = strtolower($applicationKey . urlencode($requestUrl) . $requestHttpMethod . $nonce . $timestamp); | |
| $hmac = getHashedUrl($toBeHashed, $privateKey); | |
| $authorization = "Hmac " . $applicationKey . ":" . $hmac . ":" . $nonce . ":" . $timestamp; |
I hereby claim:
To claim this, I am signing this object:
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading; | |
| using System.Threading.Tasks; | |
| namespace BobsBurgers | |
| { | |
| internal static class AsyncExtensions |
| using System; | |
| using System.Collections.Generic; | |
| using System.Diagnostics; | |
| using System.Linq; | |
| using System.Web; | |
| using System.Web.Mvc; | |
| using TwitterPoc.Services; | |
| namespace BobsBurgers.Controllers | |
| { |
| { | |
| "id": "32434k234jlk234l2k3j4j234l", | |
| "status": "success", | |
| "authorEmail": "author@bobsburgers.com", | |
| "author": "author", | |
| "deployer": "GitHub", | |
| "message": "something something darkside", | |
| "progress": "", | |
| "startTime": "2014-08-15T23:17:00.7435764Z", | |
| "endTime": "2014-08-15T23:17:29.0472028Z", |
| using System; | |
| using System.Configuration; | |
| namespace Example.Configuration | |
| { | |
| internal class BobsBurgersConfiguration : ConfigurationSection | |
| { | |
| /// <summary> | |
| /// The BobsBurgers ConfigurationSection name. | |
| /// </summary> |
| var authorizationToken = $("#antiforgerytoken").val(); | |
| $.ajax({ | |
| type:"POST", | |
| beforeSend: function (request) { | |
| request.setRequestHeader("RequestVerificationToken", authorizationToken); | |
| }, | |
| url: "entities", | |
| data: { | |
| Something: "something" |