$ brew cleanup --prune=all
Once the cache is cleared, brew cask
will see the latest versions of all Casks.
var test = window.open(null,"","width=1,height=1"); | |
setTimeout(function(){ | |
if (test && test.innerHeight && test.innerHeight > 0) { | |
// POPUP BLOCKER DISABLED | |
test.close(); | |
} | |
}, 10); |
/** | |
* Retrieves all the rows in the active spreadsheet that contain data and logs the | |
* values for each row. | |
* For more information on using the Spreadsheet API, see | |
* https://developers.google.com/apps-script/service_spreadsheet | |
*/ | |
function readRows() { | |
var sheet = SpreadsheetApp.getActiveSheet(); | |
var rows = sheet.getDataRange(); | |
var numRows = rows.getNumRows(); |
CREATE TABLE public.languages ( | |
id serial NOT NULL, | |
code varchar(2) NOT NULL, | |
"language" varchar(30), | |
/* Keys */ | |
CONSTRAINT languages_pkey | |
PRIMARY KEY (id) | |
) WITH ( | |
OIDS = FALSE | |
); |
When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.
Please note we have a code of conduct, please follow it in all your interactions with the project.
Code is clean if it can be understood easily β by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.
/** | |
* Generates a client ID in the format historically used by the Google Analytics | |
* JavaScript libraries. Note that any alphanumeric value may be used, but | |
* ideally each should be unique to a given client. | |
* | |
* More information on Client IDs: | |
* https://developers.google.com/analytics/devguides/collection/protocol/v1/email#client-id-cid | |
*/ | |
function generateGaClientId() { |
#!/bin/bash | |
# Kill any running Xcode or CoreSimulator processes | |
killall Xcode | |
sudo killall -9 com.apple.CoreSimulator.CoreSimulatorService | |
# Remove existing simulators, including any installed apps | |
rm -rf ~/Library/Developer/CoreSimulator/Devices | |
# Recreate available devices and simulators to correspond to iOS runtime bundled with installed Xcode version and any additionally-installed runtimes | |
open /Applications/Xcode.app | |
# List available devices (in /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/CoreSimulator/Profiles |
<?php | |
// Only you need to add in your controller. | |
public function bladeCompile($value, array $args = array()) | |
{ | |
$generated = \Blade::compileString($value); | |
ob_start() and extract($args, EXTR_SKIP); | |
// We'll include the view contents for parsing within a catcher | |
// so we can avoid any WSOD errors. If an exception occurs we |