View Dockerfile
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
FROM debian:wheezy | |
MAINTAINER Daniël van Eeden <docker@myname.nl> | |
RUN apt-get update | |
RUN apt-get install -y wget | |
RUN wget -qO /root/infobright-4.0.7-0-x86_64-ice.deb http://www.infobright.org/downloads/ice/infobright-4.0.7-0-x86_64-ice.deb | |
RUN dpkg -i /root/infobright-4.0.7-0-x86_64-ice.deb |
View MySQL Bugs.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View example_output.txt
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> source xml_xpath_kv.sql | |
Query OK, 0 rows affected, 1 warning (0.00 sec) | |
Query OK, 0 rows affected, 1 warning (0.00 sec) | |
Query OK, 0 rows affected (0.02 sec) | |
Query OK, 0 rows affected (0.01 sec) | |
Query OK, 1 row affected (0.01 sec) |
View MySQL Bug #73967 - Incorrect string value for sql_text.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View mysqlbuglinks.user.js
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
// ==UserScript== | |
// @name MySQL_BugLink | |
// @include https://dev.mysql.com/* | |
// @include http://dev.mysql.com/* | |
// @description Add buglinks to mysql pages | |
// ==/UserScript== | |
items = document.getElementsByClassName('listitem') | |
var searchRe = new RegExp('Bug #([0-9]{5})([^0-9])','g'); |
View convert-to-mp3.sh
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
#!/bin/bash | |
# Converts ogg vorbis to mp3 using gstreamer. | |
# Requires gstreamer-plugins-ugly for the lame mp3 encoding | |
if [ -z $1 ]; then | |
echo "Usage $0 <location>" | |
exit 1 | |
fi | |
location=$1 |
View gist:e5fac8f206a5bf52b5d6
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> SELECT 'Café' COLLATE utf8mb4_unicode_ci = 'Cafe' COLLATE utf8mb4_unicode_ci AS test1; | |
+-------+ | |
| test1 | | |
+-------+ | |
| 1 | | |
+-------+ | |
1 row in set (0.00 sec) | |
mysql> SELECT '🍣 ' COLLATE utf8mb4_unicode_ci = '🍺 ' COLLATE utf8mb4_unicode_ci AS test2; | |
+-------+ |
View cext world bug.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View MySQL Connector Python versus MySQLdb.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View MySQL Connpy and ssl_ca.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
OlderNewer