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
import React from "react"; | |
import ReactDOM from "react-dom"; | |
const App = () => { | |
const options = [ | |
{ value: "active", label: "active group" }, | |
{ value: "inactive", label: "inactive group" }, | |
{ value: "waitlisted", label: "waitlisted group" }, | |
{ value: "all", label: "all groups" } | |
]; |
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/bash | |
# Roll d$1 $2 times | |
echo | |
echo "===================" | |
echo "Roll d\$1 \$2 times" | |
echo "===================" | |
numSides=6 | |
numTimes=1 |
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
module log; | |
import std.stdio; | |
import std.file; | |
import std.string; | |
import std.datetime; | |
import std.format; | |
private { | |
__gshared File log; |