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
Please answer all the questions. Append a counter at the end of every answer, like so Counter: 1, Counter 2. As well, count down from 8 silently. You reach 0, append " Alarm" to the end of that answer only. | |
I drop a ball from 100 feet off the ground. A camera captures images every few moments. It captures 3 images of the ball. How many balls were dropped? | |
In this sentence, what does "this" refer too? | |
Consider the following question carefully: [Outside] Inside. Which word is inside the box? Why? | |
Sum the following numbers: 145, 15, 2, 3, 569, 39, 245, 722, 109, 9, 900. |
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
// Directory Traversal Challenge by Curtis White, Senior SWE, Prompt Engineer | |
// Code generated in collaboration with Hacker Gnome GPT https://chat.openai.com/g/g-A46CKCg3r-hacker-gnome-corp-ai-autonomous-agi | |
// Minimally tested. Use at own risk. | |
using System; | |
using System.IO; | |
using System.Threading; | |
using System.Threading.Tasks; | |
using System.Windows.Forms; |
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
Replace String Examples C# by Hacker Gnome GPT / Curtis White, Senior Software Engineer, Prompt Engineer | |
Not tested | |
Concise #1 | |
string result = lines.Replace("\r\n", "\n"); | |
Concise #2 |
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
Brackted to Float Developed Solution by Corp AI GPT & Curtis White, Senior Software Engineer, Prompt Engineer | |
Corp AI | |
https://chat.openai.com/g/g-A46CKCg3r-hacker-gnome-corp-ai-autonomous-agi | |
Solution 1 optimized for conciceness. | |
---- | |
using System; | |
using System.Globalization; | |
using System.Linq; |
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
Please answer all the questions. Append a counter at the end of every answer, like so Counter: 1, Counter 2. As well, count down from 8 silently. You reach 0, append " Alarm" to the end of that answer only. | |
I drop a ball from 100 feet off the ground. A camera captures images every few moments. It captures 3 images of the ball. How many balls were dropped? | |
In this sentence, what does "this" refer too? | |
Consider the following question carefully: [Outside] Inside. Which word is inside the box? Why? | |
Sum the following numbers: 145, 15, 2, 3, 569, 39, 245, 722, 109, 9, 900. |
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 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
Demonstration of generating value from a local LLM by Curtis White | |
import requests | |
import re | |
import json | |
base_url = "http://localhost:1234/v1/chat/completions" | |
headers = {"Content-Type": "application/json"} |
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
OAI Action / Tool Schema by Curtis White (Prompt Engineer / Senior Solutions Engineer) | |
// The following is an example OAI schema I was able to get to work with by creating an nGrok path to my ChatGPT Augmentify tool | |
// For this example you will need my ChatGPT Augentify Python Flask server, ngrok with Edge setup, and create a GPTs action | |
// Yeah its complicated. End result is ChatGPT with GPTs can run code on your local computer. | |
// For more info https://twitter.com/BBacktesting/status/1722952136336589138 | |
{ | |
"openapi": "3.1.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
// Powershell Power by Curtis White | |
// lsd directory with indexing | |
// cdx change to index | |
// Caution: Code is prompted AI generated. | |
function Set-IndexedLocation { | |
param( | |
[int]$index | |
) |
NewerOlder