I hereby claim:
- I am cleot on github.
- I am atweb3 (https://keybase.io/atweb3) on keybase.
- I have a public key ASCl_BQTagxfXekAXxi0uGDj_TbHSv2cYq1zV2JkCXfCIgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Password-store keeps your passwords (or any other sensitive information) saved in GnuPG encrypted files organized in ~/.password-store
. For more information about GPG, consult the GNU Privacy Handbook.
To get started, install pass
and generate a keypair.
$ brew install pass
$ gpg --gen-key
$ gpg --list-keys
I was looking for mini PCs with SFP+ and found a lot of fairly expensive small servers that were tempting. Then I got lucky and saw a new product coming out from minisforum, the MS-01, which had everything I needed at a much lower pricepoint.
I went with the 20 core intel i9-13900H but I think any of the three would have been fine for my needs.
>D | |
>B | |
smlj=0 | |
=>sensor53 r | |
R | |
smlj=0 | |
S | |
if upsecs>22 | |
then | |
smlj|=1 |
{"claims":[{"url":"https://attestation1.celo.atweb3.io","timestamp":1664503249,"type":"ATTESTATION_SERVICE_URL"},{"name":"atweb3-validator","timestamp":1664504210,"type":"NAME"}],"meta":{"address":"0xe17B899D1Ba93249BE07aFa6ca670FE165Bc5d17","signature":"0xc10982818c29d598b58093c6d0ea2705ec2131280d3a17aea70bc19c4f9da9f7305db57af7947e5c73aeddec70093d4ca60f0de7157a7d994c7a45ceaf4fffb51b"}} |
did:3:kjzl6cwe1jw145ep2iwffs7iu16k8u58vmshg401v6h9m2yaqx191tns2r0d9n0 |
This post links my 3Box profile to my Github account! Web3 social profiles by 3Box. | |
✅ did:3:bafyreif6zajehdxrn6hcobgexpaaqgsy6uxbl6bc5r3xuxdetzg33knzqu ✅ | |
Create your profile today to start building social connection and trust online at https://3Box.io/ |
add_action( 'wp_enqueue_scripts', 'gbol_remove_wpcf7_resources_if_no_contact_form', 1 ); | |
function gbol_remove_wpcf7_resources_if_no_contact_form() { | |
global $post, $gbol_css_dependencies, $abcf7; | |
if ( isset( $post ) && is_singular() && has_shortcode( $post->post_content, 'contact-form-7' ) ) { | |
return; | |
} | |
add_filter( 'wpcf7_load_js', '__return_false' ); | |
add_filter( 'wpcf7_load_css', '__return_false' ); |
pragma solidity 0.4.24; | |
import "https://github.com/smartcontractkit/chainlink/evm/contracts/ChainlinkClient.sol"; | |
import "https://github.com/smartcontractkit/chainlink/evm/contracts/vendor/Ownable.sol"; | |
contract ATestnetConsumer is ChainlinkClient, Ownable { | |
uint256 constant private ORACLE_PAYMENT = 1 * LINK; | |
uint256 public currentPrice; | |
int256 public changeDay; |