Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
| import 'package:flutter/gestures.dart'; | |
| import 'package:flutter/material.dart'; | |
| import 'package:flutter/rendering.dart'; | |
| void main() { | |
| runApp(MyApp()); | |
| } | |
| class MyApp extends StatelessWidget { | |
| @override |
| #!/bin/bash | |
| # Prereqs: | |
| ## The lecture video can be given any NAME.EXT for example: first_week_collective_section.mp4 | |
| ## The slides video must be gviven the name NAME_slides.EXT for example: first_week_collective_section_slides.mp4 | |
| ## vlc and ffmpeg must be installed | |
| # Usage: | |
| # The parameter passed to the file must be the lecture video name. To create a final file, the following must be passed: ./open_course first_week_collective_section.mp4 | |
| # A final file by the name of final_week_collective_section_final.mp4 will then be created |
| #!/bin/bash | |
| # Format: | |
| # op.sh [PROGRAM] [FILE] | |
| # op.sh -l -> lists the current screen sessions | |
| # otherwise shows help | |
| # ensure that screen is preinstalled on your system | |
| BOLD=$(tput bold) |
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/