Skip to content

Instantly share code, notes, and snippets.

View deajan's full-sized avatar

Orsiris de Jong deajan

View GitHub Profile
<?xml version='1.0' encoding='utf-8'?>
<interface>
<object class="pygubu.builder.widgets.scrolledframe" id="MainFrame">
<property name="borderwidth">5</property>
<property name="height">500</property>
<property name="relief">groove</property>
<property name="scrolltype">vertical</property>
<property name="takefocus">true</property>
<property name="usemousewheel">false</property>
<property name="width">700</property>
[ 0.000000] microcode: microcode updated early to revision 0x9e, date = 2016-06-22
[ 0.000000] Linux version 4.8.10-300.fc25.x86_64 (mockbuild@bkernel01.phx2.fedoraproject.org) (gcc version 6.2.1 20160916 (Red Hat 6.2.1-2) (GCC) ) #1 SMP Mon Nov 21 18:59:16 UTC 2016
[ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-4.8.10-300.fc25.x86_64 root=/dev/mapper/fedora_badcore0-root ro rd.lvm.lv=fedora_badcore0/root rd.lvm.lv=fedora_badcore0/swap rhgb quiet LANG=fr_FR.UTF-8 acpi_osi=! "acpi_osi=Windows 2009"
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.000000] x86/fpu: xstate_offset[3]: 832, xstate_sizes[3]:
[ 0.000000] microcode: microcode updated early to revision 0x9e, date = 2016-06-22
[ 0.000000] Linux version 4.8.10-300.fc25.x86_64 (mockbuild@bkernel01.phx2.fedoraproject.org) (gcc version 6.2.1 20160916 (Red Hat 6.2.1-2) (GCC) ) #1 SMP Mon Nov 21 18:59:16 UTC 2016
[ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-4.8.10-300.fc25.x86_64 root=/dev/mapper/fedora_badcore0-root ro rd.lvm.lv=fedora_badcore0/root rd.lvm.lv=fedora_badcore0/swap rhgb quiet LANG=fr_FR.UTF-8 acpi_osi=! "acpi_osi=Windows 2009"
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.000000] x86/fpu: xstate_offset[3]: 832, xstate_sizes[3]:
[ 0.000000] microcode: microcode updated early to revision 0x9e, date = 2016-06-22
[ 0.000000] Linux version 4.8.10-300.fc25.x86_64 (mockbuild@bkernel01.phx2.fedoraproject.org) (gcc version 6.2.1 20160916 (Red Hat 6.2.1-2) (GCC) ) #1 SMP Mon Nov 21 18:59:16 UTC 2016
[ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-4.8.10-300.fc25.x86_64 root=/dev/mapper/fedora_badcore0-root ro rd.lvm.lv=fedora_badcore0/root rd.lvm.lv=fedora_badcore0/swap rhgb quiet LANG=fr_FR.UTF-8 acpi_osi=! "acpi_osi=Windows 2009"
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.000000] x86/fpu: xstate_offset[3]: 832, xstate_sizes[3]:
[Unit]
Description=SimpleHelp Server
After=network.target
[Service]
WorkingDirectory=/opt/SimpleHelp/
Type=forking
ExecStart=/opt/SimpleHelp/serverstart.sh
SuccessExitStatus=143
#!/usr/bin/env bash
script_dir="$(dirname $0)"
if [ -f "$script_dir"/jre/bin/java ]; then
cd "$script_dir"
./jre/bin/java -Xmx128m -cp "lib/secure_shelp.jar:lib/secure_utils.jar:lib/secure_nlink.jar:lib/mail.jar:lib/activation.jar" -Djava.awt.headless=true SecureRunner1 com.aem.shelp.proxy.ProxyServerStop
else
cat <<< "$script_dir/jre/bin/java not found." 1>&2
exit 1
fi
#!/usr/bin/env bash
script_dir="$(dirname $0)"
if [ -f "$script_dir"/jre/bin/java ]; then
cd "$script_dir"
./jre/bin/java -Xmx384m -Djava.net.preferIPv4Stack=true -cp "lib/secure_shelp.jar:lib/secure_utils.jar:lib/secure_nlink.jar:lib/mail.jar:lib/activation.jar:lib/commons-logging.jar:lib/commons-pool.jar:lib/gnu-crypto.jar:lib/jradius-core.jar:lib/jradius-dictionary.jar:lib/jradius-extended.jar" -Djava.awt.headless=true SecureRunner1 com.aem.shelp.proxy.ProxyServerStartup &
else
cat <<< "$script_dir/jre/bin/java not found." 1>&2
exit 1
fi
-- Logs begin at Mon 2016-06-27 05:14:51 EDT, end at Mon 2016-06-27 03:17:43 EDT. --
Jun 27 05:14:51 localhost systemd-journald[239]: Runtime journal (/run/log/journal/) is 8.0M, max 796.2M, 788.2M free.
Jun 27 05:14:51 localhost kernel: Linux version 4.5.5-300.fc24.x86_64 (mockbuild@bkernel01.phx2.fedoraproject.org) (gcc version 6.1.1 20160510 (Red Hat 6.1.1-2) (GCC) ) #1 SMP Thu May 19 13:05:32 UTC 2016
Jun 27 05:14:51 localhost kernel: Command line: BOOT_IMAGE=/images/pxeboot/vmlinuz root=live:CDLABEL=Fedora-WS-Live-24-1-2 rd.live.image nomodeset quiet
Jun 27 05:14:51 localhost kernel: x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
Jun 27 05:14:51 localhost kernel: x86/fpu: xstate_offset[3]: 960, xstate_sizes[3]: 64
Jun 27 05:14:51 localhost kernel: x86/fpu: xstate_offset[4]: 1024, xstate_sizes[4]: 64
Jun 27 05:14:51 localhost kernel: x86/fpu: Supporting XSAVE feature 0x01: 'x87 floating point registers'
Jun 27 05:14:51 localhost kernel: x86/fpu: Supporting XSAVE feature 0x02: 'SSE registers'
drush.phar pm-update --debug
Phar detected. Proceeding to drush_main().Loading drushrc "/root/.drush/drushrc.php" into "home.drush" scope. [0.01 sec, 2.93 MB] [bootstrap]
Cache HIT cid: 8.1.0-commandfiles-0-3dcf7bb1b4f2d6e67bd5dbb1ba490e38 [0.01 sec, 2.97 MB] [debug]
Bootstrap to phase 0. [0.09 sec, 6.17 MB] [bootstrap]
Bootstrap to phase 6. [0.09 sec, 6.17 MB] [bootstrap]
Drush bootstrap phase : bootstrap_drupal_root() [0.1 sec, 6.71 MB] [bootstra
@deajan
deajan / gist:5132423dc99139df45e2
Created September 4, 2015 11:57
regain-server-crawler
13:43:25: Retrying preparation of: file:///storage/papiers/OZY/VEHICULE/VEHICULE.2015-08-23T14-56-16Z_ocr.pdf
13:43:25: Marking old entry for a later deletion: file:///storage/papiers/OZY/VEHICULE/VEHICULE.2015-08-23T14-56-16Z_ocr.pdf from 20150823
13:43:26: Preparing file:///storage/papiers/OZY/VEHICULE/VEHICULE.2015-08-23T14-56-16Z_ocr.pdf with preparator net.sf.regain.crawler.preparator.PdfBoxPreparator failed
net.sf.regain.RegainException: Preparing file:///storage/papiers/OZY/VEHICULE/VEHICULE.2015-08-23T14-56-16Z_ocr.pdf with preparator net.sf.regain.crawler.preparator.PdfBoxPreparator failed
at net.sf.regain.crawler.document.DocumentFactory.createDocument(DocumentFactory.java:336)
at net.sf.regain.crawler.document.DocumentFactory.createDocument(DocumentFactory.java:251)
at net.sf.regain.crawler.IndexWriterManager.createNewIndexEntry(IndexWriterManager.java:749)
at net.sf.regain.crawler.IndexWriterManager.addToIndex(IndexWriterManager.java:732)
at net.sf.regain.cr