Help with SQL commands to interact with a MySQL database
- Mac /usr/local/mysql/bin
- Windows /Program Files/MySQL/MySQL version/bin
- Xampp /xampp/mysql/bin
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> | |
<div class="resume-wrapper"> | |
<section class="profile section-padding"> | |
<div class="container"> | |
<div class="picture-resume-wrapper"> | |
<div class="picture-resume"> | |
<span><img src="https://s3.amazonaws.com/uifaces/faces/twitter/jsa/128.jpg" alt="" /></span> | |
<svg version="1.1" viewBox="0 0 350 350"> | |
<defs> |
Simple test of the Bodymovin extension for After Effects. Created in Illustrator and animated in AE, converting to SVG animation was stupid easy.
https://github.com/bodymovin/bodymovin
A Pen by Mohamed Moughamir on CodePen.
"use strict"; | |
/** | |
* Service Worker of MoNetWork | |
*/ | |
const cacheName = "m.monetwork.ma"; | |
const startPage = "https://m.monetwork.ma"; | |
const offlinePage = "https://m.monetwork.ma"; | |
const filesToCache = [startPage, offlinePage]; |
########## | |
# Tweaked Win10 Initial Setup Script | |
# Primary Author: Disassembler <[email protected]> | |
# Modified by: alirobe <[email protected]> based on my personal preferences. | |
# Version: 2.20.2, 2018-09-14 | |
# Primary Author Source: https://github.com/Disassembler0/Win10-Initial-Setup-Script | |
# Tweaked Source: https://gist.github.com/alirobe/7f3b34ad89a159e6daa1/ | |
# Tweak difference: | |
# | |
# @alirobe's version is a subset focused on safely disabling telemetry, some 'smart' features and 3rd party bloat ... |
#!/usr/bin/env ruby | |
require 'image_optim' | |
staged_files = `git diff --cached --name-only --diff-filter=ACM`.split("\n") | |
staged_files.select! { |f| f =~ %r{/images/} } | |
if staged_files.any? | |
image_optim = ImageOptim.new(pngout: false) |
//Create Private Key with OpenSSL | |
//openssl genpkey -algorithm RSA -pkeyopt rsa_keygen_bits:4096 -pkeyopt rsa_keygen_pubexp:3 -out privateKey.pem | |
//Generate Public Key to be used at the client side (Mobile) | |
//openssl pkey -in privateKey.pem -out publicKey.pem -pubout | |
const crypto = require('crypto') | |
const fs = require('fs') | |
const private_key = fs.readFileSync('digital_sign/privateKey.pem', 'utf-8') | |
//File to be signed | |
const package = fs.readFileSync('webpackage.zip') |
http://sha256timestamp.ws.symantec.com/sha256/timestamp | |
http://timestamp.globalsign.com/scripts/timstamp.dll | |
https://timestamp.geotrust.com/tsa | |
http://timestamp.verisign.com/scripts/timstamp.dll | |
http://timestamp.comodoca.com/rfc3161 | |
http://timestamp.wosign.com | |
http://tsa.startssl.com/rfc3161 | |
http://time.certum.pl | |
http://timestamp.digicert.com | |
https://freetsa.org |
pragma solidity >=0.4.22 <0.6.0; | |
contract AndiroVoteToken { | |
struct Voter { | |
uint weight; | |
bool voted; | |
uint8 vote; | |
address delegate; | |
} | |
struct Proposal { |