I hereby claim:
- I am lukevers on github.
- I am lukevers (https://keybase.io/lukevers) on keybase.
- I have a public key ASCcB8PAU2YqKmiKUvcZzmg3Ygo_dmyFHeUYQjepWpl2KAo
To claim this, I am signing this object:
Homebrew build logs for homebrew/php/php71 on macOS 10.13 | |
Build date: 2018-02-07 12:30:53 |
<?php | |
public function handle($request, Closure $next) | |
{ | |
if ( | |
Auth::check() | |
&& empty(Auth::user()->onboarded_at) | |
&& ! $request->is('welcome') | |
&& ! $request->is('i/*') | |
&& ! $request->is('logout') | |
) { |
<?php | |
require_once 'Db.php'; | |
class apiController | |
{ | |
protected $db; | |
/** | |
* Db |
I hereby claim:
To claim this, I am signing this object:
function color_meter(cwith, ccolor) { | |
if (!cwith && !ccolor) return; | |
var _cwith = (cwith.charAt(0)=="#") ? cwith.substring(1,7) : cwith; | |
var _ccolor = (ccolor.charAt(0)=="#") ? ccolor.substring(1,7) : ccolor; | |
var _r = parseInt(_cwith.substring(0,2), 16); | |
var _g = parseInt(_cwith.substring(2,4), 16); | |
var _b = parseInt(_cwith.substring(4,6), 16); |
YOUR_
from the cloud-config.yml
#!/bin/sh | |
palette="/tmp/palette.png" | |
filters="fps=15,scale=-1:-1:flags=lanczos" | |
ffmpeg -v warning -i $1 -vf "$filters,palettegen" -y $palette | |
ffmpeg -v warning -i $1 -i $palette -lavfi "$filters [x]; [x][1:v] paletteuse" -y $2 |
# https://www.ruby-forum.com/topic/111899 | |
class XMLRPC::Client | |
def mycall(method, *args) | |
request = create().methodCall(method, *args) | |
data = do_rpc(request, false) | |
end | |
end | |
# .call |
This is a compiled list of Laravel interview questions. If Laravel is an engineer's PHP framework of choice, they definitely have potential to be a good candidate, but a lot of new PHP engineers have been into Laravel too. The framework itself is very welcoming to newcomers, which makes it easy for beginners to feel that they know more than they really do.
1. How long have you been using Laravel?
This question can help decide what level of questions to ask.
$('.coupon-item-button-available').map(function(index, item) { | |
$(this).click(); | |
}); |