One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| // connect() is a function that injects Redux-related props into your component. | |
| // You can inject data and callbacks that change that data by dispatching actions. | |
| function connect(mapStateToProps, mapDispatchToProps) { | |
| // It lets us inject component as the last step so people can use it as a decorator. | |
| // Generally you don't need to worry about it. | |
| return function (WrappedComponent) { | |
| // It returns a component | |
| return class extends React.Component { | |
| render() { | |
| return ( |
| import java.awt.Image; | |
| import java.io.File; | |
| import java.io.IOException; | |
| import javax.imageio.ImageIO; | |
| import org.apache.commons.io.FileUtils; | |
| public class MyProfilePicture { | |
| public static int num; | |
| public static void main(String[] args) throws IOException |
| # | |
| # This Python script makes a summary of a football game by cutting | |
| # the video around the 10 % loudest moments, which generally | |
| # include the goals and other important events. | |
| # For more details, see this blog post: | |
| # http://zulko.github.io/blog/2014/07/04/automatic-soccer-highlights-compilations-with-python/ | |
| # | |
| # LICENCE: Creative Commons 0 - Public Domain | |
| # I, the author of this script, wave any rights and place this work in the public domain. | |
| # |
I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!
\