Skip to content

Instantly share code, notes, and snippets.

View chilljello's full-sized avatar

YesNola chilljello

  • MGM Grand
View GitHub Profile
@chilljello
chilljello / bothway.go
Created August 31, 2024 13:38
enc and decryp
// Decrypt decrypts the ciphertext using AES with the given key
func Decrypt(ciphertext, key string) (string, error) {
// Convert the key and ciphertext to byte arrays
keyBytes := []byte(key)
ciphertextBytes, err := base64.StdEncoding.DecodeString(ciphertext)
if err != nil {
return "", err
}
// Create a new AES cipher
@chilljello
chilljello / goowell.sol
Created October 2, 2019 04:50
nice to start now.
pragma solidity ^0.5.8;
/*
telegram: https://t.me/singularitynet
@singularitynet
hashtag: #singularitynet
*/
contract IGameAlgo {
function getRecommendScaleBylevelandTim(uint level, uint times) public view returns (uint);
@chilljello
chilljello / bank01.sol
Created September 25, 2019 18:18
Ethereumfund.io Ethereum Hedge Fund is a hedge fund based on the cryptocurrencies that helps to all investors in our fund * to Minimize the risks of investing in cryptocurrencies and * Maximize your ETH profits from 9.99% per day, 299.7% per month, 3596.4% per year. * Ethereumfund.io guarantees low risk and high profitability your capital. * Ris…
/**
*Submitted for verification at Etherscan.io on 2019-07-24
*/
pragma solidity 0.5.10;
/**
*
* Ethereumfund.io Ethereum Hedge Fund is a hedge fund based on the cryptocurrencies that helps to all investors in our fund
* to Minimize the risks of investing in cryptocurrencies and
@chilljello
chilljello / checker.js
Created January 8, 2019 01:32
verifier
function check(event) {
var randomize = document.getElementById('randomize').value;
// var pattern = /"(.+?)" "(.+?)" "(.+?)" "(.+?)"/;
var ss, ssh, cs, nb, sn;
//console.log(event);
//console.log(randomize);
clear();
if (randomize.length > 64) {
ss = randomize.substr(-8);