- Flour
- High temp oil (avocado/grape seed)
- Yellow onion
- Red bell pepper
- Celery
- Garlic
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
/* | |
* The MIT License (MIT) | |
* | |
* Copyright (c) 2015 - 2016 Samsung Electronics | |
* Krzysztof Opasiak <[email protected]> | |
* | |
* Permission is hereby granted, free of charge, to any person | |
* obtaining a copy of this software and associated documentation | |
* files (the "Software"), to deal in the Software without | |
* restriction, including without limitation the rights to use, copy, |
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
// Copyright 2022 Nathan Sizemore <[email protected]> | |
// | |
// This Source Code Form is subject to the terms of the Mozilla Public | |
// License, v. 2.0. If a copy of the MPL was not distributed with this | |
// file, You can obtain one at https://mozilla.org/MPL/2.0/. | |
extern crate libtabellarius; | |
#[macro_use] | |
extern crate log; | |
extern crate uuid; |
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/sh | |
set -xe | |
openssl req -nodes \ | |
-x509 \ | |
-days 3650 \ | |
-newkey rsa:4096 \ | |
-keyout ca.key \ | |
-out ca.cert \ |
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
// Copyright 2019 Nathan Sizemore <[email protected]> | |
// | |
// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. | |
// If a copy of the MPL was not distributed with this file, | |
// You can obtain one at http://mozilla.org/MPL/2.0/. | |
extern crate winapi; | |
use std::ffi::OsStr; | |
use std::iter::once; |
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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title></title> | |
<meta name="description" content=""> | |
<meta name="author" content="[email protected]"> |
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 frameData = [ | |
{ | |
"name":"Aquaman", | |
"strength":1700, | |
"ability":1600, | |
"defense":1500, | |
"hp":1050, | |
"basicAttacks":[ | |
{ | |
"name":"Flounder Fist", |
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
// Copyright 2016 Nathan Sizemore <[email protected]> | |
// | |
// This Source Code Form is subject to the terms of the | |
// Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed | |
// with this file, you can obtain one at http://mozilla.org/MPL/2.0/. | |
use std::io::{self, Error, ErrorKind, Read, Write}; | |
use std::os::unix::io::{AsRawFd, RawFd}; |
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 | |
BINUTILS_VERSION=binutils-2.28 | |
GCC_VERSION=gcc-7.1.0 | |
LIBC_VERSION=glibc-2.24 | |
MPFR_VERSION=mpfr-3.1.5 | |
GMP_VERSION=gmp-6.1.2 | |
MPC_VERSION=mpc-1.0.3 | |
ISL_VERSION=isl-0.16.1 | |
CLOOG_VERSION=cloog-0.18.1 |
NewerOlder