Skip to content

Instantly share code, notes, and snippets.

View Samyoul's full-sized avatar
🙉
Cross-legged on the verge

Samuel Hawksby-Robinson Samyoul

🙉
Cross-legged on the verge
View GitHub Profile
This post links my 3Box profile to my Github account! Web3 social profiles by 3Box.
✅ did:3:bafyreicbffg6bgvsmbt4mghrb3yxcrfxy6qet6ctjx6dglfzcoeoort4vi ✅
Create your profile today to start building social connection and trust online at https://3Box.io/
function endVector(start_vector, centre_vector, degrees) {
var A = {
x: start_vector.x - centre_vector.x,
y: start_vector.y - centre_vector.y
}
var theta = degrees * Math.PI / 180.0
var end_x = Math.cos(theta)*A.x + Math.sin(theta)*A.y
var end_y = -(Math.sin(theta)*A.x) + Math.cos(theta)*A.y
@Samyoul
Samyoul / ethereum_private_key_to_address.rb
Created March 18, 2018 21:17
Ethereum convert private key to address (public key)
# Ruby version
# gem install digest-sha3
require 'openssl'
require 'digest/sha3'
curve = OpenSSL::PKey::EC.new('secp256k1')
curve.generate_key
prv = curve.private_key.to_s(16)
pub = curve.public_key.to_bn.to_s(16)
@Samyoul
Samyoul / keybase.md
Last active December 11, 2017 12:19

Keybase proof

I hereby claim:

  • I am samyoul on github.
  • I am samyoul (https://keybase.io/samyoul) on keybase.
  • I have a public key whose fingerprint is 595C C25C E28A 59D7 C1AC 65BB 9B17 F94D CD0D 866F

To claim this, I am signing this object:

Advert Describtion Advert Rate Advert Value Advert Product Advert Class Advert Category Advert Sector Location (website name) Date Time Advert Dimensions Image Id
??? ????? THE FISH MARKET ??? ??????? ???... EATING AWARDS 2016 ?????????? ?????????? 700 33 THE FISH MARKET RESTAURANT FISH TAVERN RESTAURANTS FAST FOOD_RESTAURANTS http://protathlima.com/ 31/03/2017 9:49:18 AM 300X250
??? ????? THE FISH MARKET ??? ??????? ???... EATING AWARDS 2016 ?????????? ?????????? 700 33 THE FISH MARKET RESTAURANT FISH TAVERN RESTAURANTS FAST FOOD_RESTAURANTS http://cyprustimes.com/ 31/03/2017 11:02:23 PM 300X250
??? ????? THE FISH MARKET ??? ??????? ???... EATING AWARDS 2016 ?????????? ?????????? 700 33 THE FISH MARKET RESTAURANT FISH TAVERN RESTAURANTS FAST FOOD_RESTAURANTS http://showbiz.com.cy/ 29/03/2017 9:21:28 PM 300X250

jQuery Caret

This is a very simple lightweight plugin to allow you to move the caret (or cursor) position in an <input /> or <textarea> element.

By exposing three jQuery.fn methods you can easily move a a caret to any position you like:

$.fn.caretTo( index , [ offset ] )