Skip to content

Instantly share code, notes, and snippets.

View hasenbalg's full-sized avatar
🐩

koongfoopoodle hasenbalg

🐩
View GitHub Profile
This is Google's cache of https://blog.matthaa.de/rahmen-section_frame-frame_class-und-layouts-in-fluidtemplates/. It is a snapshot of the page as it appeared on 22 Jun 2019 23:06:13 GMT. The current page could have changed in the meantime. Learn more.
Full versionText-only versionView source
Tip: To quickly find your search term on this page, press Ctrl+F or ⌘-F (Mac) and use the find bar.
TYPO3 Codebeispiele und Hilfen
matthaa.de – TYPO3 Support, Homepage Erstellung in Hannover und anderswo
Springe zum Inhalt
Startseite
Kontakt & Datenschutz
TYPO3 Referenzen
sudo apt install autotools-dev:all icu-devtools:amd64 libboost1.62-dev:amd64 libboost-dev:amd64 libboost1.62-tools-dev:amd64 libboost-tools-dev:amd64 libboost-atomic1.62.0:amd64 libboost-atomic1.62-dev:amd64 libboost-atomic-dev:amd64 libboost-system1.62.0:amd64 libboost-chrono1.62.0:amd64 libboost-chrono1.62-dev:amd64 libboost-chrono-dev:amd64 libboost-context1.62.0:amd64 libboost-context1.62-dev:amd64 libboost-context-dev:amd64 libboost-thread1.62.0:amd64 libboost-coroutine1.62.0:amd64 libboost-coroutine1.62-dev:amd64 libboost-coroutine-dev:amd64 libboost-date-time1.62.0:amd64 libboost-serialization1.62.0:amd64 libboost-serialization1.62-dev:amd64 libboost-date-time1.62-dev:amd64 libboost-date-time-dev:amd64 libboost-exception1.62-dev:amd64 libboost-exception-dev:amd64 libboost-fiber1.62.0:amd64 libboost-fiber1.62-dev:amd64 libboost-fiber-dev:amd64 libboost-filesystem1.62.0:amd64 libboost-system1.62-dev:amd64 libboost-filesystem1.62-dev:amd64 libboost-filesystem-dev:amd64 libboost-regex1.62.0:amd64 libboost-
APPNAME=com.domain.TaskList
sencha app build native
adb install -r /tmp/TaskList/cordova/platforms/android/app/build/outputs/apk/debug/app-debug.apk
adb shell monkey -p $APPNAME -c android.intent.category.LAUNCHER 1
adb logcat -s cordova
@hasenbalg
hasenbalg / gist:6cc68b78795c4df754e9c22517d05f10
Created December 11, 2018 08:38
adb uninstall shitware
packagenames can be found on the download page of the app on apkmirror.com e.g. https://www.apkmirror.com/apk/sony-mobile-communications/whats-new/whats-new-4-2-a-0-5-release/whats-new-4-2-a-0-5-android-apk-download/
// list all packages containing 'sideview'
adb shell 'pm list packages -f' | grep -e sideview
// remove package
adb shell 'pm uninstall --user 0 com.sony.tvsideview.phone'
@hasenbalg
hasenbalg / setup.ts
Created August 28, 2018 11:05
Google Analytics in TYPO3 einbinden
googleAnalytics.UA = TEXT
googleAnalytics.UA.value = blabla
page.headerData.98788 = TEXT
page.headerData.98788{
value(
<!-- Google Analytics -->
<script>
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
@hasenbalg
hasenbalg / Page.ts
Last active August 21, 2018 06:16
typo3 pass along footer
mod.web_layout.BackendLayouts {
nimm_mich {
title = Nimm mich!
icon = EXT:example_extension/Resources/Public/Images/BackendLayouts/default.gif
config {
backend_layout {
colCount = 4
rowCount = 2
rows {
@hasenbalg
hasenbalg / Typo3phpsendmail.md
Last active August 6, 2018 09:47
Solution for Unsupported sendmail command flags [/usr/sbin/sendmail]. Must be one of "-bs" or "-t" but can include additional flags.

In Typo3 8.7 geht bei mir der phpsendmail nicht mehr. Die Fehlermeldung sieht so oder aehnlich aus.

Core: Exception handler (WEB): Uncaught TYPO3 Exception: Unsupported sendmail command flags [/usr/sbin/sendmail]. Must be one of "-bs" or "-t" but can include additional flags. | Swift_TransportException thrown in file /opt/typo3_src-8.7.16/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/SendmailTransport.php in line 146. Requested URL: http://typosux.de/typo3/install.php?&install[action]=testSetup&install[controller]=tool&install[context]=backend 

Wenn man die Mails ueber smtp verschickt, dann geht es aber.

$GLOBALS['TYPO3_CONF_VARS']['MAIL']['transport'] = 'smtp';
$GLOBALS['TYPO3_CONF_VARS']['MAIL']['transport_smtp_password'] = 'xxx';
$GLOBALS['TYPO3_CONF_VARS']['MAIL']['transport_smtp_server'] = 'smtp.domain.org:25';
@hasenbalg
hasenbalg / video_converter.sh
Last active June 21, 2018 10:18
rename and convert all .mov files in a dir structure
#!/bin/bash
# install rename and libav-tools
# place this script in the root dir of the video dirs
# get all the spaces out of the names
find . -depth -name "* *" -execdir rename 's/ /_/g' "{}" \; #https://stackoverflow.com/a/2709619/4062341
# convert all the videos. (remove the echo)
# https://superuser.com/a/1059219/895813
for i in `find . -name "*.mov" -print0| xargs -0`; do
@hasenbalg
hasenbalg / keymap.cson
Created April 30, 2018 08:15
Atom Keybindingings
'atom-text-editor':
'ctrl-shift-i': 'editor:auto-indent'
@hasenbalg
hasenbalg / AdditionalConfiguration.php
Created March 28, 2018 14:04
Typo3 404 in chosen language
<?php
function logger($value)
{
$output = "\n" . print_r($value, TRUE) . "\n";
file_put_contents('php://stderr', $output);
//observe in apache log (tail -f /var/log/apache2/error.log)
}
// http://wiki.sklein-medien.de/doku.php?id=typo3:404