Skip to content

Instantly share code, notes, and snippets.

View gregoire-bessagnet's full-sized avatar
💭
open for positions

Grégoire Bessagnet gregoire-bessagnet

💭
open for positions
View GitHub Profile
anonymous
anonymous / task.rb
Created October 21, 2016 17:08
class Task
attr_reader :id, :title
attr_accessor :done
def initialize(args = {})
@id = args[:id]
@title = args[:title]
@description = args[:description]
@done = args[:done] || false
end
anonymous
anonymous / interface.rb
Created October 11, 2016 17:18
require_relative 'scrapper'
require_relative 'logic'
WISHLIST = [
{ name: "Xbox", checked: false },
{ name: "Chien", checked: false }
]
puts "Bonjour bienvenue sur WISHLIST Master 3000"
@ssaunier
ssaunier / README.md
Last active August 1, 2023 21:28
Adding Le Wagon to your Linkedin Profil
@kevinthompson
kevinthompson / .env
Last active August 18, 2022 13:39
Litmus Example – Tweets in CSS
TWITTER_CONSUMER_KEY=""
TWITTER_CONSUMER_SECRET=""
TWITTER_SEARCH_STRING="#tedc15 -rt"
@tbranyen
tbranyen / _usage.md
Last active April 19, 2024 12:24
OpenWeatherMap / Weather Icons integration
  1. Include Weather Icons in your app: https://github.com/erikflowers/weather-icons

  2. Include the below JSON in your application, for example purposes, lets assume it's a global named weatherIcons.

  3. Make a request to OpenWeatherMap:

req = $.getJSON('http://api.openweathermap.org/data/2.5/weather?q=London,uk&callback=?');
@janogarcia
janogarcia / email_coding_guidelines.md
Last active March 13, 2024 12:13
Email Coding Guidelines
@LeCoupa
LeCoupa / bash-cheatsheet.sh
Last active May 22, 2024 09:39
Bash CheatSheet for UNIX Systems --> UPDATED VERSION --> https://github.com/LeCoupa/awesome-cheatsheets
#!/bin/bash
#####################################################
# Name: Bash CheatSheet for Mac OSX
#
# A little overlook of the Bash basics
#
# Usage:
#
# Author: J. Le Coupanec
# Date: 2014/11/04