Minikube requires that VT-x/AMD-v virtualization is enabled in BIOS. To check that this is enabled on OSX / macOS run:
sysctl -a | grep machdep.cpu.features | grep VMX
If there's output, you're good!
# delete local tag '12345' | |
git tag -d 12345 | |
# delete remote tag '12345' (eg, GitHub version too) | |
git push origin :refs/tags/12345 | |
# alternative approach | |
git push --delete origin tagName | |
git tag -d tagName |
package gvl | |
import grails.converters.JSON | |
class ErrorController { | |
// Forbidden | |
def error403() { | |
withFormat { | |
html { render(view: 'error403') } |
git rebase --interactive HEAD~2 | |
# we are going to squash c into b | |
pick b76d157 b | |
pick a931ac7 c | |
# squash c into b | |
pick b76d157 b | |
s a931ac7 c |
#!/bin/bash | |
brew install redis # Install Redis using Homebrew | |
ln -sfv /usr/local/opt/redis/*.plist ~/Library/LaunchAgents # Enable Redis autostart | |
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.redis.plist # Start Redis server via launchctl | |
# homebrew.mxcl.redis.plist contains reference to redis.conf file location: /usr/local/etc/redis.conf | |
redis-server /usr/local/etc/redis.conf # Start Redis server using configuration file, Ctrl+C to stop | |
redis-cli ping # Check if the Redis server is running |
<select> | |
<option value="Afghanistan">Afghanistan</option> | |
<option value="Albania">Albania</option> | |
<option value="Algeria">Algeria</option> | |
<option value="American Samoa">American Samoa</option> | |
<option value="Andorra">Andorra</option> | |
<option value="Angola">Angola</option> | |
<option value="Anguilla">Anguilla</option> | |
<option value="Antartica">Antarctica</option> | |
<option value="Antigua and Barbuda">Antigua and Barbuda</option> |
class UserController { | |
def index(final String username) { | |
flash.errors = "ops!" | |
render view: "index", model: [username:username, text:username] | |
} | |
} |
package com.jetbootlabs.services | |
/* | |
* Truncates H2 tables mapped by the domainClasses variable. Useful for cleaning up test data. | |
* | |
* Temporarily disables referential integrity to avoid constraint violation errors when | |
* deleting records. | |
* | |
* Inspired by Luke Daley's blog post on how to do this in MySQL: | |
* http://ldaley.com/post/398082618/brute-force-fixture-cleanup-in-grails |
// Compiled by Igor Shults | |
// Last Updated: Nov. 26, 2019 | |
GRAILS GROOVY SOURCE | |
4.0.1 2.5.6 | |
4.0.0 2.5.6 https://github.com/grails/grails-core/blob/v4.0.0/build.gradle | |
3.3.11 2.4.17 | |
3.3.10 2.4.17 https://github.com/grails/grails-core/commit/06a05143ec9039e631a2543b11fb52576157643e#diff-c197962302397baf3a4cc36463dce5ea | |
3.3.9 2.4.15 |
We need to run multiple versions of kubectl for compatibility with various kubernetes clusters.
It's a bit easier to get and use multiple versions of kubectl using Homebrew than it is using Macports.
With brew, it's simple to: