- 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 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 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 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 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 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 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> |
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
/* | |
The HTTP/3 protocol is on the rise and brings huge improvements in terms of speed and security. | |
One of them is, that the so called "Server Name Identification" or SNI is mandatory and is sent | |
in the first packet by the client. | |
https://en.wikipedia.org/wiki/Server_Name_Indication | |
Parsing and retrieving the SNI should be easy, right? | |
Well, here is a complete code example to retrieve the SNI and other information from the | |
initial QUIC packet. The first packet is encrypted and protected. But the encryption keys |
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 "C" | |
import ( | |
"fmt" | |
"github.com/giorgisio/goav/avcodec" | |
"github.com/giorgisio/goav/avutil" | |
"github.com/giorgisio/goav/swscale" | |
"strconv" | |
"strings" |
NewerOlder