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
diegovar-macbookpro3:web-stories-wp diegovar$ npm run test:js -t mediaPane | |
> web-stories-wp@ test:js /Users/diegovar/Development/projects/web-stories-wp | |
> jest --config=tests/js/jest.config.js "mediaPane" | |
. | |
● mediaPane › should only display supported mimeTypes and not crash on unsupported | |
TestingLibraryElementError: Unable to find an element with the alt text: test-image |
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
checkPropTypes.js:20 Warning: Failed prop type: Invalid prop `fullbleedRef` of type `function` supplied to `ForwardRef(PageArea)`, expected `object`. | |
in ForwardRef(PageArea) (at displayLayer.js:56) | |
in DisplayLayer (at canvasLayout.js:61) | |
in div (created by selectionCanvas__Container) | |
in selectionCanvas__Container (at withOverlay.js:46) | |
in Unknown (at withOverlay.js:45) | |
in ForwardRef(WithOverlay) (at selectionCanvas.js:201) | |
in SelectionCanvas (at canvasLayout.js:60) | |
in div (created by canvasElementDropzone__Container) | |
in canvasElementDropzone__Container (at canvasElementDropzone.js:104) |
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
diegovar-macbookpro3:web-stories-wp diegovar$ npm run test:js | |
> web-stories-wp@ test:js /Users/diegovar/Development/projects/web-stories-wp | |
> jest --config=tests/js/jest.config.js | |
.....................Warning: componentWillReceiveProps has been renamed, and is not recommended for use. See https://fb.me/react-unsafe-component-lifecycles for details. | |
* Move data fetching code or side effects to componentDidUpdate. | |
* If you're updating state whenever props change, refactor your code to use memoization techniques or move it to static getDerivedStateFromProps. Learn more at: https://fb.me/react-derived-state | |
* Rename componentWillReceiveProps to UNSAFE_componentWillReceiveProps to suppress this warning in non-strict mode. In React 17.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run `npx react-codemod rename-unsafe-lifecycles` in your project source folder. |
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
while true | |
do | |
# Command | |
perl -e 'select(undef,undef,undef,.1)' #specify float for delay | |
done |
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
mdfind -0 -onlyin . "kMDItemPixelHeight > 2048 || kMDItemPixelWidth > 2048" | xargs -0 sips -Z 2048 |
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
#!/bin/sh | |
exec scala "$0" "$@" | |
!# | |
class P { | |
def receive: PartialFunction[String, Any] = { | |
case _ => "Default" | |
} | |
} |
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
#!/bin/sh | |
exec scala "$0" "$@" | |
!# | |
import akka.actor._ | |
object Venom | |
class Child extends Actor { | |
override def postStop { |
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 in *.mkv | |
do | |
echo converting $f | |
if [ -a "${f%.*}.srt" ]; then | |
/Applications/HandBrakeCLI -i "$f" -o "${f%.*}.m4v" --preset="AppleTV 2" --srt-file "${f%.*}.srt" | |
else | |
/Applications/HandBrakeCLI -i "$f" -o "${f%.*}.m4v" --preset="AppleTV 2" | |
fi | |
rm $f | |
done |
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
/** | |
* This is a helper function because there is no existing conversion from Play promise to Akka future in Play. | |
* @param promise | |
* @tparam A | |
* @return | |
*/ | |
implicit def toAkkaFuture[A](promise: PlayPromise[A]): Future[A] = { | |
val p = akka.dispatch.Promise[A]() | |
promise extend1 { | |
case Redeemed(value) => p success value |
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
import scala.concurrent._ | |
import scala.collection.mutable.Builder | |
import scala.collection.generic.CanBuildFrom | |
import language.higherKinds | |
/** | |
* Linearize asynchrnously applies a given function in-order to a sequence of values, producing a Future with the result of the function applications. | |
* Execution of subsequent entries will be aborted if an exception is thrown in the application of the function. | |
*/ | |
def linearize[T, U, C[T] <: Traversable[T]](s: C[T])(f: T => U)(implicit cbf: CanBuildFrom[C[T], U, C[U]], e: ExecutionContext): Future[C[U]] = { |
NewerOlder