import sys
import os
NOP = 0x90
offsets_and_values = {
0x000035FE: 0x01,
0x0000361D: 0x95,| LYUCS92YXV-eyJsaWNlbnNlSWQiOiJMWVVDUzkyWVhWIiwibGljZW5zZWVOYW1lIjoi5pyd6Zm956eR5oqA5aSn5a24IiwibGljZW5zZWVUeXBlIjoiQ0xBU1NST09NIiwiYXNzaWduZWVOYW1lIjoiVGFvYmFv77ya5p6B5a6i5LiT5LqrICAtLS0g6LCo6Ziy55uX5Y2W77yBIiwiYXNzaWduZWVFbWFpbCI6IkphbWVfQnJhaXRtYW5AaG90bWFpbC5jb20iLCJsaWNlbnNlUmVzdHJpY3Rpb24iOiJGb3IgZWR1Y2F0aW9uYWwgdXNlIG9ubHkiLCJjaGVja0NvbmN1cnJlbnRVc2UiOmZhbHNlLCJwcm9kdWN0cyI6W3siY29kZSI6IkdPIiwicGFpZFVwVG8iOiIyMDI1LTAyLTE5IiwiZXh0ZW5kZWQiOmZhbHNlfSx7ImNvZGUiOiJSUzAiLCJwYWlkVXBUbyI6IjIwMjUtMDItMTkiLCJleHRlbmRlZCI6ZmFsc2V9LHsiY29kZSI6IkRNIiwicGFpZFVwVG8iOiIyMDI1LTAyLTE5IiwiZXh0ZW5kZWQiOmZhbHNlfSx7ImNvZGUiOiJDTCIsInBhaWRVcFRvIjoiMjAyNS0wMi0xOSIsImV4dGVuZGVkIjpmYWxzZX0seyJjb2RlIjoiUlNVIiwicGFpZFVwVG8iOiIyMDI1LTAyLTE5IiwiZXh0ZW5kZWQiOmZhbHNlfSx7ImNvZGUiOiJSU0MiLCJwYWlkVXBUbyI6IjIwMjUtMDItMTkiLCJleHRlbmRlZCI6dHJ1ZX0seyJjb2RlIjoiUEMiLCJwYWlkVXBUbyI6IjIwMjUtMDItMTkiLCJleHRlbmRlZCI6ZmFsc2V9LHsiY29kZSI6IkRTIiwicGFpZFVwVG8iOiIyMDI1LTAyLTE5IiwiZXh0ZW5kZWQiOmZhbHNlfSx7ImNvZGUiOiJSRCIsInBhaWRVcFRvIjoiMjAyNS0wMi0xOSIsI |
| [client] | |
| # TCP/IP port number to use for connection | |
| port = 3306 | |
| [mysql] | |
| # This option is on by default, which enables database, table, and column name completion. | |
| no_auto_rehash | |
| # The maximum size of the buffer for client/server communication. The default is 16MB, the maximum is 1GB. | |
| max_allowed_packet = 16M | |
| # Set the prompt to the specified format |
| package com.edencoding; | |
| import javafx.animation.PauseTransition; | |
| import javafx.application.Application; | |
| import javafx.application.Platform; | |
| import javafx.fxml.FXMLLoader; | |
| import javafx.scene.Parent; | |
| import javafx.scene.Scene; | |
| import javafx.scene.effect.DropShadow; | |
| import javafx.scene.image.Image; |
| uses | |
| iPub.Rtl.Refit; // From https://github.com/viniciusfbb/ipub-refit | |
| type | |
| TAddress = record | |
| Erro: Boolean; | |
| Cep: string; | |
| Logradouro: string; | |
| Complemento: string; | |
| Bairro: string; |
| package main | |
| import ( | |
| "fmt" | |
| "syscall" | |
| "unicode/utf16" | |
| "unsafe" | |
| ) | |
| //https://github.com/golang/go/wiki/WindowsDLLs |
Note
More information you can find on Microsoft documentation.
Tip
You can install all Visual C++ Redistributable Packages using only one command with winget! https://gist.github.com/ChuckMichael/d4221fd8681a7e962c8d37d623ff3145
- x64 8.0.61000 (EOL)
Microsoft.VCRedist.2005.x64
How to install and configure Caddy, a modern web server, running as a service on CentOS 6.8. You will also obtain a free SSL-Certificate for a website automatically.
This is in-depth guide how to install a modern web server named Caddy as service, that running from regular unprivileged user. You will also obtain a Free SSL-Certificate for a Website automatically.
Apache and Nginx are the two most common web servers in the world. Apache is a classical solution, but due to it's memory consumption (because to it's nature of creating a new process for each request) we will leave it for another occasion. Nginx is very fast and the RAM consumption is very-very low, if we need to serve static pages. But Nginx's configuration is not to easy read and understand, this is why we will try more flexible and clear solution, which is more intended for newbies.
Caddy is written is Go, open-source and pretty fast web server. If you're looking for low-memory solution the Cadd
| var mqtt = require('mqtt'); //https://www.npmjs.com/package/mqtt | |
| var Topic = '#'; //subscribe to all topics | |
| var Broker_URL = 'mqtt://192.168.1.123'; | |
| var Database_URL = '192.168.1.123'; | |
| var options = { | |
| clientId: 'MyMQTT', | |
| port: 1883, | |
| //username: 'mqtt_user', | |
| //password: 'mqtt_password', |
| package main | |
| import ( | |
| "fmt" | |
| ) | |
| // Use map[string]interface{} to pair functions to name | |
| // Could maybe use anonymous functions instead. Might be clean | |
| // in certain cases | |
| var funcMap = map[string]interface{}{ |