Skip to content

Instantly share code, notes, and snippets.

View jeroenbourgois's full-sized avatar
🐢

Jeroen Bourgois jeroenbourgois

🐢
View GitHub Profile

Bart heeft wat geprutst via "inspect element" om de homepage visueel wat bij te sturen.

  • fontgrootte van kies een figuur (H2) mag op 18 px
  • #home ol -> margin left 190 px margin bottom 30px
  • #home ol li -> width 25 %
  • de onderste witte zin (niet helemaal duidelijk...) mag weg
  • zorgen jullie ervoor dat er niet moet gescrold worden op deze eerste pagina?
  • aanpassen van de menubalk: links logo fabfabric (zie bijlage), rechts gelijnd de navigatie (moet nog aangepast worden naar HOME-OVER ONS-HOE WERKT HET?-FAQ)

KIES EEN FIGUUR

  • roll over -> groen wordt munt kleur (nummer#90cfd1)

Keybase proof

I hereby claim:

  • I am jeroenbourgois on github.
  • I am jeroenbourgois (https://keybase.io/jeroenbourgois) on keybase.
  • I have a public key whose fingerprint is 80F5 7542 9F52 A963 1202 0F36 D86F 3FF1 4E75 187A

To claim this, I am signing this object:

## REMOVE SOUND
ffmpeg -i balloon-2.webm -an balloon-2-nosound.webm

## FLV TO WMV
ffmpeg -i infile.flv -vcodec wmv2 -sameq -acodec wmav2 -f output.wmv

## WEB VIDEO (MP4 > OGV / WEBM / MP4)
# requires options to be enabled in ffmpeg:
brew install ffmpeg --with-libvpx --with-libvorbis --with-theora --with-libogg --with-faac
React:
package api
import (
"bitbucket.org/jackjoe/timr/cmd/timr"
"net/http"
"net/http/httptest"
"strings"
"testing"
. "github.com/smartystreets/goconvey/convey"

Keybase proof

I hereby claim:

  • I am jeroenbourgois on github.
  • I am jeroenbourgois (https://keybase.io/jeroenbourgois) on keybase.
  • I have a public key ASBecos47AER1A-K2TuMB_TfAdA9x6jix0XfOgDNNxYCkAo

To claim this, I am signing this object:

@jeroenbourgois
jeroenbourgois / parseQueryString.js
Created February 2, 2018 07:51
parse a querystring in javascript
function parseQueryString(queryString) {
queryString = queryString.substring(1)
var params = {},
queries,
temp,
i,
l
// Split into key/value pairs
queries = queryString.split('&')
// Convert the array of strings into an object
@jeroenbourgois
jeroenbourgois / remove-el.js
Created February 2, 2018 07:52
Remove DOM element
function removeElement(el, retry) {
if (el && el.parentNode) {
el.parentNode.removeChild(el)
}
if (retry) {
setTimeout(function() {
removeElement(el, false)
}, 1000)
}
brew reinstall --with-openssl --with-libssh2 curl openssl
brew uninstall --ignore-dependencies php71 php71-intl php71-ast php71-mcrypt
brew install --force --with-httpd php72 php72-ast php72-intl --with-homebrew-curl --with-homebrew-libxslt --without-snmp --build-from-source
# silver searcher
apt-get install silversearcher-ag