Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision |
| programmieren [2015/07/07 10:01] – [Typo3] gevatter | programmieren [2019/05/29 21:17] (current) – gevatter |
|---|
| ====== Programmieren ====== | ====== Programmieren ====== |
| | * [[python]] |
| | |
| ===== HTML ===== | ===== HTML ===== |
| * [[http://www.preissens.de/html-header/header_generator.html|HTML Header Geneator]] | * [[http://www.preissens.de/html-header/header_generator.html|HTML Header Geneator]] |
| * [[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]] |
| | |
| | ===== grunt ===== |
| | |
| | * grunt installed but command not available: https://stackoverflow.com/questions/10667381/node-package-grunt-installed-but-not-available |
| | |
| ===== Typo3 ===== | ===== Typo3 ===== |
| * [[http://www.tugle.de/know_how/typo3_tutorials/typoscript_komfortabel_editieren/syntax_highlighting_mit_gvim.html|vim syntax highlighting für typoscript]] | * [[http://www.tugle.de/know_how/typo3_tutorials/typoscript_komfortabel_editieren/syntax_highlighting_mit_gvim.html|vim syntax highlighting für typoscript]] |