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
Extraction | Unit | Available | Price | |
---|---|---|---|---|
04/15/17 | 552 | 4/25/2017 | 3688 | |
04/15/17 | 562 | 5/4/2017 | 3693 | |
04/15/17 | 304 | 5/5/2017 | 3693 | |
04/15/17 | 592 | 4/27/2017 | 3716 | |
04/15/17 | 360 | 5/19/2017 | 3737 | |
04/15/17 | 476 | 4/15/2017 | 3796 | |
04/15/17 | 544 | 5/18/2017 | 3856 | |
04/15/17 | 304 | 5/5/2017 | 3713 | |
04/15/17 | 552 | 4/25/2017 | 3718 |
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 app; | |
import org.springframework.beans.MutablePropertyValues; | |
import org.springframework.beans.factory.support.BeanDefinitionRegistry; | |
import org.springframework.beans.factory.support.GenericBeanDefinition; | |
import org.springframework.boot.SpringApplication; | |
import org.springframework.http.MediaType; | |
import org.springframework.http.converter.json.MappingJackson2HttpMessageConverter; | |
import org.springframework.http.server.ServletServerHttpResponse; | |
import org.springframework.web.servlet.ModelAndView; |
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
@Grab('org.codehaus.groovyfx:groovyfx:0.3.1') | |
import static groovyx.javafx.GroovyFX.start | |
final int ROW_COUNT = 10 | |
final int COL_COUNT = 10 | |
final int RADIUS = 20 | |
final int DIAMETER = 2 * RADIUS | |
final int MOVE_WAY = 8 * DIAMETER | |
final int WIDTH = COL_COUNT * DIAMETER + MOVE_WAY | |
final int HEIGHT = ROW_COUNT * DIAMETER |
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 code.pages | |
import org.apache.wicket.authroles.authorization.strategies.role.annotations.AuthorizeInstantiation | |
import org.apache.wicket.markup.html.form.Button | |
import org.apache.wicket.markup.html.form.Form | |
import org.apache.wicket.markup.html.WebMarkupContainer | |
import org.apache.wicket.spring.injection.annot.SpringBean | |
import org.springframework.stereotype.Service | |
import code.model.Evento | |
import code.services.EventosService |
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 code.webapp | |
import scala.collection.JavaConversions.seqAsJavaList | |
import org.apache.wicket.behavior.AttributeAppender | |
import org.apache.wicket.datetime.markup.html.form.DateTextField | |
import org.apache.wicket.extensions.validation.validator.RfcCompliantEmailAddressValidator | |
import org.apache.wicket.markup.html.basic.{ MultiLineLabel, Label } | |
import org.apache.wicket.markup.html.form.{ TextField, TextArea, SubmitLink, RadioGroup, Radio, PasswordTextField, FormComponent, Form, DropDownChoice, CheckGroup, Button } | |
import org.apache.wicket.markup.html.link.{ Link, BookmarkablePageLink } | |
import org.apache.wicket.markup.html.link.ExternalLink |
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 -r 1 -t 1 -vframes 1 -i input-file.mp4 output-file.png |