Skip to content

Instantly share code, notes, and snippets.

View getaclue00's full-sized avatar

Alex getaclue00

View GitHub Profile
@getaclue00
getaclue00 / form_page.dart
Created December 12, 2018 16:54 — forked from ericwindmill/form_page.dart
Flutter Simple inherited Widget Example
import 'package:flutter/material.dart';
import 'package:simple_inherit/state_container.dart';
class UpdateUserScreen extends StatelessWidget {
static final GlobalKey<FormState> formKey = new GlobalKey<FormState>();
static final GlobalKey<FormFieldState<String>> firstNameKey =
new GlobalKey<FormFieldState<String>>();
static final GlobalKey<FormFieldState<String>> lastNameKey =
new GlobalKey<FormFieldState<String>>();
static final GlobalKey<FormFieldState<String>> emailKey =

How-to setup a simple git push deployment

These are my notes basically. At first i created this gist just as a reminder for myself. But feel free to use this for your project as a starting point. If you have questions you can find me on twitter @thomasf

On the server (example.com)

  1. Create a user on example.com, as which we (the git client) connect (push) to exmaple.com.
sudo useradd -m -s /usr/bin/git-shell git
@getaclue00
getaclue00 / README.md
Created December 7, 2018 19:43 — forked from jxson/README.md
README.md template

Synopsis

At the top of the file there should be a short introduction and/ or overview that explains what the project is. This description should match descriptions added for package managers (Gemspec, package.json, etc.)

Code Example

Show what the library does as concisely as possible, developers should be able to figure out how your project solves their problem by looking at the code example. Make sure the API you are showing off is obvious, and that your code is short and concise.

Motivation

@getaclue00
getaclue00 / index.html
Created November 27, 2018 20:30 — forked from ColeTownsend/index.html
The Micro Stripe demo front end.
<!DOCTYPE html>
<html>
<head>
<title>Micro Stripe Checkout</title>
<meta charSet='utf-8' />
<meta name='viewport' content='initial-scale=1.0, width=device-width' />
<script src="https://js.stripe.com/v3/"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<style>
* {
const nodemailer = require('nodemailer')
const transporter = nodemailer.createTransport({
service: 'Gmail',
auth: {
type: 'OAuth2',
user: '[email protected]',
refreshToken: '',
accessToken: '',
clientId: '',
@getaclue00
getaclue00 / statefull.stateless.js
Created November 15, 2018 23:29
Stateful vs. Stateless
// https://stackoverflow.com/a/49920844
// Stateless
const ProjectListComponent = (props) => {
const { handleClick } = props
return (
<button onClick={handleClick}>Click me</button>
)
}
app.use(function(req, res,next){
res.on('finish', function(){
console.log('the response has been sent');
});
next();
});
<div
style={{
border: '1px solid #eee',
borderLeft: '0.25rem solid #f0ad4e',
borderRadius: '0.25rem',
boxSizing: 'border-box',
marginBottom: '1.25rem',
marginTop: '1.25rem',
padding: '1.25rem'
}}
@getaclue00
getaclue00 / next.page.js
Created November 12, 2018 04:17
next.js
export default class Page extends Component {
getInitialProps({pathname, query}) {
return {custom: 'custom'};
}
render() {
return (
<div>
<div>Prop from getInitialProps {this.props.custom}</div>
</div>
)
import React from 'react'
import { Mutation } from 'react-apollo'
import { gql } from 'apollo-boost'
export default function PostUpvoter ({ votes, id }) {
return (
<Mutation mutation={upvotePost}>
{mutate => (
<button onClick={() => upvote(id, votes + 1, mutate)}>
{votes}