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
--[[ | |
This file is copyright (c) 2017 Michael Demetriou | |
It is free software: you can redistribute it and/or modify | |
it under the terms of the GNU General Public License as published by | |
the Free Software Foundation, either version 3 of the License, or | |
(at your option) any later version. | |
This file is distributed in the hope that it will be useful, | |
but WITHOUT ANY WARRANTY; without even the implied warranty of | |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
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
# © Michael Demetriou 2017 | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# This program is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of | |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
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 | |
#install glacier-cmd | |
#set up your ~./glacier-cmd file | |
#run this in a cron job | |
name=/home/user/backups/c.d-e.gr_$(date '+%y-%m-%d').tar.gz | |
mysqldump --lock-tables -h localhost -u dbuser -pdbpass, dbname > /home/owncloud/dbbackup/owncloud-sqlbkp.bak | |
tar czvf "$name" /home/owncloud | |
glacier-cmd upload c.d-e.gr $name |
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
c++ -o SVGViewElement.o -c -fvisibility=hidden -DMOZ_GLUE_IN_PROGRAM -DMOZILLA_INTERNAL_API -D_IMPL_NS_COM -DEXPORT_XPT_API -DEXPORT_XPTC_API -D_IMPL_NS_GFX -D_IMPL_NS_WIDGET -DIMPL_XREAPI -DIMPL_NS_NET -DIMPL_THEBES -DSTATIC_EXPORTABLE_JS_API -DNO_NSPR_10_SUPPORT -D_IMPL_NS_LAYOUT -I/home/qwazix/scratchboxenv/mozembed/mozilla-central/content/svg/content/src -I. -I../../../../dist/include -I/home/qwazix/scratchboxenv/mozembed/mozilla-central/objdir-armel/dist/include/nspr -I/home/qwazix/scratchboxenv/mozembed/mozilla-central/objdir-armel/dist/include/nss -I/home/qwazix/scratchboxenv/mozembed/mozilla-central/content/svg/content/src/../../../xml/content/src -I/home/qwazix/scratchboxenv/mozembed/mozilla-central/content/svg/content/src/../../../../dom -I/home/qwazix/scratchboxenv/mozembed/mozilla-central/content/svg/content/src/../../../base/src -I/home/qwazix/scratchboxenv/mozembed/mozilla-central/content/svg/content/src/../../../../layout/generic -I/home/qwazix/scratchboxenv/mozembed/mozilla-central/con |