Skip to content

Instantly share code, notes, and snippets.

@nimone
nimone / Carousel.jsx
Last active May 15, 2024 17:41
Build a carousel component like instagram purely in ReactJS and TailwindCSS
@ValeryC
ValeryC / cowhello.js
Created March 23, 2018 18:40
cow says hello with node js, you call a function cowsay . you have to install with npm
/*
for this quest open your terminal. and write this on the current file :
npm init
npm install -g cowsay
after that create a file .js and put the code below and enjoy
*/
const cowSay = require('cowsay')
console.log(cowSay.say({text : 'hello boy' }))