Skip to content

Instantly share code, notes, and snippets.

View Bishwas-py's full-sized avatar
🎯
Focusing

Bishwas Bhandari Bishwas-py

🎯
Focusing
View GitHub Profile
package main
import (
"fmt"
"time"
)
func main() {
const iterations = 1000000 // Using a large number to make the difference more noticeable
@Nezteb
Nezteb / elixir-language-server-comparison.md
Last active March 5, 2025 17:05
Elixir Language Server Comparisons
@parafeu
parafeu / scrollbar.js
Last active October 22, 2024 09:08
Scrollbar plugin tailwindcss
const plugin = require("tailwindcss/plugin");
module.exports = plugin(function ({ addUtilities, matchUtilities, theme }) {
const scrollbarTrackColorValue = (value) => ({
'--scrollbar-track': value,
'&::-webkit-scrollbar-track': {
"background-color": value
}
})
@bradtraversy
bradtraversy / django_deploy.md
Last active March 13, 2025 16:50
Django Deployment - Digital Ocean

Django Deployment to Ubuntu 18.04

In this guide I will go through all the steps to create a VPS, secure it and deploy a Django application. This is a summarized document from this digital ocean doc

Any commands with "$" at the beginning run on your local machine and any "#" run when logged into the server

Create A Digital Ocean Droplet

Use this link and get $10 free. Just select the $5 plan unless this a production app.