- Cursor AI https://www.cursor.com/
- Claude Code Research Preview https://github.com/anthropics/claude-code
- Softgen Web App Developer https://softgen.ai/
- Windsurf https://codeium.com/windsurf
- GitHub Copilot https://github.com/features/copilot
- Lovable https://lovable.dev/
- Devin https://devin.ai/
- Aider https://github.com/Aider-AI/aider
- PhiData https://github.com/phidatahq/phidata
- LangGraph https://www.langchain.com/langgraph
- Autogen https://github.com/microsoft/autogen
- RagApp https://github.com/ragapp/ragapp
- MetaGPT https://github.com/geekan/MetaGPT
- AgentOps https://www.agentops.ai/
- AutoAgent https://github.com/HKUDS/AutoAgent
- CrewAI https://www.crewai.com/ https://github.com/crewAIInc/crewAI
- Runway ML: https://runwayml.com/
- Pika: https://pika.art/home
- Luma Labs Dream Machine: https://lumalabs.ai/dream-machine
- OpenAI Sora (not published): https://openai.com/index/sora/
- Meta Make-A-Video: https://makeavideo.studio/
- Adobe Firefly Video: https://blog.adobe.com/en/publish/2024/09/11/bringing-gen-ai-to-video-adobe-firefly-video-model-coming-soon)
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
package main | |
import ( | |
"fmt" | |
"github.com/miekg/dns" | |
"log" | |
"net/http" | |
) | |
const rootdnsv4 = "198.41.0.4" |
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
! | |
" | |
# | |
$ | |
% | |
& | |
' | |
( | |
) | |
* |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>Sparks of Copilot X</title> | |
<meta charset="utf-8"> | |
<meta name="author" content="Sebastian Macke"> | |
<meta name="description" content="GPT-4 Coding Experiments"> | |
<link href=" https://cdn.jsdelivr.net/npm/[email protected]/css/ace.min.css " rel="stylesheet"> | |
<style> |
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
package main | |
import ( | |
"flag" | |
"fmt" | |
"net/http" | |
"time" | |
) | |
var defaultSleepTimeMs *int |
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
/* | |
Ported shader Protean Clouds | |
https://www.shadertoy.com/view/3l23Rh | |
to WGSL | |
*/ | |
// Protean clouds by nimitz (twitter: @stormoid) | |
// https://www.shadertoy.com/view/3l23Rh | |
// License Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License | |
// Contact the author for other licensing options |
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
// compile with | |
// 'gcc -O2 main.c -o contextperf.c' -lpthread | |
#define _GNU_SOURCE | |
#include <stdio.h> | |
#include <stdint.h> | |
#include <pthread.h> | |
#include <sched.h> | |
#include <unistd.h> |
NewerOlder