Reference: Stack Overflow
flowchart TD
start{
For whom am I
writing the log
line?
} --Developers--> debug[Debug]
start --System operators--> unwanted_state{
Reference: Stack Overflow
flowchart TD
start{
For whom am I
writing the log
line?
} --Developers--> debug[Debug]
start --System operators--> unwanted_state{
I hereby claim:
To claim this, I am signing this object:
Date/Time: 2020-04-27 23:19:37 -0600 | |
End time: 2020-04-27 23:19:40 -0600 | |
OS Version: Mac OS X 10.15.5 (Build 19F62f) | |
Architecture: x86_64h | |
Report Version: 29 | |
Data Source: KPerf Lightweight PET | |
Shared Cache: 0x35c5000 C87D2436-C9E8-3E3F-A8BA-51783043ABA9 | |
Reason: Slow response to HID event |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
let validScorecard = Align.Scorecard {Align.match = 1, Align.mismatch = -1, Align.gap = 0} | |
let stalemateScorecard = Align.Scorecard {Align.match = 0, Align.mismatch = 0, Align.gap = 0} | |
describe "Align.validateScorecard" $ do | |
context "with a valid scorecard" $ do | |
it "returns Just the scoredcard" $ do | |
Align.validateScorecard validScorecard `shouldBe` Just validScorecard | |
context "with a scorecard that would lead to a stalemate" $ do | |
it "returns Nothing" $ do | |
Align.validateScorecard stalemateScorecard `shouldBe` (Nothing :: Maybe Align.Scorecard) |
---- Minecraft Crash Report ---- | |
WARNING: coremods are present: | |
LoadingPlugin (Bloodmoon-1.2.jar) | |
Contact their authors BEFORE contacting forge | |
// Ooh. Shiny. | |
Time: 7/8/15 10:21 PM | |
Description: Ticking entity |
I hereby claim:
To claim this, I am signing this object:
#include <iostream> | |
#include <string> | |
#include <map> | |
using namespace std; | |
#include <json.hpp> | |
using json = nlohmann::json; | |
int main() { | |
json j_currencies = { |
if (NOT INSTALLING) | |
set (WORKING DIRECTORY "${CMAKECURRENTBINARYDIR}/Install") | |
file (MAKEDIRECTORY "${DIRECTORY}") | |
executeprocess (COMMAND "${CMAKECOMMAND}" | |
-DINSTALLING=TRUE | |
-DINSTALLPREFIX=${MYINSTALLPREFIX} "${CMAKECURRENTSOURCEDIR}" | |
WORKING_DIRECTORY "${DIRECTORY}" | |
) | |
executeprocess (COMMAND "${CMAKECOMMAND}" | |
--build . |