Rules were created for each topic with Perplexity and o3
- Opus 4 is the best for large changes, unmatched in architecture and understanding
- Sonnet 4 is good for precise edits
- Gemini 2.5 Pro for a middle path
- Haven't tried o3 yet
| // This Gist is the code for the tutorial "How to create SFTs on Solana". | |
| // See the tutorial on Youtube: https://youtu.be/BYmcw0LThGE | |
| // Check out SOAP - https://solanasoap.lol - https://twitter.com/solanasoap | |
| // yarn add @metaplex-foundation/[email protected] @solana/[email protected] | |
| import { bundlrStorage, keypairIdentity, Metaplex, CreatorInput, KeypairSigner, JsonMetadata, CreateSftInput } from '@metaplex-foundation/js'; | |
| import { Keypair, clusterApiUrl, Connection, PublicKey } from '@solana/web3.js'; | |
| import * as fs from "fs" | |
| const clusterString = "devnet" |
Hey there!😊 We were wondering about what your experience has been as a participant of the #100DaysOfCloud challenge, and how are you noting down & sharing your daily progress. We're curious because as the website and the whole challenge is being built and fostered, we want to make it as enjoyable and exciting as possible. For that we'd like to hear about your experiences. A couple questions to get the conversation going (you don't have to answer all of them), and please add anything that comes to mind! Don't have to hold back anything, the most honest feedback is the best:) Feedback is welcome to this Gist as a comment, or to the Tweet which led you here🙂
| --- | |
| Parameters: | |
| S3BucketName: | |
| Description: "The name of the S3 bucket that will store the website files" | |
| Type: String | |
| Resources: | |
| WebsiteBucket: | |
| Type: AWS::S3::Bucket | |
| Properties: |
| -- works as of MacOS Mojave, iTunes 12 | |
| -- TIMESTAMP: 24. Apr. 2019 | |
| -- clear start - quit itunes | |
| tell application "iTunes" | |
| quit | |
| end tell | |
| delay 60 -- sometimes iTunes takes a while to quit |
| # disable icloud & Apple Popup for new user creation | |
| osvers=$(sw_vers -productVersion | awk -F. '{print $2}') | |
| sw_vers=$(sw_vers -productVersion) | |
| # Checks first to see if the Mac is running 10.7.0 or higher. | |
| # If so, the script checks the system default user template | |
| # for the presence of the Library/Preferences directory. Once | |
| # found, the iCloud and Diagnostic pop-up settings are set | |
| # to be disabled. |
| #include <PubSubClient.h> | |
| #include <ESP8266WiFi.h> | |
| #include <DHT.h> | |
| #define wifi_ssid "ssid" //your Wifi SSID | |
| #define wifi_password "password123" //your Wifi password | |
| int DHTPIN = 2; //the pin your dht board's signal is connected to | |
| #define DHTTYPE DHT11 //the type of dht board you are using - DHT11, DHT22... | |
| #define ClientID "BalconyESP8266" //the clientID what your MQTT server will see |