Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision |
| programmieren [2016/03/20 23:42] – Externe Bearbeitung 127.0.0.1 | programmieren [2026/02/10 14:34] (current) – gevatter |
|---|
| ====== Programmieren ====== | ====== Programmieren ====== |
| * [[python]] | * [[python]] |
| | * [[vuejs:snippets]] |
| |
| ===== HTML ===== | ===== HTML ===== |
| * [[http://robertnyman.com/2010/01/11/css-background-transparency-without-affecting-child-elements-through-rgba-and-filters/|Transparenztricks]] | * [[http://robertnyman.com/2010/01/11/css-background-transparency-without-affecting-child-elements-through-rgba-and-filters/|Transparenztricks]] |
| ===== PHP ===== | ===== PHP ===== |
| | * [[php:snippets]] |
| * [[http://iblog.ikarius.net/index.php/2010/10/01/php-strtotime-und-kalenderwochen/|Mit Kalenderwochen rechnen]] | * [[http://iblog.ikarius.net/index.php/2010/10/01/php-strtotime-und-kalenderwochen/|Mit Kalenderwochen rechnen]] |
| * [[http://www.tcpdf.org/|Bibliothek zum Arbeiten mit PDFs]] Die Doku ist dürftig aber die Funktionsumfang ist groß | * [[http://www.tcpdf.org/|Bibliothek zum Arbeiten mit PDFs]] Die Doku ist dürftig aber die Funktionsumfang ist groß |
| | |
| | ===== mysql ===== |
| | ==== drop all tables ==== |
| | <code> |
| | SELECT concat('DROP TABLE IF EXISTS `', table_name, '`;') |
| | FROM information_schema.tables |
| | WHERE table_schema = 'MyDatabaseName'; |
| | </code> |
| | source: https://stackoverflow.com/a/8248281 |
| ===== git ===== | ===== git ===== |
| * [[http://ben.kulbertis.org/2011/10/synchronizing-a-mysql-database-with-git-and-git-hooks/|MySQL Datenbank per git synchronisieren]] | * [[http://ben.kulbertis.org/2011/10/synchronizing-a-mysql-database-with-git-and-git-hooks/|MySQL Datenbank per git synchronisieren]] |