Skip to content

Instantly share code, notes, and snippets.

View 1a57danc3's full-sized avatar
⛱️
On vacation

Howard 1a57danc3

⛱️
On vacation
View GitHub Profile
@1a57danc3
1a57danc3 / T2.keys
Created March 16, 2020 03:41 — forked from xerub/T2.keys
=== iBridge2,1,iBridge2,3,iBridge2,4,iBridge2,5,iBridge2,7,iBridge2,8_3.5_16P5200_Restore.ipsw
Firmware/dfu/iBEC.j137.RELEASE.im4p
3723c95ba25706b4650a92177afc28af57e0a236fd0e46b83cffb6140392b63355562b5ed671bda6b5929ff728f0b324
Firmware/dfu/iBSS.j140k.RELEASE.im4p
34d7aa36e00b5c772bf7381c821253a714ed2714552a48a478b391faac32bc0eef2577d5a04e01f462648754eb9af69e
Firmware/dfu/iBSS.j137.RELEASE.im4p
4bb3ecf8b19401a009b5c0003b64ac3bae8258f6d9c42b91831927e348957dfde01384caa3fbee1b6e665d168b46fc47
Firmware/dfu/iBEC.j680.RELEASE.im4p
893d17aa768a6ebd8f85b4251ef8f692c766f7b1868bd974a3dc9fcd0dd9608e4e0709bd9208752d9515a636c129378c
{
"assets" : [
{
"accessibilityLabel" : "Seals",
"id" : "391BDF6E-3279-4CE1-9CA5-0F82811452D7",
"pointsOfInterest" : {
"0" : "A016_C009_0"
},
"url-4K-HDR" : "https:\/\/sylvan.apple.com\/Aerials\/2x\/Videos\/SE_A016_C009_HDR_20190717_3m30s_HDR_4K_HEVC.mov",
"url-4K-SDR" : "https:\/\/sylvan.apple.com\/Aerials\/2x\/Videos\/SE_A016_C009_SDR_20190717_3m30s_SDR_4K_HEVC.mov",
http://www.gstatic.com/images/icons/material/apps/weather/2x/wintry_mix_rain_snow_light_color_96dp.png
http://www.gstatic.com/images/icons/material/apps/weather/2x/haze_fog_dust_smoke_light_color_96dp.png
http://www.gstatic.com/images/icons/material/apps/weather/2x/cloudy_light_color_96dp.png
http://www.gstatic.com/images/icons/material/apps/weather/2x/snow_showers_snow_light_color_96dp.png
http://www.gstatic.com/images/icons/material/apps/weather/2x/flurries_light_color_96dp.png
@1a57danc3
1a57danc3 / javaInterviewAnswers.md
Last active August 8, 2019 05:46
Java Interview Answers

#1

public List<String> fizzBuzz(int n) {
        List<String> list = new ArrayList<>();
        for(int i=1; i<=n; i++) {
            if(i % 15 == 0) list.add("FizzBuzz");
            else if(i % 5 == 0) list.add("Buzz");
            else if(i % 3 == 0) list.add("Fizz");
 else list.add(String.valueOf(i));
@1a57danc3
1a57danc3 / ubuntuMirrorReplace.sh
Created March 25, 2019 08:22
ubuntuMirrorReplace
#!/bin/bash
cp /etc/apt/sources.list /etc/apt/sources.list.bak
sudo sed -i 's/archive.ubuntu.com/mirrors.ustc.edu.cn/g' /etc/apt/sources.list
sudo sed -i 's/security.ubuntu.com/mirrors.ustc.edu.cn/g' /etc/apt/sources.list
@1a57danc3
1a57danc3 / tcpingServer.sh
Last active March 25, 2019 07:56
tcping in py3
#tcping Installation
pip3 install tcping
#tcping Server IP
tcping z.cn -c 1 -p 80 --report >> tcpingLog.txt
tcping g.cn -c 1 -p 80 --report >> tcpingLog.txt
cat tcpingLog.txt
@1a57danc3
1a57danc3 / Display DOM Edge
Created March 6, 2019 14:42
Display DOM Edge
javascript:!document.querySelector('style#ghost')&&(document.body.innerHTML+='<style id="ghost">html.ghost *{background:#000 !important;color:#0f0 !important;outline:solid #f00 1px !important;}</style>');document.documentElement.classList.toggle('ghost');
javascript:const getRandomColor =() => { let letters = '0123456789ABCDEF';let color = '#';for (let i = 0; i < 6; i++) {color += letters[Math.floor(Math.random() * 16)];}return color;};Array.from(document.all).forEach(el => el.style.outline = `1px solid ${getRandomColor()}`)
@1a57danc3
1a57danc3 / img.sh
Last active March 15, 2019 12:29
img.sh
curl https://spotlight.it-notes.ru/feed -o 1.txt
curl https://spotlight.it-notes.ru/feed?paged=2 -o 2.txt
curl https://spotlight.it-notes.ru/feed?paged=3 -o 3.txt
curl https://spotlight.it-notes.ru/feed?paged=4 -o 4.txt
curl https://spotlight.it-notes.ru/feed?paged=5 -o 5.txt
curl https://spotlight.it-notes.ru/feed?paged=6 -o 6.txt
curl https://spotlight.it-notes.ru/feed?paged=7 -o 7.txt
curl https://spotlight.it-notes.ru/feed?paged=8 -o 8.txt
curl https://spotlight.it-notes.ru/feed?paged=9 -o 9.txt
curl https://spotlight.it-notes.ru/feed?paged=10 -o 10.txt
@1a57danc3
1a57danc3 / Repair_Adobe_XD_For_Windows
Created January 27, 2019 08:30
Repair_Adobe_XD_For_Windows
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Associations
New DWORD:BlockProtocolElevation
Value=0
@1a57danc3
1a57danc3 / websiteCrawler
Created January 24, 2019 07:05
websiteCrawler
wget -c -r -np -k -L -p http://xxx.com