Skip to content

Instantly share code, notes, and snippets.

View biglovisa's full-sized avatar
🌍
Patch is hiring!

Lovisa Svallingson biglovisa

🌍
Patch is hiring!
View GitHub Profile
@biglovisa
biglovisa / oauth-example.md
Last active July 13, 2020 01:49
OAuth Example using the omniauth-github gem
@biglovisa
biglovisa / pokemon.rb
Created February 12, 2016 16:02
pokemon-cli
require "net/http"
require "json"
require "pry"
class PokemonService
def pokemon_information(info)
path = "pokemon/#{info}"
send_request(path: path)
end
@biglovisa
biglovisa / js-1.js
Last active February 9, 2016 15:57
js-challenge-1
//------------------------------------------------------------- Split the string on new lines
var text = "What are you talking about?"
split(text);
// #=> ["What", "are", "you", "talking", "about?"]
//------------------------------------------------------------- Reverse the order of the words
var text = "What are you talking about?"
reverseOrder(text);
@biglovisa
biglovisa / 2016-01-07.md
Created January 7, 2016 16:52
January 7 2016
@biglovisa
biglovisa / old-vs-new.js
Last active December 18, 2015 16:48
Old vs New React class syntax
/// Older
///////////// Here, we specify the defaultProps and the initialState in functions in the component
///////////// We also validate the component props in the propTypes function
var Counter = React.createClass({
getDefaultProps: function(){
return {initialCount: 0};
},
getInitialState: function() {
return {count: this.props.initialCount}