Moved to https://github.com/mcandre/recipes/blob/master/vanilla-milkshake-for-dumdums.md
A vanilla milkshake recipe so easy a child could make it. Serves 2.
Moved to https://github.com/mcandre/recipes/blob/master/vanilla-milkshake-for-dumdums.md
A vanilla milkshake recipe so easy a child could make it. Serves 2.
https://github.com/mcandre/recipes/blob/master/chunky-monkey-hemp-shake.md
Thick, protein rich smoothie. Serves 2.
Moved to https://github.com/mcandre/recipes/blob/master/brownies-ez-mode.md
Gooey brownies, crunchy crusts, with an ice cold scoop of vanilla on top. Serves 8.
on ceil(x) | |
set y to x div 1 | |
if x > 0 and x mod 1 is not 0 then | |
set y to y + 1 | |
end if | |
return y | |
end ceil |
When running certain commands like ssh or git within Terminal on OSX you may get notices like the one below, which can be annoying. | |
perl: warning: Setting locale failed. | |
perl: warning: Please check that your locale settings: | |
LANGUAGE = (unset), | |
LC_ALL = (unset), | |
LANG = "en_US.UTF-8" | |
are supported and installed on your system. | |
perl: warning: Falling back to the standard locale ("C"). | |
If you see Access denied
, or other error messages when trying to access a git repository or SSH server, here are some steps you can take to resolve the problem.
When in doubt, run ssh -vvv <other options...>
to enable more verbose logging.
Summary
Why am I getting unable to get local issuer certificate
when I try to connect to gitlab.colo.networkedinsights.com:443?
Fix
$ wget -O /etc/httpd/ssl/gd_bundle-g2-g1.crt https://certs.godaddy.com/repository/gd_bundle-g2-g1.crt
; MacOS X: /usr/local/bin/nasm -f macho64 *.s && ld -macosx_version_min 10.7 *.o | |
; Solaris/FreeBSD/DragonFly: nasm -f elf64 -D UNIX *.s && ld *.o | |
; NetBSD: nasm -f elf64 -D UNIX -D NetBSD *.s && ld *.o | |
; OpenBSD: nasm -f elf64 -D UNIX -D OpenBSD *.s && ld -static *.o | |
; OpenIndiana: nasm -f elf64 -D UNIX *.s && ld -m elf_x86_64 *.o | |
; Linux: nasm -f elf64 *.s && ld *.o | |
%ifdef NetBSD | |
section .note.netbsd.ident | |
dd 7,4,1 |