- https://github.com/jmcunningham/AngularJS-Learning
- http://www.designyourway.net/blog/resources/so-you-want-to-learn-angularjs-start-with-these-tutorials-and-resources/
- https://thinkster.io/a-better-way-to-learn-angularjs/
- http://toddmotto.com/ultimate-guide-to-learning-angular-js-in-one-day/
- http://www.ng-newsletter.com/posts/beginner2expert-how_to_start.html
- http://lostechies.com/gabrielschenker/2014/02/26/angular-js-blog-series-table-of-content/
- https://leanpub.com/recipes-with-angular-js/read
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Build your whole Docker Compose project... | |
docker-compose build | |
# ...or just build one piece of it | |
docker-compose build [app|db|etc...] | |
# Start your Docker Compose project | |
docker-compose up -d | |
# View the logs for this docker-compose proejct | |
docker-compose logs | |
# Stop running containers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"from": 0, | |
"size": 10, | |
"query": { | |
"function_score": { | |
"query": { | |
"bool": { | |
"must": [ | |
{ | |
"query_string": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ffmpeg -i part.wav -codec:a libmp3lame -b:a 320k output.mp3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 80; | |
listen [::]:80; | |
server_name slashfix.me; | |
return 301 https://$server_name$request_uri; | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'); | |
var args = require('yargs').argv; | |
var del = require('del'); | |
var config = require('./gulp.config')(); | |
var $ = require('gulp-load-plugins')({lazy: true}); | |
/***************************************************************** | |
* Main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package edu.wvu.its.myaccess.core.service | |
import javax.ejb.Stateless | |
import javax.persistence._ | |
import javax.persistence.criteria._ | |
import scala.collection.JavaConversions._ | |
import scala.reflect._ | |
@Stateless | |
class SService { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FOR /F "tokens=*" %%G IN ('dir /b *.mp4') DO ffmpeg -i "%%G" -c:v libx265 -preset medium -x265-params crf=28 -c:a aac -strict -2 -b:a 128k "%%~nG.mkv" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
keytool -importkeystore -srckeystore keystore.p12 -srcstoretype PKCS12 -deststoretype JKS -destkeystore keystore.jks |
Please do not share this demo with the world, I am really bad at jsfiddle.
Temporary Demo can be found here
Added default required validation message when validation fails for a required field that has become dirty. In addition, there is now an errorMsg that you can specify in the schema.
This behavior is limited to text inputs until I have a better understanding of what I am doing.
NewerOlder