Synopsis:
(Assume postgres is running on localhost.)
$ go run . &
$ psql "host=127.0.0.1 port=5555 sslmode=disable user=... password=..."
| @echo off & setlocal enableextensions | |
| title Reset AnyDesk | |
| reg query HKEY_USERS\S-1-5-19 >NUL || (echo Please Run as administrator.& pause >NUL&exit) | |
| chcp 437 | |
| call :stop_any | |
| del /f "%ALLUSERSPROFILE%\AnyDesk\service.conf" | |
| del /f "%APPDATA%\AnyDesk\service.conf" | |
| copy /y "%APPDATA%\AnyDesk\user.conf" "%temp%\" | |
| rd /s /q "%temp%\thumbnails" 2>NUL | |
| xcopy /c /e /h /r /y /i /k "%APPDATA%\AnyDesk\thumbnails" "%temp%\thumbnails" |
Aplicativo mobile para precificação de produtos e gestão de pedidos da Erika Precifica.
| Recurso | URL |
|---|---|
| Repositório | https://github.com/dpossas/precifikapp |
| Figma | https://www.figma.com/design/IqzPZIibYr4ns7NvJhzWUf/APP-Precifika?node-id=1872-43603&p=f&t=qxJ5nmljHqtIme5P-0 |
This is a cheat sheet for how to perform various actions to ZSH, which can be tricky to find on the web as the syntax is not intuitive and it is generally not very well-documented.
| Description | Syntax |
|---|---|
| Get the length of a string | ${#VARNAME} |
| Get a single character | ${VARNAME[index]} |
| # Exploited PS4 Blocklist (https://gbatemp.net/threads/aio-ps4-exploit-guide.497858/) | |
| #[community.playstation.net] | |
| asm.np.community.playstation.net | |
| ps4.updptl.np.community.playstation.net | |
| ps4.updptl.sp-int.community.playstation.net | |
| ps4updptl.eu.np.community.playstation.net | |
| ps4updptl.jp.np.community.playstation.net | |
| ps4updptl.jp.sp-int.community.playstation.net | |
| ps4updptl.uk.np.community.playstation.net |
Near-stateless, fully parallelizable validation of the Bitcoin blockchain with hints about which outputs remain unspent. All other inputs/outputs are efficiently crossed off inside a single hash aggregate that only reaches zero if validation was successful and the hints were correct.
15-minute talk summarizing the protocol
Validation is at the heart of Bitcoin. Any improvements in validation speed will have a direct impact on the scalability of the system, including everything that is built on top of it. For this reason improving validation performance may be one of the most important things we can do.
Photo by Dziana Hasanbekava
The repository for the assignment is public and Github does not allow the creation of private forks for public repositories.
The correct way of creating a private frok by duplicating the repo is documented here.
For this assignment the commands are:
git clone --bare [email protected]:usi-systems/easytrace.git
| from datetime import datetime | |
| import urllib.request | |
| import base64 | |
| import json | |
| import time | |
| import os | |
| webui_server_url = 'http://127.0.0.1:7860' | |
| out_dir = 'api_out' |