- AGB-001
- ASS101 screen
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
| <script src="http://code.jquery.com/jquery-latest.js" type="text/javascript"></script> | |
| <script src="jquery.innerfade.js" type="text/javascript"></script> | |
| <script> | |
| $(document).ready(function() { | |
| $('#image_rotate').innerfade({ | |
| speed: 'slow', | |
| timeout: 2000, | |
| type: 'sequence', | |
| containerheight: '220px' | |
| }); |
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
| # -*- coding: utf-8 -*- | |
| """ | |
| Compiled, mashed and generally mutilated 2014-2015 by Denis Pleic | |
| Made available under GNU GENERAL PUBLIC LICENSE | |
| # Modified Python I2C library for Raspberry Pi | |
| # as found on http://www.recantha.co.uk/blog/?p=4849 | |
| # Joined existing 'i2c_lib.py' and 'lcddriver.py' into a single library | |
| # added bits and pieces from various sources | |
| # By DenisFromHR (Denis Pleic) |
##Tools:
- Ohana 3DS
- Ohana 3DS Rebirth (can't open overworld models?)
- pk3ds (tools -> unpack)
##Unpacking/Repacking files in romFS
- Open pk3ds packing tool from tools menu
- Drag a/N/N/N -> unpack at top of pkedit tool window
- Folder is created
- Open/edit models in this folder
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
| #!/usr/bin/env python | |
| # NOTE! This file replaces __init__.py in the Unicorn HAT HD library and allows it to drive two displays side-by-side, | |
| # in this configuration: https://twitter.com/Gadgetoid/status/883259931478155264 | |
| # Both HATs are connected to Mini Black HAT Hack3r boards- the right board is connected directly to the Pi, and the left | |
| # board is wired to the GPIO outputs of the right using the standard UHHD pinout: https://pinout.xyz/pinout/unicorn_hat_hd | |
| # MISO is not needed, and the chip-select pin is jumped from BCM7 on the right header to BCM8 on the left. |
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
| Leaked Keys: | |
| ============ | |
| sha256(master_key_00) = 0EE359BE3C864BB0782E1D70A718A0342C551EED28C369754F9C4F691BECF7CA | |
| sha256(master_key_01) = 4FE707B7E4ABDAF727C894AAF13B1351BFE2AC90D875F73B2E20FA94B9CC661E | |
| sha256(master_key_02) = 79277C0237A2252EC3DFAC1F7C359C2B3D121E9DB15BB9AB4C2B4408D2F3AE09 | |
| sha256(master_key_03) = 4F36C565D13325F65EE134073C6A578FFCB0008E02D69400836844EAB7432754 | |
| sha256(package1_key_00) = 4543CD1B7CAD7EE0466A3DE2086A0EF923805DCEA6C741541CDDB14F54F97B40 | |
| sha256(package1_key_01) = 4A11DA019D26470C9B805F1721364830DC0096DD66EAC453B0D14455E5AF5CF8 | |
| sha256(package1_key_02) = CCA867360B3318246FBF0B8A86473176ED486DFE229772B941A02E84D50A3155 |
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
| { | |
| "grinning": "\ud83d\ude00", | |
| "smiley": "\ud83d\ude03", | |
| "smile": "\ud83d\ude04", | |
| "grin": "\ud83d\ude01", | |
| "laughing": "\ud83d\ude06", | |
| "satisfied": "\ud83d\ude06", | |
| "face_holding_back_tears": "\ud83e\udd79", | |
| "sweat_smile": "\ud83d\ude05", | |
| "joy": "\ud83d\ude02", |
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
| #!/bin/bash | |
| # This script is based on https://unix.stackexchange.com/revisions/480191/9 . | |
| # The following changes proved to be necessary to make it work on CentOS 7: | |
| # * removed disk info (model, size) - not very useful, might not work in many cases. | |
| # * using "bw" instead of "bw_bytes" to support fio version 3.1 (those availible through yum @base) | |
| # * escaping exclamation mark in sed command | |
| # * the ".fiomark.txt" is not auto-removed | |
| LOOPS=5 #How many times to run each test |
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
| #include "freertos/FreeRTOS.h" | |
| #include "esp_event_loop.h" | |
| #include "esp_system.h" | |
| #include "esp_event.h" | |
| #include "esp_wifi.h" | |
| #include "nvs_flash.h" | |
| #include "string.h" |
OlderNewer