Skip to content

Instantly share code, notes, and snippets.

View Studio1HQ's full-sized avatar

Studio1HQ Studio1HQ

  • 20:05 (UTC +05:30)
View GitHub Profile
@Studio1HQ
Studio1HQ / index.cpp
Created May 22, 2025 15:37
Competitive Programming using Grok3
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int MOD = 998244353;
const int MAXN = 5e5 + 10;
ll fac[MAXN], inv[MAXN];
// Modular exponentiation
@Studio1HQ
Studio1HQ / index.cpp
Last active May 25, 2025 06:22
Competitive Programming using Claude 4
#include <bits/stdc++.h>
using namespace std;
static const int MOD = 998244353;
static const int MAXN = 500000;
long long modexp(long long a, long long e = MOD-2) {
long long r = 1;
while(e) {
if(e & 1) r = (r * a) % MOD;
@Studio1HQ
Studio1HQ / index.html
Created May 22, 2025 15:32
3D ping Pong Game by Grok 3
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tron Ping Pong</title>
<script src="<https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.2/p5.min.js>"></script>
<style>
body {
margin: 0;
@Studio1HQ
Studio1HQ / index.html
Last active May 25, 2025 06:32
3d Ping Pong Game by Claude 4
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>3D Tron Pong</title>
<style>
@import url("<https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap>");
* {
@Studio1HQ
Studio1HQ / index.html
Created May 22, 2025 15:30
Arkanoid Game output by Grok3
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DX-Ball Arcade Game</title>
<style>
body {
margin: 0;
display: flex;
@Studio1HQ
Studio1HQ / index.html
Last active May 25, 2025 06:33
Arkanoid Game Output Claude 4
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DX BRICK BREAKER</title>
<style>
@import url("<https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap>");
* {