circle.ch weblog by Urs Gehrig |
|
|
|
| Academic, Apache, Apple, Art, Best Of, Biotech, Civil Society, Content Management, Cooking, Copyright, Creative Commons, Crosspost, Culture, Database, Deutsch, DRM, Economy, Education, Event, Gadget, General, Geodata, Government, Health, Howto, Humor, Innovation, Intellectual Property, Java, Language, LaTeX, Law, Linux, Media, Moblog, Mozilla, Music, Office, Open Content, Open Source, P2P, PHP, Podcast, Politics, Privacy, Projects, Random Thought, Rant, Science, Search, Social Network, Software, Sport, Talks, Technology, Technology Transfer, Travelling, Weblog, Wiki, Wireless and Mobile, XML
|
|
22. April 2008
How to OCR multipage PDF files For reasons of simplicity the TIF files p00.tif to pXY.tif will get concatenated together to a single TIF file, that has the width of a single page and the height of XY pages. In such a way at least the order of the text or the text flow respectively will be preserved. But one could also concatenate a mosaic of all the TIF files. The density of 150 (dpi) gives reasonable results with tesseract. Comments (4) Permalink del.icio.us 03. October 2007
Adding header or footer information to existing PDF $ pdftk A=multipage.pdf cat A1 output multipage.1.pdf The commandline below takes the singlepage PDF at a resolution of 300dpi and resizes it to a percentage and then glues it to the header page, which is of the size A4. Resizing ensures, that the header information is always visible above the included singlepage: $ composite -density 300 multipage.1.pdf -resize 93% header.ps -compose bumpmap -gravity south out.pdf The header page could look like shown below: %!PS-Adobe-1.0 [1] http://www.lagotzki.de/pdftk/index.html#FAQ Comments (0) Permalink del.icio.us 02. March 2007
adfinis is hiring Zur Unterstützung unseres jungen Teams bei Neuprojekten und Wartung/Erweiterung von bestehenden Lösungen suchen wir per sofort eine/n PHP Entwickler/in mit Pensum nach Vereinbarung, ca. 80-100%.More details can be found on their blog [1]. [1] http://www.adfinis.com/node/177 Comments (0) Permalink del.icio.us 07. December 2005
Open Hardware - SUN opens up UltraSPARC processors At the Ingenieurschule Biel we used to work with Verilog and VHDL [3] and then implemented alorightms and microprocessor cores etc. in FPGA chips, as it has e.g. been done for the the so called "Gecko" project [4]. Verilog and FPGA are quite perfect for rapid prototyping and therefore of interest for research and development industries. [1] http://news.google.ch/news?q=open+sparc+sun [2] http://www.sun.com/smi/Press/sunflash/2005-12/sunflash.20051206.4.html [3] http://www.hta-bi.bfh.ch/E/Laboratories/Microelectronics/courses/vlsi/VLSIsystem.pdf [4] http://www.microlab.ch/pdf/Papers/soc01.pdf Comments (1) Permalink del.icio.us 22. November 2005
Attorney General of Texas takes action against Sony BMG [1] http://www.oag.state.tx.us/oagNews/release.php?id=1266 [2] http://nanocrew.net/2005/11/16/sony-drm-rootkit-saga/ [3] http://sam.zoy.org/blog/2005-11-18-the-fuss-about-sony-s-drm Comments (1) Permalink del.icio.us 31. October 2005
WW2D - Explore Earth the Open Source Way [1] http://ww2d.berlios.de/?Introduction Comments (0) Permalink del.icio.us 21. September 2005
OpenLaszlo Open Source development platform OpenLaszlo is the leading open source platform for the development and delivery of rich Internet applications on the World Wide Web.Although I read the first time of it today, it looks promising, at least if I have a look at the demo applications [1] and the "Laszlo-in-10-minutes" introduction [2]. [1] http://www.laszlosystems.com/demos/ [2] http://www.laszlosystems.com/lps/laszlo-in-ten-minutes/ Comments (1) Permalink del.icio.us 12. September 2005
Engagement bei LOTS/fossdays [1] http://fossdays.org/blog/ Comments (0) Permalink del.icio.us 12. August 2005
Fenice - Open Media Streaming Server [1] http://streaming.polito.it/server [2] http://streaming.polito.it/node/488 Comments (2) Permalink del.icio.us 22. June 2005
fossdays logo - public voting [1] http://www.fossdays.org/blog/2005/06/20/fossdays-logo-public-voting Comments (0) Permalink del.icio.us 19. May 2005
Freedom-Party in Berne [1] http://www.wilhelmtux.ch/cgi-bin/wiki/Freedom_Party [2] http://www.delicate.ch [3] http://www.emacswiki.org/cgi-bin/alex Comments (0) Permalink del.icio.us
Logo- und Design-Contest für fossdays [1] http://www.fossdays.org/blog/2005/05/01/logo-und-design-contest Comments (0) Permalink del.icio.us 06. May 2005
Beagle - Open Source Desktop Search [1] http://www.gnome.org/projects/beagle/ [2] http://mail.gnome.org/archives/dashboard-hackers/2005-January/msg00045.html Update - Nat Friedman's post on Beagle [3]: [3] http://www.nat.org/2005/january/#17-January-2005 Comments (1) Permalink del.icio.us 12. April 2005
Linux Konferenca Slovenia 2005 - Call for Papers [1] http://brian.kingsonline.net/talk/index.php/archives/41 [2] http://www.linux-konferenca.org Comments (1) Permalink del.icio.us 05. April 2005
Access to Desktop Search results DNKA is a search tool for remote computers. It acts as a web server by interacting as a layer between Google Desktop Search (GDS) and the user. It allows other users to search, view and download your files, emails, chats and web history.Basically it is wonderful; you get a full search access to the indexed content of a remote computer. IMHO this application should be filed under "As long as You know what You are doing.". I tried it out in an intranet and got full access to the root drive C:\. Then later on I found Baagle [2]. The principle is similar to the above but the tools are different. Baagle is a set of Perl scripts wrapped around the search engine Swish-e. Baagle provides a standalone webserver and an indexer. But compared to GDS it is up to you to configure and restrict the indexing to the data directories of your desire. If you like to figure out a similar solution with PHP have a look at the earlier mentioned nanoweb or nanoserv webserver built with PHP [3] and a Swish-e wrapper written in PHP [4]. Once decided to go for Swish-e (on Windows) you need a couple of tools to handle various file mime types, among others pdftotext, ps2ascii, antiword and one that I found today to convert Excel files to text, called xlhtml. Just search.ch for them ;) Well, now the only thing I could not find is a few lines of code to get a configurable search field to be integrated in the Windows task bar as we know it from GDS. Anyone up with a solution? [1] http://dnka.com [2] http://floatingsheep.com/baagle.html [3] http://nanoweb.si.kz [4] http://www.neokraft.net/articles/swish-e/ Comments (0) Permalink del.icio.us 29. March 2005
1. OpenGovernment Sprint Bern [1] http://www.opengovernment.ch/veranstaltungen/sprint1 Comments (2) Permalink del.icio.us 16. March 2005
Jahrbuch zu Open Source und Open Content [1] http://www.opensourcejahrbuch.de/2005/ Comments (1) Permalink del.icio.us 15. March 2005
Maguma Open Studio A PHP IDE that includes features for class browsing, ftp support, snippets, debugging and project management. The Open Source version of Maguma Studio.[1] http://sourceforge.net/projects/openstudio/ Comments (0) Permalink del.icio.us 16. February 2005
Tägliche Ration Open Source
Comments (0) Permalink del.icio.us 10. February 2005
Dev-Cpp - a C/C++ programming language IDE Bloodshed Dev-C++ is a full-featured Integrated Development Environment (IDE) for the C/C++ programming language. It uses Mingw port of GCC (GNU Compiler Collection) as it's compiler. Dev-C++ can also be used in combination with Cygwin or any other GCC based compiler.Wirklich beeindruckend. Eine FAQ dazu gibt es hier [3]. [1] http://meta.wikimedia.org/wiki/User:Magnus_Manske [2] http://www.bloodshed.net/devcpp.html [3] http://www14.brinkster.com/aditsu/dev-cpp-faq.html Comments (0) Permalink del.icio.us
Keinen Rappen für die Software [1] http://www.espace.ch/artikel_60343.html [2] http://www.lots.ch/2005/ Comments (1) Permalink del.icio.us 08. February 2005
OSDir.com about LOTS [1] http://osdir.com/Article4035.phtml Comments (0) Permalink del.icio.us 07. February 2005
LOTS event catalog online [1] http://www.technorati.com/tag/lots.ch [2] http://www.lots.ch/2005/Veranstaltungskatalog.html Comments (0) Permalink del.icio.us 27. January 2005
The agenda for the LOTS Event 2005 [1] http://www.lots.ch/2005/ProfessionalDay.html Comments (1) Permalink del.icio.us 03. January 2005
More Plone for Bern [1] http://www.bern.ch [2] http://www.bern.ch/impressum [3] http://www.lots.ch/2005/LOTS2005_Firmenaussteller.html?id=316 Comments (0) Permalink del.icio.us 16. December 2004
Media Portal vs. Media Center Edition 2005 From the Microsoft page: Windows XP Media Center Edition offers the best Windows experience in any room in your home, whether you’re looking for a family computer or to enhance your home theater. Enjoy integrated home entertainment experiences including photos, music, TV, and more. Connect with devices around the home and on the go that extend your entertainment.From the Media Portal page: Media Portal turns your PC in a very advanced Multi MediaCenter / HTPC. It allows you to listen to your favorite music & radio, watch your video's and DVD's, view, schedule and record live TV and much more. You get Media Portal for free/nothing/nada/noppes and best of all it is opensource. This means anyone can help developing Media Portal or tweak it for their own needs!Well, yes. They seem to be comparable from a users perspective. It is mostly about computer based entertainment. Mostly your eyes and ears are addressed ;) For further commenting those tools I will need to upgrade my whole PC hardware... which will last months I guess. ;) [1] http://mediaportal.sourceforge.net [2] http://www.microsoft.com/windowsxp/mediacenter/ Comments (1) Permalink del.icio.us 05. December 2004
Open Source Outlook MAPI connecter available The OpenConnector.Org Project aims to develop extensions for Microsoft Outlook® email and groupware client. These open-source extensions allow Microsoft Outlook®'s full functionality with email and calendar servers; including groupware servers other than Microsoft Exchange®.Otlkcon has been tested with Sapimapi [1]. The fun part of this project is that it (will/should) connect Outlook to the groupware server provided by OpenGroupware [3]. [1] http://sourceforge.net/projects/otlkcon/ [2] http://sourceforge.net/projects/sapimapi/ [3] http://opengroupware.org Comments (0) Permalink del.icio.us 02. December 2004
German Firefox Campaign ![]() [1] http://www.firefox-kommt.de/?q=node/40 Comments (0) Permalink del.icio.us 29. November 2004
Wyona Pictures presents FUD The documentary movie is not finished yet, but we are working hard to do so (We are currently transcribing the interviews which we have recorded during OSCOM 4 and ApacheCon 2004).I've observed problems while attempting to run the AVI file [2]. But mplayer for Windows solved them. Chregu offers a torrent file [3]. [1] http://wyonapictures.com [2] http://deje.uw.hu/getfile.php?file=mplayer_setup_0-18-0_fullcodecs.exe [3] http://trash.chregu.tv/fud_trailer.avi.torrent Comments (4) Permalink del.icio.us 27. November 2004
Open Source in der Stadt Bern Neben diesen positiven Aspekten ist allerdings zu beachten, dass die OpenSource Bewegung bis jetzt relativ wenig Innovationen hervorgebracht hat, die dem Nutzer/der Nutzerin neue Funktionalität bereitstellt.Insgesamt ist die Antwort aber sachlich fundiert und als ausgeglichen zu werten. Der Beschluss lautete wie folgt: Mit 51 : 0 Stimmen wird das Postulat überwiesen und gleichzeitig der Prüfungsbericht genehmigt.Das Postulat geht zurück auf Natalie Imboden und Martina Dvoracek vom Grünen Bündnis. [1] http://bern.ch/upload/sktp/protokolle/archive/20040311.pdf Comments (0) Permalink del.icio.us 19. November 2004
QEMU version 0.6.1 [1] http://www.qemu.org Comments (0) Permalink del.icio.us 11. November 2004
HTML to PDF [1] http://html2fpdf.sourceforge.net Comments (1) Permalink del.icio.us 05. November 2004
Bitflux is hiring [1] http://blog.bitflux.ch/archive/work-at-bitflux.html Comments (0) Permalink del.icio.us 29. October 2004
Sunbird Mozilla calendar [1] http://www.mozilla.org/projects/calendar/ Comments (0) Permalink del.icio.us 25. October 2004
Enscript on Windows Examples [1]:If no input files are given, enscript processes standard input. Enscript can be extended to handle different output media such as PostScript, HTML, RTF, ANSI, and overstrikes and it has many options which can be used to customize printouts. The GNU implementation of enscript is called genscript [2]. The example [1] using the -Whtml option did not work with my local enscript version though. But just make sure you get the most recent Windows binary [5]. [1] http://webinfo.ime.usp.br/util/enscript.html [2] http://people.ssh.com/mtr/genscript/ Update: Scott Young [3] found a way to highlight PHP using enscript. Try "enscript --help-pretty-print" to get an idea what languages are supported in your version of enscript. Find other examples on linuxdevcenter.com [4]. You might also have a look at a2ps [6]. [3] http://scott.yang.id.au/2003/01/source-code-syntax-highlighting-in-php/ [4] http://www.linuxdevcenter.com/lpt/a/142 [5] http://gnuwin32.sourceforge.net/packages/enscript.htm [6] http://www.inf.enst.fr/~demaille/a2ps Comments (0) Permalink del.icio.us 16. September 2004
LOTS 2005 - Call for Participation [1] http://lots.ch/2005 Comments (0) Permalink del.icio.us 12. September 2004
Open Database Transport Protocol [1] http://odbtp.sourceforge.net Comments (0) Permalink del.icio.us
FreePOPs to work with Gmail [1] http://freepops.sourceforge.net [2] http://www.lua.org [3] http://www.circle.ch/wiki/GmailFS Comments (0) Permalink del.icio.us 05. September 2004
Open Source Strategie beim Bund - das Sicherstellen der Gleichbehandlung von OSS und Closed Source Software (CSS) - das Anstreben der Wiederverwendbarkeit von eigenentwickelter Software - das Schaffen der Voraussetzungen für den Einsatz von Open Source Software Für die Bundesverwaltung soll erreicht werden, dass die Abhängigkeit von einzelnen Lieferanten verringert werden kann. Zudem bestehe dank der Gleichstellung von OSS und CSS eine größere Auswahl an Software. Zwischen den Zeilen gelesen bedeutet die Feststellung der Stossrichtung sowie die Zielsetzung des ISB, dass im Bereich OSS noch einiges an Lobby- und Überzeugungsarbeit geleistet werden muss [3], um schon nur die Gleichstellung sicherzustellen. Bezüglich der Wiederverwendbarkeit von eigenentwickelter Software wäre ein vom Bund gecoachtes CVS allenfalls prüfenswert; Software, die in der Bundesverwaltung eingesetzt wird, sei offenzulegen. [1] http://www.heise.de/newsticker/meldung/50640 [2] http://www.heise.de/newsticker/foren/go.shtml?list=1&forum_id=63973 [3] http://blog.li/mosi/2004/09/01/679.html Comments (0) Permalink del.icio.us 04. September 2004
ASF rejecting Sender ID "The Apache Software Foundation [2] has rejected the patent-encumbered Sender ID specification. This means no Sender ID support for SpamAssassin, Apache JAMES, etc. They state that the current license is generally incompatible with open source, and contrary to the practice of open Internet standards."Add-on: Debate on trust regarding Microsofts' Open Source plans [3]. [1] http://slashdot.org/article.pl?sid=04/09/02/1446229 [2] http://apache.org/foundation/docs/sender-id-position.html [3] http://weblogs.asp.net/jledgard/archive/2004/08/24/220028.aspx Comments (0) Permalink del.icio.us 15. August 2004
Designing labels with SVG and convert them to PDF with PHP FPDF [http://fpdf.org ] is quite a nice library for creating PDFs, however, the thought of hardcoding up all the locations in PHP, for all the text on both applications horrified me.That is how we implemented our label printing system for LOTS 2004. Positioning a few lines of text and an image is easily done with FDPF for "design once, use many" labels. [1] http://blog.akbkhome.com/blog/archives/26_PHP_SVG_and_PDFs.html [2] http://www.sodipodi.com [3] http://www.circle.ch/blog/p1396.html Comments (0) Permalink del.icio.us 11. August 2004
Nvu Web Authoring for Linux [1] http://www.nvudev.org Comments (0) Permalink del.icio.us 28. July 2004
Lookout for Outlook content License, Limited Warranty and CopyrightThis seems like the first Microsoft software licensed under an Apach license. [1] http://blog.li/trash/2004/07/27/564.html [2] http://www.lookoutsoft.com Comments (0) Permalink del.icio.us 15. July 2004
SQLite running as Client/Server [1] http://www.it77.de/sqlite/sqlite.htm [2] http://www.sqlite.org/cvstrac/wiki?p=ClientServer Comments (0) Permalink del.icio.us 17. May 2004
WiX - a Microsoft Open Source project on sourceforge.net [1] http://primates.ximian.com/~miguel/archive/2004/Apr-05.html [2] http://blogs.msdn.com/robmen/archive/2004/04/05/107709.aspx [3] http://sourceforge.net/projects/wix/ [4] http://www.opensource.org/licenses/cpl.php [5] http://www-106.ibm.com/developerworks/library/os-cplfaq.html Comments (0) Permalink del.icio.us
PearPC to rund OS X on Windows [1] http://pearpc.sourceforge.net [2] http://maconlinux.org Comments (0) Permalink del.icio.us 01. May 2004
SpamPal, ASK et. al. On the other hand you could change your mail policy and make use of a tool like Active Spam Killer [2]. ASK sends a confirmation message back to the unknown sender and keeps the mail pending until the (human) sender confirms the request. ASK is an Open Source solution. A similar service is available through Mailblocks [3]. [1] http://www.spampal.org/usermanual/clients/outlook2000/outlook2000.html [2] http://www.paganini.net/ask/ [3] http://www.mailblocks.com Comments (3) Permalink del.icio.us 27. March 2004
Inkscape - Open Source SVG Editor [1] http://inkscape.sourceforge.net [2] http://inkscape.sourceforge.net/cgi-bin/wiki.pl Comments (0) Permalink del.icio.us 20. March 2004
Ganttproject - Open source project management [1] http://ganttproject.sourceforge.net Comments (0) Permalink del.icio.us 18. March 2004
Rhythmbox - iTunes for Linux [1] http://www.rhythmbox.org Comments (0) Permalink del.icio.us 15. March 2004
1st OPCOSO Thinkathon The Organizing Team did a very good job on glue all the different discussions from people with variuos backgrounds together. While discussing, Gregor [3] wrote down the statements to the IRC channel, which was shown in realtime in the plenum. Sometimes this gave like two "parallel" discussions; I like that idea a lot. Please visit the OPCOSO website for a final summary. Unfortunately I could not stay later that 6 p.m. since my train took five hours back to Bern. Just to finish up; if you ever get the chance to attend such a Thinkathon [4]; go there! [1] http://www.opcoso.org/OpensourceGeschaeftsmodelle [2] http://www.opcoso.org/EventsThinkathonTuebingen2004Experten [3] http://greg.abstrakt.ch [4] http://www.circle.ch/blog/p1368.html Comments (0) Permalink del.icio.us 08. March 2004
OSS-Strategie der Bundesverwaltung [1] http://www.isb.admin.ch/internet/strategien/00665/01491/index.html?lang=de Comments (0) Permalink del.icio.us 04. March 2004
Japha - expandable implementation of Java in PHP [1] http://japha.xzon.net Comments (2) Permalink del.icio.us Fatal error: Maximum execution time of 120 seconds exceeded in /home/circle.ch/htdocs/blog/b2comments.php on line 184 | |