Install FFmpeg with homebrew. You'll need to install it with a couple flags for webm and the AAC audio codec.
brew install ffmpeg --with-libvpx --with-libvorbis --with-fdk-aac --with-opus
var crypto = require('crypto'); | |
/** | |
* Generates and returns a Freshdesk Single Sign On URL | |
* {@link https://gist.github.com/derekseymour/26a6fe573c1274642976 Gist} | |
* | |
* @author Derek Seymour <[email protected]> | |
* @param {String} name - The name of the user logging in. | |
* @param {String} email - A valid email address to associate with the user. |
#!/bin/bash | |
set -ex | |
git config --global user.email "[email protected]" | |
git config --global user.name "CI" | |
git config --global push.default simple | |
LAST_COMMIT_MSG="$(git log -1 --pretty=%B)" | |
SEMVER_BUMP_TYPE="$(echo ${LAST_COMMIT_MSG} | sed -n 's/^.*[rR]elease v+\([a-z]\+\).*$/\1/p')" |
By: @BTroncone
Also check out my lesson @ngrx/store in 10 minutes on egghead.io!
Update: Non-middleware examples have been updated to ngrx/store v2. More coming soon!
Table of Contents
#! /usr/bin/env python3 | |
"""Fixing bluetooth stereo headphone/headset problem in debian distros. | |
Workaround for bug: https://bugs.launchpad.net/ubuntu/+source/indicator-sound/+bug/1577197 | |
Run it with python3.5 or higher after pairing/connecting the bluetooth stereo headphone. | |
This will be only fixes the bluez5 problem mentioned above . | |
Licence: Freeware |
Recently CSS has got a lot of negativity. But I would like to defend it and show, that with good naming convention CSS works pretty well.
My 3 developers team has just developed React.js application with 7668
lines of CSS (and just 2 !important
).
During one year of development we had 0 issues with CSS. No refactoring typos, no style leaks, no performance problems, possibly, it is the most stable part of our application.
Here are main principles we use to write CSS for modern (IE11+) browsers:
"Startups are no longer niche; they have gone mainstream."
–Daniel Gulati, co-author of Passion & Purpose
This gist will show how to setup Raspbian Stretch as a headless Bluetooth A2DP audio sink. This will allow your phone, laptop or other Bluetooth device to play audio wirelessly through a Rasperry Pi.
A quick search will turn up a plethora of tutorials on setting up A2DP on the Raspberry Pi. However, I felt this gist was necessary because this solution is:
-- pointshop2-master\lua\ps2\modules\weapons | |
hook.Add( "PlayerSpawn", "InitLoadoutConflictListener", function( ply ) | |
ply.ps2LoadoutPrimaryAssigned = false; | |
ply.ps2LoadoutSecondaryAssigned = false; | |
end ) | |
hook.Add( "PlayerCanPickupWeapon", "LoadoutConflictListener", function( ply, weapon ) | |
-- Prevent pickup until player inventory is loaded. | |
if not ply.PS2_Inventory then return false end | |
-- Cancel listener if player is spectating or a SpecDM ghost. |