Welcome to the HCC Developer Progression Matrix. The matrix helps to track the skills and attributes required to progress through the various levels. HCC currently recognizes four levels a developer can progress through:
This file contains hidden or 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
# models | |
class Part(models.Model): | |
title = models.CharField(max_length=255) | |
class PartAttribute(models.Model): | |
part = models.ForeignKey(Part, on_delete=models.CASCADE, null=True, related_name='attributes') | |
name = models.CharField(max_length=128) | |
class PartAttributeChoice(models.Model): |
I hereby claim:
- I am tobyl on github.
- I am tleftly (https://keybase.io/tleftly) on keybase.
- I have a public key ASDkqLgdeofMynjfM7g5gF4pTuY2kR4UA2QDo3S78zAYNwo
To claim this, I am signing this object:
File structure:
|-- config
| `-- ignition.yaml
|-- flatcar_production_pxe.vmlinuz
|-- flatcar_production_pxe_image.cpio.gz
|-- hardware.json
|-- k8s.yaml
|-- ldlinux.c32
This file contains hidden or 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
I was an iPhone user circa 2010, although I can't recall which models I owned (there were at least 2 or 3). | |
I can't recall exactly what prompted me to switch to Android, but for a long time I have felt that whoever Apple's target audience is (for computers and phones) I'm probably in either their primary, secondary or perhaps even tertiary group. Apple's web/online services was a BIG weakness back then, especially for those who are mostly happy with Google's web services. | |
I hated my first Android phone, a Motorola something-or-other. But once I switched to Google's Pixels, I was pretty happy and remained that way from my first pixel, the 2XL to my last, the Pixel 4. They were never mind blowing, but they were solid and reliable and did a small handful of things really well. However, in the past few years the price of everything has crept up, and now Google's phones are as expensive as iPhones, so more and more the question is "if I'm paying a ton of money for a phone, does Apple offer anything that is simpl |
This file contains hidden or 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
Reolink URL format: | |
rtsp://admin:password@ip_address:554//h264Preview_01_main | |
ffmpeg command: | |
ffmpeg -i rtsp://admin:password@ip_address:554//h264Preview_01_main -vcodec copy -acodec copy -map 0 -f segment -segment_time 300 -segment_format mp4 "ffmpeg_capture-%03d.mp4" |
This file contains hidden or 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
<div class="container"> | |
<div class="row"> | |
<div class="col-xs-12"> | |
Heading one | |
</div> | |
<div class="col-xs-12"> | |
Heading two |
This file contains hidden or 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
<div class="container"> | |
<div class="row"> | |
<div class="col-sm-4"> | |
Heading One | |
</div> | |
<div class="col-sm-4"> | |
Heading Two |
This file contains hidden or 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
.btn { | |
display: block; | |
@include mobile-up { | |
display: inline-block; | |
} | |
} |
This file contains hidden or 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
.sidebar { | |
ul { | |
list-style: none; | |
padding: 0; | |
li { | |
border-bottom: 1px solid blue; | |
} | |
} | |
} |
NewerOlder