This file contains hidden or 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
<?php | |
$mysql = new SaeMysql(); | |
$sql = "SELECT `uid` FROM `users`"; | |
$users = $mysql->getData($sql); | |
foreach($users as $userline) { | |
$uid = $userline['uid']; | |
$sql = "SELECT * FROM `phones` WHERE `uid` = $uid"; | |
$phones = $mysql->getData($sql); | |
$sql = "SELECT * FROM `stocks` WHERE `uid` = $uid"; |
This file contains hidden or 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
export XMODIFIERS="@im=SCIM" | |
export XIM=SCIM | |
#Set scim-bridge | |
export XIM_PROGRAM="/usr/bin/scim-bridge" | |
export XIM_ARGS="-n" | |
export GTK_IM_MODULE=scim-bridge | |
export QT4_IM_MODULE=scim-bridge | |
scim -d & |
This file contains hidden or 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 | |
# launches a session dbus instance | |
dbuslaunch="`which dbus-launch 2>/dev/null`" | |
if [ -n "$dbuslaunch" ] && [ -x "$dbuslaunch" ] && [ -z "$DBUS_SESSION_BUS_ADDRESS" ]; then | |
eval `$dbuslaunch --sh-syntax --exit-with-session` | |
fi |
NewerOlder