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
<widget:xforms-instance-inspector xmlns:widget="http://orbeon.org/oxf/xml/widget"/> |
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
<fr:datatable width="100%" height="300px"> | |
<xhtml:thead> | |
<xhtml:tr> | |
<xhtml:th fr:sortable="true" fr:sortKey="text">Note</xhtml:th> | |
<xhtml:th fr:sortable="true" fr:sortKey="text">Creation Time</xhtml:th> | |
<xhtml:th fr:sortable="true" fr:sortKey="participant">Participant</xhtml:th> | |
<xhtml:th fr:sortable="true" fr:sortKey="activityName">Activity</xhtml:th> | |
</xhtml:tr> | |
</xhtml:thead> | |
<xhtml:tbody> |
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
curl --user MYUSERNAME:MYPASSWORD --form [email protected] --form discard=yes --form discard=yes "http://example.com/probe/adm/war.htm" |
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
./haproxy -f /etc/haproxy/haproxy.cfg -p /var/run/haproxy.pid -sf $(cat /var/run/haproxy.pid) |
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
Select sum(bytes)/1024/1024 Mb, tablespace_name, segment_name | |
from user_segments | |
group by tablespace_name, segment_name | |
order by sum(bytes)/1024/1024 desc; |
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
SELECT table_name | |
, index_name | |
, NULL as partition_name | |
, num_rows | |
, leaf_blocks | |
, rows_per_leaf_block | |
, avg_key_len | |
, rows_per_leaf_block * avg_key_len AS avg_bytes_per_leaf_block | |
, db_block_size | |
, TRUNC(100 * rows_per_leaf_block * avg_key_len / db_block_size, 2) AS utilisation_pct |
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
zypper service-add -repo http://download.opensuse.org/repositories/server:/http/SLE_10/ | |
zypper install haproxy | |
zypper service-add -repo http://download.opensuse.org/repositories/utilities/SLE_10/ | |
zypper install htop |
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
# list all installed packages | |
rpm -qa | |
# remove a package | |
rpm -ev YOURRPM |
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/sh | |
# ================================================================== | |
# __ __ | |
# ____ ___ ____ / /_____ _/ /_ ____ | |
# / __ \/ _ \/ __ \/ __/ __ `/ __ \/ __ \ | |
# / /_/ / __/ / / / /_/ /_/ / / / / /_/ / | |
# / .___/\___/_/ /_/\__/\__,_/_/ /_/\____/ | |
# /_/ | |
# Pentaho CARTE startup scripts |
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
# find any date and append T00:00:00Z to it | |
echo "01-01-2001,asd,01-01-2001" | sed 's/\([0-9]\+-[0-9]\+-[0-9]\+\)/\1T00:00:00Z/g' |