Skip to content

Instantly share code, notes, and snippets.

@barakplasma
barakplasma / TelAvivDistrictIsrael.geojson
Last active January 25, 2016 17:49 — forked from yoavram/Tel Aviv District, Israel.json
a geojson file of Tel-Aviv district in Israel
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>HW-WK-5</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.3/lodash.js"></script>
<style id="jsbin-css">
.colorboxes {
margin: 10px;
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<style id="jsbin-css">
html {
background: url(http://i.imgur.com/Rksbpdu.jpg) no-repeat center fixed;
background-size: 100% 100%;
@barakplasma
barakplasma / index.html
Created January 2, 2017 17:43 — forked from anonymous/index.html
JS Bin smartphone in browser engine demo // source https://jsbin.com/haziyef
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="smartphone in browser engine demo">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<style id="jsbin-css">
html {
background: url(http://i.imgur.com/Rksbpdu.jpg) no-repeat center fixed;
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<style id="jsbin-css">
textarea {
width: 100%;
}
@barakplasma
barakplasma / jsbin.zobogoj.css
Last active January 10, 2017 08:26 — forked from anonymous/index.html
JS Bin todo list homework// source https://jsbin.com/zobogoj
button {
color: white;
background: blue;
}
button:hover {
background: lightblue;
}
html{
font-family: Helvetica;
@barakplasma
barakplasma / review-checklist.md
Last active May 30, 2019 01:35 — forked from bigsergey/review-checklist.md
Front-end Code Review Checklist

Review checklist

General

  • 1. Does the code work?
  • 2. Description of the project status is included.
  • 3. Code is easily understand.
  • 4. Code is written following the coding standarts/guidelines (React in our case).
  • 5. Code is in sync with existing code patterns/technologies.
  • 6. DRY. Is the same code duplicated more than twice?