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:
// 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 { |
"""문자열을 입력받아 카이사르 암호를 만들어라. | |
:입력: str | 영어 소문자 문자열. 크기는 0 이상. (ex: `word`) | |
:출력: str | 각 글자를 오른쪽으로 3씩 옮긴 암호. (ex: `zrug`) | |
:조건: | |
1. 입력에는 영어 소문자 이외의 글자는 들어오지 않는다. 예를 들어 대문자, 한글, 공백문자 등. | |
""" | |
def caesar_cipher(word): | |
UNICODE_BASE = ord('a') |
#!/usr/bin/python -u | |
#-*- coding: utf-8 -*- | |
# Developer: Harold Kim([email protected]) | |
import os | |
import sys | |
import re | |
import requests | |
class iptime: |