While messing with a CF-U1 handheld PC that I bought off ebay I managed to mess up the BIOS and it
seems it reverted to previous settings which included an unknown BIOS password, it would however still
boot into windows. Since I could still boot windows I was able to dump the bios flash using
AFUWINGUI.EXE the version I used was 3.09.03.1462 which is available here:
https://ami.com/en/?Aptio_4_AMI_Firmware_Update_Utility.zip
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
| # taken from http://www.piware.de/2011/01/creating-an-https-server-in-python/ | |
| # generate server.xml with the following command: | |
| # openssl req -new -x509 -keyout server.pem -out server.pem -days 365 -nodes | |
| # run as follows: | |
| # python simple-https-server.py | |
| # then in your browser, visit: | |
| # https://localhost:4443 | |
| import BaseHTTPServer, SimpleHTTPServer | |
| import ssl |
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 <iostream> | |
| #include <fstream> | |
| #include <memory> | |
| #include <string> | |
| #include <algorithm> | |
| void process_crypt_table(unsigned *crypt_table) | |
| { | |
| for (auto i = 0; i < 227; i++) | |
| { |
- Install Docker Desktop
Because we already have an official CockroachDB docker image, we will use that in our docker-compose.yml file. We recommend you use one of the current tags instead of latest.
How to use this script:
- Go to https://discord.com/app
- Press
Ctrl + Shift + Ito open DevTools - Go to the
Consoletab - Paste the following code and hit enter:
let wpRequire;#how to transfer games to your vita via FTP
###requirements
- henkaku activated psvita 3.60
- filezilla ftp client
- wifi connection
- make sure your psvita and computer are in the same wifi network
##in your computer
- install filezilla (ftp client)
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 requests | |
| import os | |
| import time | |
| from urllib.parse import urlparse | |
| from datetime import datetime | |
| DATE_PATTERN = "%a, %d %b %Y %H:%M:%S %Z" | |
| def downloadImage(url, filePath): | |
| try: |
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
| const spawn = require('child_process').spawn; | |
| // a command you want to execute. | |
| const command = "node cli/hoge.js --aaa --bbb=123"; | |
| const parts = command.split(" "); | |
| const cmd = parts[0]; | |
| const args = parts.splice(1); | |
| // detached: true: This option makes the child process a leader of a new process group, allowing it to continue running after the parent process exits. |