| 频道名称 | 地址 |
|---|---|
| CCTV1高清 | rtp://239.109.205.118:8880 |
| CCTV2高清 | rtp://239.109.205.106:8784 |
| CCTV3高清 | rtp://239.109.205.79:8568 |
| CCTV4高清 | rtp://239.109.205.159:9108 |
| CCTV5高清 | rtp://239.109.205.80:8576 |
| CCTV6高清 | rtp://239.109.205.84:8608 |
| CCTV7高清 | rtp://239.110.205.7:9774 |
| CCTV8高清 | rtp://239.109.205.90:8656 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''' | |
| IDA plugin to display the calls and strings referenced by a function as hints. | |
| Installation: put this file in your %IDADIR%/plugins/ directory. | |
| Author: Willi Ballenthin <william.ballenthin@fireeye.com> | |
| Licence: Apache 2.0 | |
| ''' | |
| import idc | |
| import idaapi | |
| import idautils |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local function SleepEx(stime, button) | |
| loopCount = stime / 50 | |
| for i = loopCount, 0, -1 do | |
| if IsMouseButtonPressed(button) == true then | |
| return false | |
| end | |
| sleepTime = (i >= 1 and 1 or i) * 50 | |
| Sleep(sleepTime) | |
| end | |
| return true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import re, pathlib, base64 | |
| from urllib.parse import unquote | |
| _re = re.compile(b"!\[[^\[\]]*\]\(([^\(\)]+)\)") | |
| _template = b"data:image/{{FORMAT}};base64,{{DATA}}" | |
| def markdown_img_to_base64(_input, _output=None): | |
| assert _output | |
| with open(_input, "rb") as f1: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //DATA XREF: CPL_LegacyMappingsMatch(CPLEXECINFO *,_MAPPEDCPLTYPE *)+5E↑o | |
| CPL_ITEM cpl_table[42] = | |
| { | |
| { L"MODEM.CPL", NULL, NULL, 1i64, L"Microsoft.PhoneAndModem", NULL, L"1" }, | |
| { L"UPS.CPL", NULL, NULL, 1i64, L"Microsoft.PowerOptions", NULL, NULL }, | |
| { L"POWERCFG.CPL", NULL, NULL, 1i64, L"Microsoft.PowerOptions", NULL, NULL }, | |
| { | |
| L"STICPL.CPL", | |
| NULL, | |
| NULL, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from ctypes import (windll, wintypes, c_uint64, cast, POINTER, Union, c_ubyte, | |
| LittleEndianStructure, byref, c_size_t) | |
| import zlib | |
| # types and flags | |
| DELTA_FLAG_TYPE = c_uint64 | |
| DELTA_FLAG_NONE = 0x00000000 | |
| DELTA_APPLY_FLAG_ALLOW_PA19 = 0x00000001 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| POST /event/sol/sign?lang=en-us HTTP/1.1 | |
| Host: hk4e-api-os.mihoyo.com | |
| Connection: keep-alive | |
| Content-Length: 29 | |
| Pragma: no-cache | |
| Cache-Control: no-cache | |
| sec-ch-ua: "Chromium";v="88", "Google Chrome";v="88", ";Not A Brand";v="99" | |
| Accept: application/json, text/plain, */* | |
| DNT: 1 | |
| sec-ch-ua-mobile: ?0 |
- 900108900
- 900452104
- 900941509
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| clear | |
| unbindall | |
| bind "1" "slot1" | |
| bind "2" "slot2" | |
| bind "3" "slot3" | |
| bind "4" "slot4" | |
| bind "5" "slot5" | |
| bind "6" "slot6" | |
| //https://amp-reddit-com.cdn.ampproject.org/c/s/amp.reddit.com/r/GlobalOffensive/comments/50ud4j/command_csgo_bots_like_a_pro_the_complete_guide/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Lovely Forks | |
| // @namespace musically-ut | |
| // @version 2.6.2 | |
| // @description Show notable forks of GitHub projects. | |
| // @homepage https://github.com/musically-ut/lovely-forks | |
| // @icon https://github.com/musically-ut/lovely-forks/raw/master/userscript/icon.png | |
| // @author musically-ut | |
| // @match *://github.com/* | |
| // @grant GM_addStyle |
NewerOlder