Skip to content

Instantly share code, notes, and snippets.

View jether2011's full-sized avatar
🎯
Focusing

Jether Rodrigues do Nascimento jether2011

🎯
Focusing
View GitHub Profile
@jether2011
jether2011 / .deps...npm...@chainlink...contracts-ccip...src...v0.8...ConfirmedOwner.sol
Created November 2, 2023 21:07
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.19+commit.7dd6d404.js&optimize=false&runs=200&gist=
@jether2011
jether2011 / .prettierrc.json
Created November 2, 2023 15:13
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.22+commit.4fc1097e.js&optimize=false&runs=200&gist=
{
"overrides": [
{
"files": "*.sol",
"options": {
"printWidth": 80,
"tabWidth": 4,
"useTabs": false,
"singleQuote": false,
"bracketSpacing": false
@jether2011
jether2011 / .prettierrc.json
Created November 2, 2023 14:24
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.22+commit.4fc1097e.js&optimize=false&runs=200&gist=
{
"overrides": [
{
"files": "*.sol",
"options": {
"printWidth": 80,
"tabWidth": 4,
"useTabs": false,
"singleQuote": false,
"bracketSpacing": false
@jether2011
jether2011 / hacktests
Created August 18, 2020 13:49
Invillia Hacktest
1. Dado as classes definidas abaixo (`Employee` e `Programmer`), qual das opções, quando inseridas em
`//INSERT CODE HERE//`, irá definir que o método rode como um método polimórfico?
```java
class Employee
{
//INSERT CODE HERE//
{
System.out.println ("Invillia Power");
}
@jether2011
jether2011 / Hasher.java
Created December 1, 2016 17:25 — forked from lukaszb/Hasher.java
Java implementation of Django PasswordHasher
/* Example implementation of password hasher similar on Django's PasswordHasher
* Requires Java8 (but should be easy to port to older JREs)
* Currently it would work only for pbkdf2_sha256 algorithm
*
* Django code: https://github.com/django/django/blob/1.6.5/django/contrib/auth/hashers.py#L221
*/
import java.nio.charset.Charset;
import java.security.NoSuchAlgorithmException;
import java.security.spec.InvalidKeySpecException;
import java.security.spec.KeySpec;