Skip to content

Instantly share code, notes, and snippets.

View zeroeth's full-sized avatar
🤖
🐱 🤖 🐱 🤖

[0] zeroeth

🤖
🐱 🤖 🐱 🤖
View GitHub Profile
@zeroeth
zeroeth / notes.md
Created January 16, 2020 05:17 — forked from gregdeane/notes.md
Downgrade iOS (iPhone)

Notes

Read these notes before proceeding

In order to downgrade to the previous major version (e.g. iOS 10 to iOS 9), important and regular action must be taken. For the downgrade to work, you must be proactive and prepare for a problem. Namely:

  • Archiving backups
  • Restoring the .ipsw file

Without regular attention to the two steps above, it may not be possible to truly downgrade the iOS version.

@zeroeth
zeroeth / FuturerestoreGuide.md
Created January 16, 2020 05:17 — forked from TheRealKeto/FuturerestoreGuide.md
A guide fully covering the process of using Futurerestore to upgrade, downgrade, or re-restore to an unsigned iOS firmware.

Futurerestore Guide

Futurerestore is a tool that allows users to upgrade, downgrade, or re-restore their iOS device to an unsigned firmware through the use of SHSH2 blobs. This guide will teach you how to use Futurerestore in order to upgrade, downgrade, or re-restore to an unsigned firmware.

Before continuing, keep in mind that this guide is based off of this one, and contains information that can change your device's behavior or even damage it. With that in mind, please read the guide fully, as no one but YOU will be held responsible for any damage caused to your device.

Notes and Hints

Throughout the entirety of this guide, keep in mind that:

  • iOS 13.1.3's SEP and Baseband are NOT compatible with iOS 12.x for all devices. This means that you're NOT able to upgrade, downgrade, or re-restore A10-A12X devices back to iOS 12.x. Attempting to use an incompatible SEP and Baseband will cause Futureresto
@zeroeth
zeroeth / FuturerestoreGuide.md
Created January 16, 2020 05:17 — forked from TheRealKeto/FuturerestoreGuide.md
A guide fully covering the process of using Futurerestore to upgrade, downgrade, or re-restore to an unsigned iOS firmware.

Futurerestore Guide

Futurerestore is a tool that allows users to upgrade, downgrade, or re-restore their iOS device to an unsigned firmware through the use of SHSH2 blobs. This guide will teach you how to use Futurerestore in order to upgrade, downgrade, or re-restore to an unsigned firmware.

Before continuing, keep in mind that this guide is based off of this one, and contains information that can change your device's behavior or even damage it. With that in mind, please read the guide fully, as no one but YOU will be held responsible for any damage caused to your device.

Notes and Hints

Throughout the entirety of this guide, keep in mind that:

  • iOS 13.1.3's SEP and Baseband are NOT compatible with iOS 12.x for all devices. This means that you're NOT able to upgrade, downgrade, or re-restore A10-A12X devices back to iOS 12.x. Attempting to use an incompatible SEP and Baseband will cause Futureresto
@zeroeth
zeroeth / drive_md5_listing.gs
Last active January 14, 2020 00:26
google drive file md5 listing
/**
* Lists the files and their MD5 checksum into a logger run from script.google.com
*
* Cobbled together from the HORRORS of google infinite api documentation.
* - "Advanced Scripting" https://developers.google.com/apps-script/advanced/drive
* - V2 drive query https://developers.google.com/drive/api/v2/search-files
* - V2 file properties https://developers.google.com/drive/api/v2/reference/files/get
*/
@zeroeth
zeroeth / appsScript_ListFilesFolders_ver.2.js
Created January 13, 2020 23:16 — forked from mesgarpour/appsScript_ListFilesFolders_ver.2.js
[Google Apps Script] List all files & folders in a Google Drive folder, & write into a speadsheet
/*
* Copyright 2017 Mohsen Mesgarpour
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
Rank Title Season Episode Hashtag
173 Profit and Lace 6 23 Female Quark equals all-time bad.
172 Let He Who Is Without Sin... 5 07 Risa episodes shouldn't be terrible.
171 The Muse 4 21 A-story and B-story equally bad.
170 Meridian 3 08 This guy? Not Dax's type!
169 Fascination 3 10 Outbreak of passion? No, thanks!
168 Ferengi Love Songs 5 20 Ishka and Zek? No, thanks!
167 Rivals 2 11 Poor casting equals poor episode.
166 The Storyteller 1 14 The Dal'Rok? Rare Bajoran misstep.
165 Melora 2 06 Heart in right place. Fails.
@zeroeth
zeroeth / LICENSE.md
Last active November 27, 2019 00:21 — forked from tommaybe/LICENSE.md
Day / Hour Heatmap

Copyright (c) 2016, Tom May

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTH

@zeroeth
zeroeth / 1-pov-ray.md
Last active October 14, 2019 19:23
POV Ray Stuff

POV-Ray for OSX

http://megapov.inetart.net/povrayunofficial_mac/finalpov.html

  • /scenes folder for lots of demo scenes. /scenes/advanced for complex works (chess2.pov and ntreal.pov are nice)
  • /doc for reference and tutorial!
  • pov has a version compatibility dropdown for rendering older files!

Prerendered HD examples! (by me)

@zeroeth
zeroeth / synth.cpp
Created September 16, 2019 01:07 — forked from genericpenguin/synth.cpp
Arduino String synth
/* Arduino Synth from
https://janostman.wordpress.com/2016/01/15/how-to-build-your-very-own-string-synth/
*/
#include <avr/interrupt.h>
#include <avr/io.h>
#include <avr/pgmspace.h>
#ifndef cbi
#define cbi(sfr, bit) (_SFR_BYTE(sfr) &= ~_BV(bit))
#endif
#ifndef sbi