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
const fib = [ | |
'define', | |
['fib', 'n'], | |
[ | |
'if', | |
['<', 'n', 3], | |
1, | |
[ | |
'+', | |
[ |
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
#!/bin/bash | |
# 0 - SSH | |
# This isn't necessary but if you ssh into the computer all the other steps are copy and paste | |
# Set a password for root | |
passwd | |
# Get network access | |
iwctl | |
""" |
See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
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
Debugger commands: | |
apropos -- List debugger commands related to a word or subject. | |
breakpoint -- Commands for operating on breakpoints (see 'help b' for | |
shorthand.) | |
bugreport -- Commands for creating domain-specific bug reports. | |
command -- Commands for managing custom LLDB commands. | |
disassemble -- Disassemble specified instructions in the current | |
target. Defaults to the current function for the | |
current thread and stack frame. |