Skip to content

Instantly share code, notes, and snippets.

View fayezosaadi's full-sized avatar

Fayez Saadi fayezosaadi

View GitHub Profile
function http_request({url}) {
console.log("running get-text")
if (url === "https://www.example.com") {
return "Hello, world!"
}
throw Error('Bad url')
}
function string_reverse({string = ''}) {
console.log("running reverse-text");

Keybase proof

I hereby claim:

  • I am fayezosaadi on github.
  • I am fayezof (https://keybase.io/fayezof) on keybase.
  • I have a public key ASCeRsRER4c8jo-zg1spqBQ5_AvKXF5mmtZDOyUIM8g1kwo

To claim this, I am signing this object:

class Person
attr_accessor :name
def initialize(name)
@name = name
end
end
p = Person.new('L. Ron')
p p.name
<!DOCTYPE HTML>
<html>
<head>
<style>
body {
margin: 0px;
padding: 0px;
}
</style>
</head>