Skip to content

Instantly share code, notes, and snippets.

@Kornil
Kornil / Cool Quote Generator.markdown
Last active April 1, 2016 19:32
Cool Quote Generator
@Kornil
Kornil / Weather app.markdown
Last active March 17, 2016 10:29
Weather app

Weather app

Simple weather app, takes coord and gives back city, state degrees in C and F. Api from openweathermap. background and image change with the weather.

A Pen by Francesco Agnoletto on CodePen.

License.

@Kornil
Kornil / Google Clone.markdown
Last active July 17, 2023 11:08
Google Clone

Google Clone

A fully functional replica of Google's main page, you can use it for searches and everything else. Styled with CSS to look as close as possible to current google main page, a bit of jquery magic to make it fully functional.

A Pen by Francesco Agnoletto on CodePen.

License.

ScreenShot

@Kornil
Kornil / JQuery Grid Game.markdown
Last active March 21, 2016 22:37
JQuery Grid Game

JQuery Grid Game

Simple JQuery sketchpad, you can choose the grid max rows and cols, 3 main game-styles and a clear button to start again.

A Pen by Francesco Agnoletto on CodePen.

License.

ScreenShot

@Kornil
Kornil / Simple Calculator.markdown
Last active April 2, 2016 13:31
Simple Calculator
@Kornil
Kornil / Pomodoro Clock.markdown
Last active April 2, 2016 20:58
Pomodoro Clock

Pomodoro Clock

The pomodoro clock is a time management tecnique that uses a timer to separate your work time in smaller intervals with pauses in between to boost your mental agility. This pomodoro has a sound effect on so you know when your work/relax time is over!

A Pen by Francesco Agnoletto on CodePen.

License.

ScreenShot

@Kornil
Kornil / Tic Tac Toe single-multi player.markdown
Last active April 26, 2016 18:17
Tic Tac Toe single-multi player

Tic Tac Toe single-multi player

fully working JQuery tic tac toe for either 2 players or single player with 2 difficulty modes, monkey(easy) and pc(unbeatable), I designed it to be fully responsive across devices.

A Pen by Francesco Agnoletto on CodePen.

License.

ScreenShot

@Kornil
Kornil / Game of Life in React.markdown
Last active June 15, 2016 17:19
Game of Life in React

Game of Life in React

A full page game of life implementation(I've never seen one done in browser), starts slow but it gains speed :)

A Pen by Francesco Agnoletto on CodePen.

License.

ScreenShot

@Kornil
Kornil / breakout-react-canvas.markdown
Created September 13, 2016 15:29
Breakout! (react + canvas)
@Kornil
Kornil / modal.jsx
Last active December 30, 2018 11:29
class Modal extends Component {
modalRef = createRef();
state = {
show: false
}
closeModal = (e) => {
const node = this.modalRef.current;
if (node && node.contains(e.target)) {