This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
builder.equal( | |
builder.function( | |
"JSONB_EXISTS_ANY", | |
Boolean.class, | |
root.get("nameOfJsonbColumnToSearch"), | |
builder.function( | |
"string_to_array", | |
String.class, | |
builder.literal(String.join(",", setOfValuesToSearchFor)), | |
builder.literal(",") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Batch Mockup | |
* | |
* I placed this in my BaseController.php file | |
* | |
* @usage | |
* $batch = new Batch('stats'); | |
* $batch->columns = ['score', 'name']; | |
* $batch->data = [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Abilene Christian University (TX) | |
Abraham Baldwin Agricultural College (GA) | |
Academy of Art University (CA) | |
Acadia University (None) | |
Adams State University (CO) | |
Adelphi University (NY) | |
Adrian College (MI) | |
Adventist University of Health Sciences (FL) | |
Agnes Scott College (GA) | |
AIB College of Business (IA) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'unix_socket' => '/Applications/XAMPP/xamppfiles/var/mysql/mysql.sock' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@font-face { | |
font-family: 'ABeeZee'; | |
font-style: normal; | |
font-weight: 400; | |
src: local('ABeeZee'), local('ABeeZee-Regular'), url(http://themes.googleusercontent.com/static/fonts/abeezee/v1/JYPhMn-3Xw-JGuyB-fEdNA.ttf) format('truetype'); | |
} | |
@font-face { | |
font-family: 'Abel'; | |
font-style: normal; | |
font-weight: 400; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Document : google-webfonts | |
Created on : Aug 12, 2013, 5:24:59 PM | |
Author : Joel Byrnes <[email protected]> | |
Description: Minified copy of the CSS for all of Google's web fonts, as of Aug 12, 2013 | |
*/ | |
@font-face{font-family:'ABeeZee';font-style:normal;font-weight:400;src:local('ABeeZee'),local('ABeeZee-Regular'),url(http://themes.googleusercontent.com/static/fonts/abeezee/v1/m_J3nYLkIiGqm2wAiy01kg.woff) format('woff')} | |
@font-face{font-family:'Abel';font-style:normal;font-weight:400;src:local('Abel'),local('Abel-Regular'),url(http://themes.googleusercontent.com/static/fonts/abel/v3/EAqh528fFdbUek8UOky4sA.woff) format('woff')} | |
@font-face{font-family:'Abril Fatface';font-style:normal;font-weight:400;src:local('Abril Fatface'),local('AbrilFatface-Regular'),url(http://themes.googleusercontent.com/static/fonts/abrilfatface/v5/X1g_KwGeBV3ajZIXQ9VnDvn8qdNnd5eCmWXua5W-n7c.woff) format('woff')} | |
@font-face{font-family:'Aclonica';font-style:normal;font-weight:400;src:local('Aclonica'),local('Aclonica |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$googleFonts = array('ABeeZee', 'Abel', 'Abril Fatface', 'Aclonica', 'Acme', 'Actor', 'Adamina', 'Advent Pro', 'Aguafina Script', 'Akronim', 'Aladin', 'Aldrich', 'Alef', 'Alegreya', 'Alegreya SC', 'Alex Brush', 'Alfa Slab One', 'Alice', 'Alike', 'Alike Angular', 'Allan', 'Allerta', 'Allerta Stencil', 'Allura', 'Almendra', 'Almendra Display', 'Almendra SC', 'Amarante', 'Amaranth', 'Amatic SC', 'Amethysta', 'Anaheim', 'Andada', 'Andika', 'Angkor', 'Annie Use Your Telescope', 'Anonymous Pro', 'Antic', 'Antic Didone', 'Antic Slab', 'Anton', 'Arapey', 'Arbutus', 'Arbutus Slab', 'Architects Daughter', 'Archivo Black', 'Archivo Narrow', 'Arial Black', 'Arial Narrow', 'Arimo', 'Arizonia', 'Armata', 'Artifika', 'Arvo', 'Asap', 'Asset', 'Astloch', 'Asul', 'Atomic Age', 'Aubrey', 'Audiowide', 'Autour One', 'Average', 'Average Sans', 'Averia Gruesa Libre', 'Averia Libre', 'Averia Sans Libre', 'Averia Serif Libre', 'Bad Script', 'Balthazar', 'Bangers', 'Basic', 'Battambang', 'Baumans', 'Bayon', 'Belgrano', 'Bell MT' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function() { | |
$('.navbar .dropdown').hover(function() { | |
$(this).find('.dropdown-menu').first().stop(true, true).delay(250).slideDown(); | |
}, function() { | |
$(this).find('.dropdown-menu').first().stop(true, true).delay(100).slideUp(); | |
}); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
foreach ($items as $item) { | |
if (!isset($mergedItems['key']) { | |
$mergedItems[$item['key']] = $item; | |
} else { | |
$mergedItems[$item['key']]['subKey'] += $item['subKey']; | |
} | |
} |