Skip to content

Instantly share code, notes, and snippets.

View jansmolders86's full-sized avatar
🏠
Working from home

Jan Smolders jansmolders86

🏠
Working from home
View GitHub Profile
@insin
insin / BootstrapModalMixin.js
Last active February 5, 2021 07:47
A Bootstrap (3) modal mixin for React / MIT License
/** @jsx React.DOM */
var BootstrapModalMixin = function() {
var handlerProps =
['handleShow', 'handleShown', 'handleHide', 'handleHidden']
var bsModalEvents = {
handleShow: 'show.bs.modal'
, handleShown: 'shown.bs.modal'
, handleHide: 'hide.bs.modal'
@Rud5G
Rud5G / gitcommands.sh
Last active February 20, 2017 10:36
Git Commands
## config
# user
git config --global user.name "Rudger "
git config --global user.email ""
# color
git config --global color.ui true
# vim editor
git config --global core.editor vim
@ocean90
ocean90 / box-shadow.html
Last active April 11, 2024 13:54
CSS3 Box Shadow, only top/right/bottom/left and all
<!DOCTYPE html>
<html>
<head>
<title>Box Shadow</title>
<style>
.box {
height: 150px;
width: 300px;
margin: 20px;