This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- MySQL dump 10.13 Distrib 5.5.31, for debian-linux-gnu (x86_64) | |
-- | |
-- Host: localhost Database: purchases | |
-- ------------------------------------------------------ | |
-- Server version 5.5.31-1 | |
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; | |
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; | |
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; | |
/*!40101 SET NAMES utf8 */; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$all_posts = $wpdb->get_results(" | |
SELECT wp_posts.ID,wp_posts.post_date,wp_posts.post_title,wp_posts.post_name, | |
wp_terms.name,wp_terms.slug,wp_term_taxonomy.description | |
from wp_posts | |
join wp_term_relationships on wp_posts.ID = wp_term_relationships.object_id | |
join wp_terms on wp_term_relationships.term_taxonomy_id = wp_terms.term_id | |
join wp_term_taxonomy on wp_term_relationships.term_taxonomy_id = wp_term_taxonomy.term_taxonomy_id | |
WHERE wp_posts.post_status = 'publish' | |
ORDER BY wp_terms.slug,wp_posts.ID; | |
", ARRAY_A); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
warning: Currently logging to gdbtrace.log. Turn the logging off and on to make the new setting effective. | |
warning: no loadable sections found in added symbol-file system-supplied DSO at 0x7ffff7ffa000 | |
warning: Could not load shared library symbols for linux-vdso.so.1. | |
Do you need "set solib-search-path" or "set sysroot"? | |
[Thread debugging using libthread_db enabled] | |
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1". | |
[New Thread 0x7fffe8476700 (LWP 23322)] | |
[New Thread 0x7fffd89a0700 (LWP 23345)] | |
[New Thread 0x7fffd37c7700 (LWP 23350)] | |
[Thread 0x7fffd89a0700 (LWP 23345) exited] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Starting program: /usr/lib/chromium/chromium --ssl-version-min=tls1 --ppapi-flash-path=/usr/lib/pepperflashplugin-nonfree/libpepflashplayer.so --ppapi-flash-version=15.0.0.189 | |
[Thread debugging using libthread_db enabled] | |
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1". | |
[New Thread 0x7fffea405700 (LWP 2307)] | |
[New Thread 0x7fffe9c04700 (LWP 2325)] | |
[New Thread 0x7fffe3fff700 (LWP 2328)] | |
[New Thread 0x7fffe37fe700 (LWP 2329)] | |
[New Thread 0x7fffe2ffd700 (LWP 2336)] | |
[New Thread 0x7fffe27fc700 (LWP 2340)] | |
[New Thread 0x7fffe84e0700 (LWP 2344)] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
subUnitIndex := "1" | |
deviceType := "playback" | |
changeTrayIcon() { | |
muteSetting := VA_GetMute(subUnitIndex, deviceType) | |
icon := "" | |
if (muteSetting) { | |
icon := "off" | |
} else { |