Quick uninstall JetBrains settings:
curl -sL https://gist.github.com/denji/9731967/raw/jetbrains-uninstall.sh | bash -s
// Released under MIT license: http://www.opensource.org/licenses/mit-license.php | |
placeholderSupport = ("placeholder" in document.createElement("input")); | |
if (!placeholderSupport) { | |
(function ($) { | |
'use strict'; | |
$(function () { | |
$('[placeholder]') |
.vertical .carousel-inner { | |
height: 100%; | |
} | |
.carousel.vertical .item { | |
-webkit-transition: 0.6s ease-in-out top; | |
-moz-transition: 0.6s ease-in-out top; | |
-ms-transition: 0.6s ease-in-out top; | |
-o-transition: 0.6s ease-in-out top; | |
transition: 0.6s ease-in-out top; |
@media(max-width:767px){} | |
@media(min-width:768px){} | |
@media(min-width:992px){} | |
@media(min-width:1200px){} |
<?php | |
$icon[] = 'fa-glass'; | |
$icon[] = 'fa-music'; | |
$icon[] = 'fa-search'; | |
$icon[] = 'fa-envelope-o'; | |
$icon[] = 'fa-heart'; | |
$icon[] = 'fa-star'; | |
$icon[] = 'fa-star-o'; | |
$icon[] = 'fa-user'; |
<?php | |
class bootTable { | |
/** | |
* @param array $attributes | |
* @return null|string | |
*/ | |
static function parseAttributes($attributes = array()) | |
{ |
/** | |
* Original by Zirak @ http://stackoverflow.com/a/8636050/1012431 | |
* | |
* Had some issues with the clear function | |
* | |
* @type {{intervals: Array, make: make, clear: clear, clearAll: clearAll}} | |
*/ | |
var interval = { | |
//to keep a reference to all the intervals | |
intervals : [], |
/* Create the sweetAlert Service singleton */ | |
function sweetAlertService() { | |
this.success = function(title, message) { | |
swal(title, message,'success'); | |
}; | |
this.error = function(title, message) { | |
swal(title, message,'error'); | |
}; |
Quick uninstall JetBrains settings:
curl -sL https://gist.github.com/denji/9731967/raw/jetbrains-uninstall.sh | bash -s
#include <ESP8266WiFi.h> | |
#include <PubSubClient.h> | |
#include "DHT.h" | |
#include <ArduinoJson.h> | |
#define MQTT_VERSION MQTT_VERSION_3_1_1 | |
// Wifi: SSID and password | |
const char* WIFI_SSID = "____________"; | |
const char* WIFI_PASSWORD = "____________"; |
import Vue from 'vue'; | |
import Vuex from 'vuex'; | |
import state from './store/state.js'; | |
import actions from './store/actions.js'; | |
import getters from './store/getters.js'; | |
import mutations from './store/mutations.js'; | |
Vue.use(Vuex); | |
Nova.booting((Vue, router) => { |