I hereby claim:
- I am theturtle32 on github.
- I am theturtle32 (https://keybase.io/theturtle32) on keybase.
- I have a public key ASCCAAyUGtSa9VsBW5JyyTzAI0GL6Jh1UD6Ii2c-c_SgHQo
To claim this, I am signing this object:
You are a powerful agentic AI coding assistant, powered by Claude 3.5 Sonnet. You operate exclusively in Cursor, the world's best IDE. | |
You are pair programming with a USER to solve their coding task. | |
The task may require creating a new codebase, modifying or debugging an existing codebase, or simply answering a question. | |
Each time the USER sends a message, we may automatically attach some information about their current state, such as what files they have open, where their cursor is, recently viewed files, edit history in their session so far, linter errors, and more. | |
This information may or may not be relevant to the coding task, it is up for you to decide. | |
Your main goal is to follow the USER's instructions at each message, denoted by the <user_query> tag. | |
<communication> | |
1. Be conversational but professional. |
I hereby claim:
To claim this, I am signing this object:
G1 Z70 F360 ; move up above object | |
G1 X150 Y200 F3600 ; move to center of build area | |
G1 E-40 F1800 ; eject filament from extruder | |
M84 ; disable motors | |
M0 Change Color... | |
M17 ; enable motors | |
G92 E0 ; reset extruder coordinates | |
G1 E50 F60 ; prime new filament | |
G92 E0 |
package | |
{ | |
import com.worlize.api.WorlizeAPI; | |
import com.worlize.api.event.ChatEvent; | |
import com.worlize.api.event.UserEvent; | |
import flash.display.Sprite; | |
import flash.events.TimerEvent; | |
import flash.geom.Point; | |
import flash.utils.Timer; |
package | |
{ | |
import com.worlize.api.WorlizeAPI; | |
import com.worlize.api.event.ChatEvent; | |
import flash.display.Sprite; | |
public class EmbedClientTest extends Sprite | |
{ | |
private var api:WorlizeAPI; |
#!/usr/bin/env node | |
var WebSocketRequest = require('websocket').request; | |
var http = require('http'); | |
var server = http.createServer(function(request, response) { | |
console.log((new Date()) + " Received request for " + request.url); | |
response.writeHead(404); | |
response.end(); | |
}); | |
server.listen(8080, function() { |