VirtualTam's bookmarks
166 bookmarks found
-
- https://stackoverflow.com/questions/10622179/how-to-find-identify-large-commits-in-git-history
- https://stackoverflow.com/questions/223678/which-commit-has-this-blob
1git rev-list --objects --all \ 2| git cat-file --batch-check='%(objecttype) %(objectname) %(objectsize) %(rest)' \ 3| sed -n 's/^blob //p' \ 4| sort --numeric-sort --key=2 --reverse \ 5| head -n 150 \ 6| cut -c 1-12,41- \ 7| $(command -v gnumfmt || echo numfmt) --field=2 --to=iec-i --suffix=B --padding=7 --round=nearest
-
- https://stackoverflow.com/questions/415452/object-orientation-in-c
- https://sites.google.com/site/cinterfacesimplementations/
- http://web.archive.org/web/20190125125043/http://homepages.inf.ed.ac.uk/dts/pm/Papers/nasa-c-style.pdf
- https://www.maultech.com/chrislott/resources/cstyle/
- https://wiki.sei.cmu.edu/confluence/display/c/SEI+CERT+C+Coding+Standard
-
TL;DR: Hydrators are used to map arrays to objects, and vice-versa
- https://www.doctrine-project.org/projects/doctrine-phpcr-odm/en/latest/reference/query.html#hydration-modes
- https://codereview.stackexchange.com/questions/222/php-doctrine-array-hydration
- https://github.com/doctrine/DoctrineModule/blob/master/docs/hydrator.md
- https://framework.zend.com/manual/2.4/en/modules/zend.stdlib.hydrator.html
- https://github.com/phpro/zf-doctrine-hydration-module
- https://github.com/zendframework/zend-hydrator
-
Cycle error when trying to create AWS VPC security groups using Terraform - Stack Overflow
2019-02-20 TL;DR: break the dependency cycle by declaring rules between two of the groups from the dependency chain with
aws_security_group_rule