ref: https://www.cultofmac.com/272595/quickly-hide-icons-desktop-os-x-tips/
defaults write com.apple.finder CreateDesktop false
killall Finder
| --- | |
| description: Reglas para fast api y carpeta apis | |
| globs: *.py | |
| --- | |
| Eres un experto en Python, FastAPI y desarrollo de APIs escalables. | |
| Reglas del monorepo: | |
| - Siempre responderas en español latino | |
| - Toda las apis deben estar en la carpeta `apis/` |
| cd repository | |
| git checkout --orphan orphan_name | |
| git rm -rf . | |
| rm '.gitignore' | |
| echo "#Title of Readme" > README.md | |
| git add README.md | |
| git commit -a -m "Initial Commit" | |
| git push origin orphan_name |
| sudo pkill TouchBarServer | |
| pkill "Touch Bar agent" | |
| killall ControlStrip |
ref: https://www.cultofmac.com/272595/quickly-hide-icons-desktop-os-x-tips/
defaults write com.apple.finder CreateDesktop false
killall Finder
| <select name="companyActivityId" id="companyActivityId" class="form-control validate[required] input_warning" placeholder="Este campo es obligatorio"> | |
| <option value="">Seleccione</option> | |
| <option value="26">Administración Pública</option> | |
| <option value="1">Aeronaves / Astilleros</option> | |
| <option value="75">Afore</option> | |
| <option value="59">Agencia de Aduanas</option> | |
| <option value="2">Agrícola / Ganadera</option> | |
| <option value="76">Agroindustria</option> | |
| <option value="3">Agropecuaria </option> | |
| <option value="4">Agua / Obras Sanitarias</option> |
| Package Control Messages | |
| ======================== | |
| Predawn | |
| ------- | |
| ::::::: ::::::: ::::::: ::::::: :::::: ::: ::: ::: ::::: ::: | |
| ::: ::: ::: ::: ::: ::: ::: ::: ::: ::: ::: ::: ::::::: ::: |
| # ldapsearch -x -H ldaps://ldap.tumfatig.net -D "cn=admin,dc=tumfatig,dc=net" -W -b "dc=tumfatig,dc=net" -LLL > ldapd-"`date +%Y%m%d`".ldif |
| # Path: C:\Users\Administrator\AppData\Local\GitHub\PortableGit_f02737a78695063deace08e96d5042710d3e32db\mingw32\etc | |
| [user] | |
| name = Jaime Guzmán | |
| email = | |
| [color] | |
| ui = auto | |
| status = auto |
| ls -R | grep ":$" | sed -e 's/:$//' -e 's/[^-][^\/]*\//--/g' \ | |
| -e 's/^/ /' -e 's/-/|/' | |
| # source | |
| # https://systembash.com/one-line-linux-command-to-print-out-directory-tree-listing/ |
| ls -R /path | awk ' | |
| /:$/&&f{s=$0;f=0} | |
| /:$/&&!f{sub(/:$/,"");s=$0;f=1;next} | |
| NF&&f{ print s"/"$0 }' | |
| #source | |
| #http://stackoverflow.com/questions/1767384/ls-command-how-can-i-get-a-recursive-full-path-listing-one-line-per-file |