start new:
tmux
start new with session name:
tmux new -s myname
| defaults write ~/.MacOSX/environment.plist M2_HOME `brew --prefix maven`/libexec | |
| defaults write ~/.MacOSX/environment.plist M2 `brew --prefix maven`/libexec/bin |
| <build> | |
| <plugins> | |
| <plugin> | |
| <!-- | |
| Generates JAXWS classes for all of the WSDL files in $[project.base.dir}/src/wsdl. | |
| --> | |
| <groupId>org.jvnet.jax-ws-commons</groupId> | |
| <artifactId>jaxws-maven-plugin</artifactId> | |
| <version>2.3</version> | |
| <executions> |
| <build> | |
| <plugins> | |
| <plugin> | |
| <!-- | |
| Generates JAXWS classes for all of the WSDL files in $[project.base.dir}/src/wsdl. | |
| --> | |
| <groupId>org.jvnet.jax-ws-commons</groupId> | |
| <artifactId>jaxws-maven-plugin</artifactId> | |
| <version>2.3</version> | |
| <executions> |
The following recipes are sampled from a trained neural net. You can find the repo to train your own neural net here: https://github.com/karpathy/char-rnn Thanks to Andrej Karpathy for the great code! It's really easy to setup.
The recipes I used for training the char-rnn are from a recipe collection called ffts.com And here is the actual zipped data (uncompressed ~35 MB) I used for training. The ZIP is also archived @ archive.org in case the original links becomes invalid in the future.
| var Col = require('react-bootstrap/lib/Col') | |
| var PageHeader = require('react-bootstrap/lib/PageHeader') | |
| var React = require('react') | |
| var Row = require('react-bootstrap/lib/Row') | |
| var {connect} = require('react-redux') | |
| var {reduxForm} = require('redux-form') | |
| var DateInput = require('./DateInput') | |
| var FormField = require('./FormField') | |
| var LoadingButton = require('./LoadingButton') |
| # using special INFER_APP_NAME to do just that | |
| appName=INFER_APP_NAME | |
| # FIXME: replace DBASE USER PASSWD | |
| dbAlias=//localhost:3306/DBASE?useUnicode=true&characterEncoding=UTF-8&clobCharacterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull | |
| dbUsername=USER | |
| dbPassword=PASSWD |
| { | |
| "name": "laravel/laravel", | |
| "description": "The Laravel Framework.", | |
| "keywords": ["framework", "laravel"], | |
| "license": "MIT", | |
| "type": "project", | |
| "require": { | |
| "php": ">=5.5.9", | |
| "laravel/framework": "5.1.*", | |
| "doctrine/dbal": "^2.5" |
| /* | |
| * DbaseClean | |
| * Drop a database, if exists, and create a new empty one. | |
| * Collect database info from a resource file. | |
| * | |
| * When using embeded in an application must be called outside a transaction | |
| * (@Atomic) or connection to the same database server! | |
| * | |
| * javac DbaseClean.java | |
| * java -cp mysql-connector-java-5.1.38.jar:. DbaseClean |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!-- | |
| Licensed to the Apache Software Foundation (ASF) under one | |
| or more contributor license agreements. See the NOTICE file | |
| distributed with this work for additional information | |
| regarding copyright ownership. The ASF licenses this file | |
| to you under the Apache License, Version 2.0 (the | |
| "License"); you may not use this file except in compliance | |
| with the License. You may obtain a copy of the License at |