I hereby claim:
- I am zachary-russell on github.
- I am zacharyrussell (https://keybase.io/zacharyrussell) on keybase.
- I have a public key ASDQ2YtrcVEh983vEXaWy3zj1k_-ZJI-_gRix1a1VpArtwo
To claim this, I am signing this object:
import 'package:flutter/material.dart'; | |
import 'package:flutter/physics.dart'; | |
void main() => runApp(SwipeDemoApp()); | |
class SwipeDemoApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( |
squoosh-cli --mozjpeg '{"quality":75,"baseline":false,"arithmetic":false,"progressive":true,"op timize_coding":true,"smoothing":0,"color_space":3,"quant_table":3,"trellis_multipass":false,"trel lis_opt_zero":false,"trellis_opt_table":false,"trellis_loops":1,"auto_subsample":true,"chroma_sub sample":2,"separate_chroma_quality":false,"chroma_quality":75}' actionvance-guy5aS3GvgA-unsplash.jpg |
package main | |
import ( | |
"bufio" | |
"bytes" | |
"context" | |
"encoding/csv" | |
"encoding/json" | |
"cloud.google.com/go/firestore" |
import * as firebase from "firebase/app"; | |
import { db } from "./db"; | |
import "firebase/auth"; | |
/** | |
* Check if the account used for login is valid | |
* | |
* @returns {Promise} | |
*/ | |
function validAccountCheck() { | |
const user = firebase.auth().currentUser; |
I hereby claim:
To claim this, I am signing this object:
<?php | |
// Hook into WordPress to load the scripts | |
add_action('wp_enqueue_scripts', 'mfp_conditional_scripts'); | |
function mfp_conditional_scripts() { | |
// Add global script | |
wp_enqueue_script('global', get_stylesheet_directory_uri() . '/js/global.min.js', ['jquery'], '', true); | |
if( is_home() ) { | |
// Homepage Scripts | |
wp_enqueue_script('homepage', get_stylesheet_directory_uri() . '/js/homepage.min.js', ['jquery'], '', true); |
var api_key = 'YOUR-KEY-HERE'; | |
var sending_domain = 'sandbox3d603fef70dc4a3db61d4f9de9854c46.mailgun.org'; | |
var mailgun = require('mailgun-js')({apiKey: api_key, domain: sending_domain}); | |
exports.processForm = function processForm(req, res) { | |
query = req.query; | |
var data = { | |
from: query.fname + ' ' + query.lname + ' <' + decodeURIComponent(query.email) + '>', | |
to: '[email protected]', |
function pt_add_google_fonts() { | |
wp_enqueue_style('google-fonts', 'http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,400,700,300'); | |
} | |
add_action( 'pt_add_google_fonts', 'wp_enqueue_scripts' ); |
<?php | |
/** | |
* Plugin Name: My Plugin | |
* Plugin URI: | |
* Description: | |
* Version: 1.0 | |
* Author: ProTech Internet Group | |
* Author URI: https://protechig.com | |
* License: GPL2 | |
* / |
server { | |
listen 80; | |
server_name localhost; # or replace localhost with domain name | |
include hhvm.conf; | |
access_log /var/log/nginx/access.log; | |
error_log /var/log/nginx/error.log; | |
root /var/www; | |
index index.php; |