Skip to content

Instantly share code, notes, and snippets.

View diegovar's full-sized avatar

Diego Varese diegovar

View GitHub Profile
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
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)
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.
while true
do
# Command
perl -e 'select(undef,undef,undef,.1)' #specify float for delay
done
@diegovar
diegovar / fitImages.sh
Created November 4, 2013 23:15
Resize all large images to 2048px in Mac OS X
mdfind -0 -onlyin . "kMDItemPixelHeight > 2048 || kMDItemPixelWidth > 2048" | xargs -0 sips -Z 2048
@diegovar
diegovar / partialfunctioncomp.scala
Created October 4, 2013 14:04
testing partial function composition
#!/bin/sh
exec scala "$0" "$@"
!#
class P {
def receive: PartialFunction[String, Any] = {
case _ => "Default"
}
}
@diegovar
diegovar / poisonpill.scala
Created October 4, 2013 14:04
testing akka poisonpill
#!/bin/sh
exec scala "$0" "$@"
!#
import akka.actor._
object Venom
class Child extends Actor {
override def postStop {
@diegovar
diegovar / mkv_to_m4v.sh
Created October 7, 2012 23:14
Convert mkv's to m4v's for iTunes
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
@diegovar
diegovar / playToAkka.scala
Created October 5, 2012 20:55
Play promise to Akka future
/**
* 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
@diegovar
diegovar / linearize.scala
Created August 16, 2012 17:44 — forked from viktorklang/linearize.scala
A Linearized version of Sequence
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]] = {