PS2 Bios Download for PCSX2 & AetherSX2 Emulators | For All Regions
PS2 Bios Download (OFFICIAL) for PCSX2 & AetherSX2 Emulators
--
scph5500.bin 26-Aug-2018 20:47 512.0K
scph5501.bin 26-Aug-2018 20:47 512.0K
PS2 Bios Download for PCSX2 & AetherSX2 Emulators | For All Regions
PS2 Bios Download (OFFICIAL) for PCSX2 & AetherSX2 Emulators
--
scph5500.bin 26-Aug-2018 20:47 512.0K
scph5501.bin 26-Aug-2018 20:47 512.0K
#!/bin/bash | |
BUCKET_NAME="my-bucket" | |
KEY_PREFIX="my-key-prefix" | |
DAYS = "10" | |
aws s3 ls --recursive "s3://$BUCKET_NAME/$KEY_PREFIX" |\ | |
awk '{$1=$2=$3=""; print $0}' |\ | |
sed 's/^[[:space:]]*//g' |\ | |
tr '\n' '\0' |\ |
Some of these practices might be based on wrong assumptions and I'm not aware of it, so I would appreciate any feedback.
avoiding some dependency conflicts:
~/.sbt/{0.13,1.0}/plugins/plugins.sbt
undeclaredCompileDependencies
and make the obvious missing dependencies explicit by adding them to libraryDependencies
of each sub-projectunusedCompileDependencies
and remove some obvious unused libraries. This has false positives, so ; reload; Test/compile
after each change and ultimately run all tests to see that it didn't break anythingundeclaredCompileDependenciesTest
to the CI pipeline, so that it will fail if you have some undeclared dependencieskeeping dependencies up to date and resolving conflicts:
# http://www.scala-sbt.org/1.x/docs/Launcher-Configuration.html | |
# https://storage-download.googleapis.com/maven-central/index.html | |
[repositories] | |
local | |
maven-central: https://maven-central-asia.storage-download.googleapis.com/repos/central/data/ | |
lightbend-ivy-releases: https://dl.bintray.com/typesafe/ivy-releases/, [organization]/[module]/[revision]/[type]s/[artifact](-[classifier]).[ext], bootOnly | |
#typesafe-ivy-releases: http://repo.typesafe.com/typesafe/ivy-releases/, [organization]/[module]/[revision]/[type]s/[artifact](-[classifier]).[ext], bootOnly | |
sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots |
ffmpeg -r 24 -pattern_type glob -i '*.JPG' -i DSC_%04d.JPG -s hd1080 -vcodec libx264 timelapse.mp4
-r 24
- output frame rate-pattern_type glob -i '*.JPG'
- all JPG files in the current directory-i DSC_%04d.JPG
- e.g. DSC_0397.JPG-s hd1080
- 1920x1080 resolutionimport scalaz.{ @@, Tag } | |
import org.apache.commons.lang.StringEscapeUtils | |
import org.joda.time.DateTime | |
import play.api.libs.json._ | |
trait DomRenderable | |
def RenderableString(s: String): String @@ DomRenderable = Tag[String, DomRenderable](s) |
case class State(matches: String => Boolean, optional: Boolean) | |
def matcher(pattern: String): String => Boolean = { | |
val states = pattern.split("/").toList.map { | |
case "**" => State(_ => true, true) | |
case s => | |
val r = s.replaceAllLiterally("*", ".*").r | |
State(r.unapplySeq(_).isDefined, false) |
$INPUTVIDEO='input.mp4' | |
$OUTPUTVIDEO='output.mp4' | |
ffmpeg -i $INPUTVIDEO -metadata:s:v rotate="-90" -codec copy $OUTPUTVIDEO |