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!
#!/bin/sh | |
# size of swapfile in megabytes | |
swapsize=8000 | |
# does the swap file already exist? | |
grep -q "swapfile" /etc/fstab | |
# if not then create it | |
if [ $? -ne 0 ]; then |
Content Type: %{content_type}\n | |
HTTP Code: %{http_code}\n | |
HTTP Connect: %{http_connect}\n | |
Number Connects: %{num_connects}\n | |
Number Redirects: %{num_redirects}\n | |
Redirect URL: %{redirect_url}\n | |
Size Download: %{size_download}\n | |
Average speed download: %{speed_download}\n | |
Size Upload: %{size_upload}\n | |
SSL Verify: %{ssl_verify_result}\n |
<?php | |
namespace Webmanufaktur\MySite\Routing; | |
use eZ\Publish\API\Repository\Values\Content\Location; | |
use eZ\Publish\Core\MVC\ConfigResolverInterface; | |
use eZ\Publish\Core\MVC\Symfony\Routing\Generator\UrlAliasGenerator; | |
use eZ\Publish\Core\SignalSlot\Repository; | |
use Symfony\Cmf\Component\Routing\ChainedRouterInterface; | |
use Symfony\Component\HttpFoundation\Request; |
#!/bin/sh | |
# size of swapfile in megabytes | |
swapsize=512 | |
# does the swap file already exist? | |
grep -q "swapfile" /etc/fstab | |
# if not then create it | |
if [ $? -ne 0 ]; then |
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
// default font size in pixels for all tabs | |
fontSize: 14, | |
// font family with optional fallbacks |
#!/bin/bash | |
aptitude -y install expect | |
// Not required in actual script | |
MYSQL_ROOT_PASSWORD=abcd1234 | |
SECURE_MYSQL=$(expect -c " | |
set timeout 10 |
Key-Type: 1 | |
Key-Length: 2048 | |
Subkey-Type: 1 | |
Subkey-Length: 2048 | |
Name-Real: Root Superuser | |
Name-Email: root@handbook.westarete.com | |
Expire-Date: 0 |
Ideas are cheap. Make a prototype, sketch a CLI session, draw a wireframe. Discuss around concrete examples, not hand-waving abstractions. Don't say you did something, provide a URL that proves it.
Nothing is real until it's being used by a real user. This doesn't mean you make a prototype in the morning and blog about it in the evening. It means you find one person you believe your product will help and try to get them to use it.