Skip to content

Instantly share code, notes, and snippets.

@james-harper
james-harper / InstagramHelper.js
Last active February 28, 2024 05:11
Instagram.com - Unsend All Messages
// instagram.com utilities
//
// currently I only have unsend all messages in thread implemented.
// but may add more if I need them
// (this won't work in incognito due to localStorage, session, & cookie values being required)
//
// To use, navigate to the thread in a web browser (I only tested with Chrome)
// and copy and paste the code into a Developer tools console
// "threadId" will need to be updated with the appropriate value
class InstagramHelper {
@shoark7
shoark7 / caesar_cipher.py
Last active April 21, 2021 02:38
소문자 문자열 카이사르 암호 만들기
"""문자열을 입력받아 카이사르 암호를 만들어라.
:입력: str | 영어 소문자 문자열. 크기는 0 이상. (ex: `word`)
:출력: str | 각 글자를 오른쪽으로 3씩 옮긴 암호. (ex: `zrug`)
:조건:
1. 입력에는 영어 소문자 이외의 글자는 들어오지 않는다. 예를 들어 대문자, 한글, 공백문자 등.
"""
def caesar_cipher(word):
UNICODE_BASE = ord('a')
@theramiyer
theramiyer / arch-arm-rpi3-b-plus.md
Last active April 23, 2024 21:11
Install Arch Linux (ARM) on Raspberry Pi 3 Model B+

Install Arch Linux (ARM) on Raspberry Pi B+

Created 17 Aug 2018

This is a simple installation that I did on my Raspberry Pi. Of course, this is only one of the many reasons to do it.

Here are my requirements:

@stypr
stypr / iptime_wol.py
Created February 13, 2018 07:12
iptime WOL in python
#!/usr/bin/python -u
#-*- coding: utf-8 -*-
# Developer: Harold Kim(root@stypr.com)
import os
import sys
import re
import requests
class iptime: