This file contains 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: Apache-2.0 | |
pragma solidity >=0.5.0 <0.9.0; | |
pragma experimental ABIEncoderV2; | |
import "./HederaResponseCodes.sol"; | |
import "./IHederaTokenService.sol"; | |
abstract contract HederaTokenService is HederaResponseCodes { | |
address constant precompileAddress = address(0x167); |
This file contains 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
<script> | |
import { flip } from "svelte/animate"; | |
let on = true; | |
</script> | |
<style> | |
.animate-left { | |
left: 10%; | |
background-color: #f1f2f6; |
This file contains 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
<script> | |
import {onMount} from 'svelte' | |
let name = 'world'; | |
let foo; | |
let cssClass = "test" | |
onMount(()=>{ | |
foo.addEventListener('click', function(){ |
This file contains 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
<script> | |
import { isAuthenticated } from "../../store.js"; | |
let isVisible = false; | |
document.addEventListener("click", function () { | |
isVisible = false; | |
}); | |
function setVisible(event) { |
This file contains 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
func main() { | |
// Open the cards file | |
inputFile, err := os.Open("cards.json") | |
if err != nil { | |
fmt.Println(err) | |
} | |
defer inputFile.Close() | |
// Read the cards file into bytes |
This file contains 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
// Take a full screenshot of the page and override the viewport to match the required card dimensions | |
func fullScreenshot(urlstr string, quality int64, res *[]byte) chromedp.Tasks { | |
return chromedp.Tasks{ | |
chromedp.Navigate(urlstr), | |
chromedp.ActionFunc(func(ctx context.Context) error { | |
err := emulation.SetDeviceMetricsOverride(597, 1122, 0, false). | |
WithScreenOrientation(&emulation.ScreenOrientation{ | |
Type: emulation.OrientationTypePortraitPrimary, | |
Angle: 0, | |
}). |
This file contains 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
[ | |
{ | |
"name": "Warrior", | |
"sprite": { | |
"spritesheet": "warrior_sprites.png", | |
"height": "46px", | |
"width": "46px", | |
"x": "-92", | |
"y": "-92" | |
}, |
This file contains 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
[ | |
{ | |
"prompt": "As a consumer, I want to be able to reduce my carbon footprint." | |
}, | |
{ | |
"prompt": "As a business, I want a better way to optimize resources so that I can switch to a four day work week." | |
}, | |
{ | |
"prompt": "As an artist, I want a better way to sell my art to interested individuals." | |
}, |
This file contains 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
<html> | |
<style> | |
@font-face { | |
font-family: Somatic; | |
src: url("./Somatic-Rounded.otf") format("opentype"); | |
} | |
body { | |
margin: 0px; | |
} |
This file contains 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
package main | |
import ( | |
"log" | |
"time" | |
nats "github.com/nats-io/nats.go" | |
) | |
type Msg struct { |
NewerOlder