Skip to content

Instantly share code, notes, and snippets.

@kareemkibue
kareemkibue / machine.js
Last active April 4, 2020 19:08
Frequency User Machine
const userMachine = Machine({
id: 'userPath',
initial:'login',
states:{
login: {
on: {
AUTHENTICATE: 'dashboard'
}
},
// const fetchMachine = Machine({
// id: 'fetch',
// initial: 'idle',
// context: {
// retries: 1
// },
// states: {
@kareemkibue
kareemkibue / machine.js
Last active April 4, 2020 18:17
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
@kareemkibue
kareemkibue / machine.js
Last active February 10, 2020 20:18
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
@kareemkibue
kareemkibue / ftp.json
Last active December 30, 2021 23:50
Gulp FTP Task with credentials include (vinyl-ftp)
{
"host": "HOSTNAME",
"user": "FTP_USERNAME",
"password": "FTP_PASSWORD",
"parallel": 10
}
@kareemkibue
kareemkibue / _absolute-center.scss
Created July 12, 2017 11:01
Absolute center items SASS Mixin
@mixin center($axis:null) {
@if $axis==vertical {
top: 0;
bottom: 0;
margin: auto;
}
@else if $axis==horizontal {
left: 0;
right: 0;
margin: auto;
syntax: glob
#Hidden files
*.DS_Store
*[Tt]humbs.db
*.Trashes
#project specific
bower_components/
node_modules/
@kareemkibue
kareemkibue / _unset-select.scss
Last active July 15, 2017 13:49
Unsetting broswer default <select> styling (IE 9+)
// Unset HTML Form Select //
%unset-select{
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
outline: none;
border: 0px none;
// IE 9-10
&::-ms-expand{
@kareemkibue
kareemkibue / path.php
Created May 24, 2016 14:58
Get the Absolute Hosting URL (PHP/Apache)
<?php
echo __FILE__;
?>
$twitter-blue: #55acee;
$facebook-blue: #3b5998;
$pinterest-red: #bd081c;
$linkedin-blue: #0077b5;
$google-plus-red: #dd4b39;
$youtube-red: #cd201f;
$skype-blue: #00aff0;
$trello-blue: #0079BF;
$evernote-green: #2dbe60;