Autor: Phillip Richdale
-
Clear Scrollback History in iTerm2
printf ‚\e]50;ClearScrollback\a‘
-
jQuery Spreadsheets Overview / Tabellenwidgets Übersicht
http://jspreadsheets.com/
-
Show Active Web VHosts on Linux
List all active apache web vhosts on Ubuntu/Debian Linux / Liste alle aktiven Apache Web VHosts auf einem Ubuntu/Linux Server auf: ls /etc/apache2/sites-enabled | sed ’s,\s,\n,g‘ | sed ’s,^,/etc/apache2/sites-enabled/,g‘ | xargs cat | grep -v „#“ | grep ServerName | sed ’s,ServerName,,g‘ | sed ’s,\s,,g‘
-
Adding a user to a group on Mac OS X
Auf Mac OX X einen User einer Gruppe hinzufügen: sudo dseditgroup -o edit -a [UserNameToAdd] -t user [Groupname]
-
World Map
jVectorMap
-
Summer 2016 Font News
The new Google Fonts (neat) Top 100 Free Fonts according to CreativeBloq OpenFontLibrary (new stuff / neue Sachen)
-
Fashion / Hippster Blogs
http://missurine.tumblr.com/ http://elfriedes.tumblr.com/ http://elfriedes-outerspace.tumblr.com/ http://www.hel-looks.com/ http://sf-looks.com/
-
WordPress Updates ohne/without FTP
Disable FTP requirement for Pluing Installations and Updates / FTP Anforderung für Plugin und Updateinstallation deaktivieren: //add to wp-config.php define(‚FS_METHOD‘,’direct‘);
-
WordPress – Does Author have Posts or not? / Hat der User Posts oder nicht?
<?php if (count(query_posts(‚author=‘.get_current_user_id().’&posts_per_page=5′)) > 0) { //User hat posts / User has posts } else { //User hat KEINE posts / User has NO posts } ?>
-
Freakin‘ Cool JavaScript ’n‘ jQuery Stuff
Gridstack.js Midnight.js Animisition Material Design Preloader Youtube Background Video jPanel Menu Countable.js Simple DropDown List Effects Scrollpath Questionmark.js ifvisible.js Offline.js Pace.js Pongstragr.am
-
WordPress Plugin Pfad/Path
Pfad zum Plugin in WordPress / Path to plugin in WordPress plugins_url().“/[PluginDirectoryName]“
-
URLs in WordPress
site_url(); bloginfo(„wpurl“); //check this! Returns Root Domain URL without trailing slash. home_url(); Returns URL of the WordPress Home target without trailing slash. Usually is the same as the root domain, but needn’t be! admin_url(); Returns the URL leading to the WP Admin directory including trailing slash.
-
Letztes URL Element mit Inhalt / Last URL Segment with content
array_pop(array_filter(explode(„/“, $_SERVER[‚REQUEST_URI‘]), function ($val){return (strlen($val) > 0);})); (Das ist PHP / This is PHP) is_int($thisValue = array_pop(array_filter(explode(„/“, $_SERVER[‚REQUEST_URI‘]), function ($val){return (strlen($val) > 0);}))) ? $thisValue : false; This command only returns a value if the snippet retrieved is an Integer (better for grabbing IDs) – otherwise it returns false / Dieser Befehl gibt den Wert…
-
WordPress Template Hierarchy Diagram
WordPress Template Hierarchy Diagram
-
Sprachupdates in WordPress deaktivieren / Disable WordPress language updates
Das hier in die functions.php des aktiven Themes eintragen / Add this to the active themes functions.php: add_filter( ‚auto_update_translation‘, ‚__return_false‘ );
-
When Atom crashes …
When Atom crashes on boot, delete ~/.atom/blob-store That might help.
-
Electron 1.0 erschienen / Electron 1.0 released
Electron Website Was ist Electron? / What is Electron? (video, english)
-
Lightweight Webdesign Frameworks
Skeleton Spectre Milligram Furtive Basscss PureCSS μ
-
Foundation 6
Foundation 6
-
Alles über Dich bei Google / All about you at Google
Deine Daten / Your Data Apps mit Zugriff auf Deine Daten / Apps with access to your data Geräte, mit denen Du Dein Googlekonto verwendest / Devices with which you use your Google account Deine Suchvergangenheit / Your Searchhistory Google weisst wo Du warst / Google knows where you were Dein Google Werbeprofil / Your…
-
Richdales Vier Gesetze der Informationstechnologie
1.) Spielzeug gewinnt. „Spielzeugtechnologien“ gewinnen auf lange Sicht, weil sie nicht als Bedrohung wahrgenommen werden. Sie werden zugelassen, aber gleichzeitig nicht unter Patent- oder Formatverschluss gestellt, mit offiziellen Standards versehen und dienen somit als Einfallstor für enthusiastische frühe Nutzer. Dies passiert auch dann, wenn diese „Spielzeugtechnologien“ zu Beginn schwerer zu handhaben oder technisch unterlegen sind.…