Skip to content

Instantly share code, notes, and snippets.

View rohan-kiratsata's full-sized avatar
👨‍💻
Coding

rohanzig rohan-kiratsata

👨‍💻
Coding
View GitHub Profile
@rohan-kiratsata
rohan-kiratsata / countdown-tweet-script.js
Last active December 24, 2024 09:40
countdown-tweet-script
require('dotenv').config();
const { TwitterApi } = require('twitter-api-v2');
const cron = require('node-cron');
const client = new TwitterApi({
appKey: "",
appSecret: "",
accessToken: "",
accessSecret: "",
});
@rohan-kiratsata
rohan-kiratsata / http-server.go
Last active September 29, 2024 11:13
Basic HTTP server from scratch in go
/*
Basic implementation of an HTTP server in Go to learn and understand how it works.
What does it NOT do?
- improved error handling
- parse headers
- routing
- ...many more
*/