I hereby claim:
- I am arondeparon on github.
- I am aron (https://keybase.io/aron) on keybase.
- I have a public key whose fingerprint is 3C3F BE7E 89B8 49E3 A82F 1B2D 121D B30F 3276 E10E
To claim this, I am signing this object:
#!/bin/bash | |
# Set your OpenAI API key | |
OPENAI_API_KEY= | |
# Initialize input variable | |
input="" | |
# Determine input source: stdin or command-line argument | |
if [ -p /dev/stdin ]; then |
<?php | |
class ThemosisValetDriver extends BasicValetDriver | |
{ | |
/** | |
* Determine if the driver serves the request. | |
* | |
* @param string $sitePath | |
* @param string $siteName | |
* @param string $uri |
# So, Microsoft made their Office suite dark-mode compatible, sort of. | |
# Thing is, it looks absolutely terrible and there is no simple way to turn it off. | |
# Oh wait, there is! Paste these commands in your terminal to excempt the app from Dark Mode in Mac OS. | |
defaults write com.microsoft.Excel NSRequiresAquaSystemAppearance -bool yes | |
defaults write com.microsoft.Word NSRequiresAquaSystemAppearance -bool yes | |
defaults write com.microsoft.Outlook NSRequiresAquaSystemAppearance -bool yes | |
defaults write com.microsoft.Powerpoint NSRequiresAquaSystemAppearance -bool yes |
Validator::extend('at_least_one_filled', function($attribute, $value, $parameters, $validator) { | |
if (is_array($value)) { | |
$filteredArray = array_filter($value); | |
return count($filteredArray) > 0; | |
} else { | |
return !empty($value); | |
} | |
}); |
<?php | |
namespace App\Models; | |
use Crypt; | |
use Illuminate\Database\Eloquent\Model; | |
/** | |
* This model implements a custom cast named (en)crypt. If a property is added to | |
* the cast array with this type, the value will be automatically and transparently encrypted |
# Put this before Vagrant.configure and you're good to go | |
def install_ansible_requirements | |
dir = File.dirname(File.expand_path(__FILE__)) | |
if (File.exist?("#{dir}/ansible/requirements.yml")) | |
system "ansible-galaxy install -r #{dir}/ansible/requirements.yml" | |
end | |
end | |
install_ansible_requirements |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
/** | |
* Toggle everything! | |
* | |
* Options | |
* | |
* data-toggle="<selector>" The element that should be toggled. | |
* data-toggle-class="<classname>" [optional] The classname that should be toggled on the target. If empty, display will be toggled | |
* data-toggle-alt-html="<content>" [optional] Alternate content that should be displayed in the toggling element | |
* data-toggle-duration="<duration>" [optional] Duration of the effect. Instant if empty. | |
* data-save-state="<reference>" [optional] Save the state of the toggle in a a cookie. Requires $.cookie |
http_path = "/" | |
css_dir = "../css" | |
sass_dir = "./" | |
images_dir = "../images" | |
javascripts_dir = "../js" | |
environment = :production | |
relative_assets = true | |
output_style = (environment == :production) ? :compressed : :expanded | |
preferred_syntax = :scss |