Skip to content

Instantly share code, notes, and snippets.

View shak18's full-sized avatar

RodrigoJC shak18

View GitHub Profile
@shak18
shak18 / bulma-components-vvveb.js
Created August 1, 2019 13:47
Addon for VVVEB if you rely on bulma for your web site
//Develop for ES6 usage if youree going to use it on ES5 just remove the imports and change the usages of Inputs.TextInput to TextInput and so on with the rest
import {Vvveb} from './builder'
import * as Inputs from './inputs'
var bgcolorClasses = ["is-primary", "is-success", "is-danger", "is-warning", "is-info", "is-light", "is-dark", "is-facebook", "is-twitter", "is-white", "is-black"]
var bgcolorSelectOptions =
[{
@shak18
shak18 / MySQL.php
Last active September 16, 2023 14:42
Simple PHP MYSQLi Class
<?php
class MySQL {
private $link = null;
private $info = array(
'last_query' => null,
'num_rows' => null,
'insert_id' => null
);
private $connection_info = array();