Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View meoww-bot's full-sized avatar
🐱
meow sucking

meoww-bot meoww-bot

🐱
meow sucking
View GitHub Profile
04 斯波达王国与斯巴达队长
- 斯波达水乡 Lv.23 菠菜 草莓 牛奶 白芝麻 明胶
- 斯波达湿地 17 葡萄 绿茶茶叶 香蕉 菠菜 草莓
- 斯波达桥 18 菠菜 草莓 牛奶 白芝麻 明胶
- 斯波达道馆 19 葡萄 绿茶茶叶 香蕉 菠菜 草莓
- 斯波达高速公路 20 菠菜 草莓 牛奶 白芝麻 明胶
- 科梭林道(传送通道) 21 葡萄 绿茶茶叶 香蕉 菠菜 草莓
05 堕拉宫
- 欧集巴河川 27 菠菜 番茄 石榴 苹果 洋葱
@meoww-bot
meoww-bot / gist:30e6ade95595e230f59769fd4b85241d
Created January 9, 2020 07:33
Visual Studio 2019 Product Key
Visual Studio 2019 Enterprise
BF8Y8-GN2QH-T84XB-QVY3B-RC4DF
Visual Studio 2019 Professional
NYWVH-HT4XC-R2WYW-9Y3CM-X4V3Y
@meoww-bot
meoww-bot / v1.sh
Last active November 2, 2023 17:37
京东口罩库存监控,v2版本无需登录京东账号
#!/bin/bash
# 需要替换的参数:
# CHAT_ID='-1001325237796' 目标群或者频道ID
# TOKEN="BOT TOKEN" BOT的TOKEN
# Cookie 中的 THOR 可以在登录了京东账号后抓包获得
# 购买地区:
# cityId,townId,countyId 可以在"配送至" - "选择新地址",审查元素,查看对应地区的id
skuid="
100002690344
100002690350
@meoww-bot
meoww-bot / namebase.py
Created February 22, 2020 09:14 — forked from jat001/namebase.py
Sell HNS automatically
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import sys
from decimal import Decimal
from datetime import datetime
try:
import requests
import simplejson as json
@meoww-bot
meoww-bot / gist:8e3ad682be76c48a801c70175849b24a
Created March 3, 2020 04:56 — forked from andreia/gist:3212102
ORACLE: Find View created date and last modified date
select o.created,o.last_ddl_time
from user_objects o
where o.object_name='MY_VIEW' and o.object_type='VIEW';
@meoww-bot
meoww-bot / web-servers.md
Created March 13, 2020 08:46 — forked from willurd/web-servers.md
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000
###Pikachu A
proxmark3> hf mfu info
--- Tag Information ---------
-------------------------------------------------------------
TYPE : NTAG 215 504bytes (NT2H1511G0DU)
UID : 04 a6 16 72 61 3e 80
UID[0] : 04, NXP Semiconductors Germany
BCC0 : 3C, Ok
BCC1 : AD, Ok
@meoww-bot
meoww-bot / torrent2magnet.py
Created July 11, 2020 06:29
convert torrent to magnet link
import sys
import bencode
import hashlib
import base64
import urllib
def make_magnet_from_file(file) :
with open(file,'r') as f:
torrent = f.read()
@meoww-bot
meoww-bot / server.py
Created November 28, 2020 16:37 — forked from mdonkers/server.py
Simple Python 3 HTTP server for logging all GET and POST requests
#!/usr/bin/env python3
"""
Very simple HTTP server in python for logging requests
Usage::
./server.py [<port>]
"""
from http.server import BaseHTTPRequestHandler, HTTPServer
import logging
class S(BaseHTTPRequestHandler):
@meoww-bot
meoww-bot / README.md
Created April 24, 2021 09:55 — forked from lgg/README.md
Telegram save all media from chat/user/channel

Quick tip. It is possible to download media with small python script.

Goto https://my.telegram.org and generate api id and api hash Install Telethon library with pip3 install telethon Run saveAllMedia.py (replace api_id, api_hash and username with your values).

If you need proxy install https://github.com/Anorov/PySocks pip install PySocks

This code downloads all media from the dialog with username user/chat/channel in current directory.