- version 3.6
Check those constraints:
$this->anything()
<?php | |
public function apply($filters = []){ | |
//if any filter is passed | |
foreach ($filters as $filter) { | |
if (method_exists($this, $filter)) { | |
call_user_func([$this, $filter]); | |
} else { | |
throw new ActivityBadFilterException($filter); | |
} | |
} |
grep -rnw '/path/to/somewhere' -e "pattern" |
-- update any occurrence of a quote character from a string in mysql | |
update site_user as original | |
join (select site_user.id, replace(site_user.email, "\"", "") as new_email from site_user where email like "%\"%") as conditional | |
on original.id = conditional.id | |
set original.email = conditional.new_email; | |
--follow me on twitter: www.twitter.com/anthonyrod4 |
sudo cat ClubsSalesforcexx.csv | go:production "sudo su www-data -c 'cat >> /var/www/ClubsSalesforcexx.csv'" |
<?php | |
function collect_recursive($value) | |
{ | |
if (is_array($value)) { | |
$c = collect($value); | |
} | |
$collection = $c->map(function ($item, $key) { | |
if (is_array($item)) { |
<snippet> | |
<content><![CDATA[ | |
public function ${1:relationship}() | |
{ | |
return \$this->belongsToMany(${1/^(.+)$/(?1\u$1:)/g}::class, {$2:table}); | |
} | |
]]></content> | |
<!-- Optional: Set a tabTrigger to define how to trigger the snippet --> | |
<tabTrigger>belt</tabTrigger> | |
<!-- Optional: Set a scope to limit where the snippet will trigger --> |
var sContent = | |
'<h2>' + oLocation.title + '</h2>' + | |
'<br />' + | |
'<p>' + | |
oLocation.address1 + ' ' + | |
oLocation.address2 + | |
'<br />' + | |
oLocation.city + | |
'<br />' + | |
oLocation.province + |
import Foundation | |
let config = NSURLSessionConfiguration.defaultSessionConfiguration() | |
let userPasswordString = "[email protected]:password" | |
let userPasswordData = userPasswordString.dataUsingEncoding(NSUTF8StringEncoding) | |
let base64EncodedCredential = userPasswordData!.base64EncodedStringWithOptions(nil) | |
let authString = "Basic \(base64EncodedCredential)" | |
config.HTTPAdditionalHeaders = ["Authorization" : authString] | |
let session = NSURLSession(configuration: config) |
<!DOCTYPE html> | |
<html> | |
<head lang="en"> | |
<meta charset="UTF-8"> | |
<title>Final Map</title> | |
<script src="//d3js.org/d3.v3.min.js"></script> | |
<script src="//d3js.org/topojson.v1.min.js"></script> | |
<style> | |
* { | |
margin: 0; |