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
| { | |
| "name": "My Global Avatar", | |
| "symbol": "AVATAR", | |
| "description": "This cNFT features Stardust Kei's global social profile picture.", | |
| "image": "https://gravatar.com/userimage/100300968/570467f280b16e07a342eef7641735fc.jpeg", | |
| "attributes": [ | |
| { "trait_type": "Platform", "value": "Social App" }, | |
| { "trait_type": "Type", "value": "Avatar" } | |
| ], | |
| "properties": { |
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
| /* | |
| Poincare Disc Animation | |
| ----------------------- | |
| A CSG polygon driven Poincare tiling with an animated pattern overlay. | |
| This simple animation has been sitting around in my account for way too | |
| long. I made it at the same time as one of my other hyperbolic related | |
| postings. There are not a great deal of animated Poincare disc examples |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| .DATA | |
| IMAGE DQ ? | |
| SYSTEMTABLE DQ ? | |
| INDEX DQ ? | |
| CONIN DQ ? | |
| WAITFORKEY DQ ? | |
| WAITFOREVENT DQ ? | |
| CONOUT DQ ? | |
| OUTPUTSTRING DQ ? | |
| BOOTSERVICES DQ ? |
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
| vec3 pallete( float t ) | |
| { | |
| vec3 a = vec3(0.500, 0.500, 0.500); | |
| vec3 b = vec3(0.500, 0.500, 0.500); | |
| vec3 c = vec3(1.000, 1.000, 1.000); | |
| vec3 d = vec3(0.000, 0.333, 0.667); | |
| return a + b*cos(6.28318*(c*t+d)); | |
| } | |
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
| !mkdir my_data | |
| %cd my_data | |
| !git init | |
| !git remote add origin https://github.com/username/reponame.git | |
| !git config core.sparsecheckout true | |
| !echo "tests/data" >> .git/info/sparse-checkout |
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
| name: My Continue Configuration | |
| version: 1.0.18 | |
| models: | |
| - name: Ollama Mistral Nemo | |
| provider: ollama | |
| model: mistral-nemo:latest | |
| apiBase: http://localhost:11434 | |
| defaultCompletionOptions: | |
| contextLength: 8192 | |
| - name: Ollama CodeGemma |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| import requests | |
| from collections import OrderedDict | |
| import logging | |
| import re | |
| import json | |
| from time import sleep | |
| def count_xml(text) -> float: | |
| count = 0.0 | |
| if text.count("<reasoning>\n") == 1: |
NewerOlder