npx create-react-app tw-app
npx tailwindcss init --full
# First, decide which version of aerospike [community, federal, and enterprise] you want to use, | |
# and which linux + computer architecture you will be running- this code is meant to run on Debian 12 on x86 machines. | |
# Check here to browse aerospike package versions: https://download.aerospike.com/artifacts/ | |
# 1) Get the aerospike tools package | |
wget -O aerospike-tools.tgz https://download.aerospike.com/artifacts/aerospike-server-community/latest/aerospike-server-community_6.4.0.2_tools-9.0.0_debian12_x86_64.tgz | |
## TODO - verify the file downloaded properly | |
# 2) Open the compressed tar file |
// SPDX-License-Identifier: GPL-3.0 | |
pragma solidity 0.8.8; | |
pragma experimental ABIEncoderV2; | |
import "@chainlink/contracts/src/v0.8/VRFConsumerBase.sol"; | |
contract Example is VRFConsumerBase { | |
// on Rinkeby Network | |
address __vrfCoordinatorAddress = 0xb3dCcb4Cf7a26f6cf6B120Cf5A73875B7BBc655B; |
// SPDX-License-Identifier: GPL-3.0 | |
pragma solidity >=0.7.0 <0.9.0; | |
import "@openzeppelin/contracts/access/Ownable.sol"; | |
// Created by Jimbo - use at your own risk! 😜 | |
/** | |
* A game where there are some face down cards (boardWidth * boardHeight) | |
* |
?contract |
// SPDX-License-Identifier: GPL-3.0 | |
pragma solidity >=0.7.0 <0.9.0; | |
import "@openzeppelin/contracts/access/Ownable.sol"; | |
contract EthMover is Ownable { | |
uint public totalDonations; | |
#!/usr/bin/env bash | |
npm_parameters="" | |
if [ "$#" -eq "0" ]; then | |
npm start | |
exit | |
fi | |
for i in $@ |
/** | |
* Helper class that interacts with DynamoDB to read and write data. | |
*/ | |
class DynamoDbManager { | |
constructor() { | |
const AWS = require("aws-sdk") | |
AWS.config.update({ | |
region: "us-east-2", |
Have a robot that hooks into different points of the continuous integration pipeline (of some other software project), and have the robot react accordingly as things are happening in your pipeline.
For example: