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
// SPDX-License-Identifier: UNLICENSED | |
pragma solidity ^0.8.0; | |
import "@openzeppelin/contracts/utils/Strings.sol"; | |
import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; | |
import "@openzeppelin/contracts/access/Ownable.sol"; | |
import "@openzeppelin/contracts/utils/Counters.sol"; | |
import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; |
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
// contracts/GameItems.sol | |
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.7; | |
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; | |
import "@openzeppelin/contracts/access/Ownable.sol"; | |
import "@openzeppelin/contracts/utils/Strings.sol"; | |
contract GameItems is ERC1155, Ownable { | |
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
docker run \ | |
-d \ | |
--name baserow \ | |
-e BASEROW_PUBLIC_URL=http://base.local \ | |
-v /path/to/persisted/data:/baserow/data \ | |
-p 80:80 \ | |
-p 443:443 \ | |
--restart unless-stopped \ | |
baserow/baserow:1.12.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
const pluginWebc = require("@11ty/eleventy-plugin-webc"); | |
module.exports = function(eleventyConfig) { | |
//passthroughs | |
eleventyConfig.addPassthroughCopy("manifest.json"); //site manifest file | |
eleventyConfig.addPassthroughCopy(".prettierrc"); //prettier config file | |
eleventyConfig.addPassthroughCopy({"src/assets/" : "/assets/"}); // assets directory | |
eleventyConfig.addPassthroughCopy({"src/styles" : "/styles/"); //css directory | |
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
# environment variables | |
*.env* | |
# build output | |
dist | |
.next | |
target | |
# dependencies | |
node_modules |
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
eval "$(oh-my-posh --init --shell zsh --config /path/to/your.omp.json)" |
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
export default { | |
name: 'role', | |
type: 'document', | |
title: 'Role', | |
fieldsets: [ | |
{name: 'duration', title: 'Duration', options:{columns: 2}} | |
], | |
fields: [ | |
{title: 'Title', name: 'title', type: 'string'}, | |
{title: 'Role', name: 'role', type: 'string'}, |
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
Error! An unexpected error occurred in alias: Error: ACME responded with an error for challenge http-01 and domain justinrascoe.com (400) | |
at responseError (/snapshot/repo/dist/now.js:2470:15) | |
at <anonymous> | |
at process._tickCallback (internal/process/next_tick.js:188:7) |
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
{ | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true, | |
"node_modules": true, | |
".vscode": true | |
} |
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
{ | |
"success": true, | |
"data": [ | |
{ | |
"p_vendor_name": "Gold USD Vendor", | |
"p_vendor_office_name": "Gold USD Vendor", | |
"p_vendor_office_id": "987654", | |
"p_invoice_amount": { | |
"cents": 225000, | |
"currency_iso": "USD" |
NewerOlder