Skip to content

Instantly share code, notes, and snippets.

View matsyui's full-sized avatar
0null.app

Mathew Agustin matsyui

0null.app
View GitHub Profile
@dragonfire1119
dragonfire1119 / docker-compose-chromium.yaml
Last active March 25, 2025 10:20
Docker Compose for Chromium
# Specify the version of Docker Compose syntax being used
version: "2.1"
# Define the services that will be managed by this Docker Compose file
services:
# Service for running Chromium browser in a container
chromium:
# Specify the Docker image to be used for this service
image: lscr.io/linuxserver/chromium:latest
@timothycarambat
timothycarambat / index.html
Created September 18, 2021 01:22
Easy Web3 Meta Mask Login - static HTML and Vanilla JS
<html>
<head>
<title>Web3 Metamask Login</title>
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="flex w-screen h-screen justify-center items-center">
<div class="flex-col space-y-2 justify-center items-center">
<button id='loginButton' onclick="" class="mx-auto rounded-md p-2 bg-purple-500 text-white">
@DerEnderKeks
DerEnderKeks / WebhookTutorial.md
Last active December 4, 2023 20:28
Simple Webhook Tutorial (Twitter -> Discord using IFTTT)

Simple Webhook Tutorial

In this tutorial, I will be explaining how to set up a simple webhook to relay your tweets to a Discord channel.

Step 1 - Register on IFTTT

  1. Go to https://ifttt.com/ and create an account (if you don't already have one).

Step 2 - Make a Discord Webhook

  1. Find the Discord channel in which you would like to send Tweets.

  2. In the settings for that channel, find the Webhooks option and create a new webhook.