<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
> <channel><title>knallisworld &#187; macosx</title> <atom:link href="http://www.knallisworld.de/blog/tag/macosx/feed/" rel="self" type="application/rss+xml" /><link>http://www.knallisworld.de/blog</link> <description>Where is the beef?</description> <lastBuildDate>Thu, 02 Feb 2012 23:10:07 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>Starten einer JAR unter Mac OSX &#8211; Bad version number?</title><link>http://www.knallisworld.de/blog/2009/05/08/starten-einer-jar-unter-mac-osx-bad-version-number/</link> <comments>http://www.knallisworld.de/blog/2009/05/08/starten-einer-jar-unter-mac-osx-bad-version-number/#comments</comments> <pubDate>Fri, 08 May 2009 11:26:58 +0000</pubDate> <dc:creator>knalli</dc:creator> <category><![CDATA[Diplomarbeit.. ftw!]]></category> <category><![CDATA[Java]]></category> <category><![CDATA[MacOS X]]></category> <category><![CDATA[Technik]]></category> <category><![CDATA[Tipps]]></category> <category><![CDATA[macosx]]></category> <guid
isPermaLink="false">http://www.knallisworld.de/blog/?p=696</guid> <description><![CDATA[Wir hatten dieses Thema bereits indirekt durch den ApplicationBundler im Beitrag vorletzter Woche besprochen.. aber hier nochmal zum eigentlichen Problem und dessen LÃ¶sung. Der Fehler verursacht die aktuell ausgewÃ¤hlte Java-Version (und das ist bei den meisten Leuten der Standard Java 1.5.0). Wenn jedoch die Jar mit Java 1.6 kompiliert wurde, kann der 1.5-Loader damit nichts [...]]]></description> <content:encoded><![CDATA[<p>Wir hatten dieses Thema bereits indirekt durch den ApplicationBundler im Beitrag vorletzter Woche besprochen.. aber hier nochmal zum eigentlichen Problem und dessen LÃ¶sung.</p><p>Der Fehler verursacht die aktuell ausgewÃ¤hlte Java-Version (und das ist bei den meisten Leuten der Standard Java 1.5.0). Wenn jedoch die Jar mit Java 1.6 kompiliert wurde, kann der 1.5-Loader damit nichts anfangen bzw. schÃ¼tzt aus naheliegenden GrÃ¼nden vor der AusfÃ¼hrung. Zwar ist auf Mac OS X System der Version 10.5 auch Java 1.6 installiert, dieses ist jedoch kein Standard.</p><p>Es gibt dafÃ¼r nun drei MÃ¶glichkeiten:</p><ol><li>Der Benutzer startet die JAR nicht mit Doppelklick bzw. dem Kommando &#8220;java -jar JarFile.jar&#8221; sondern mit der direkten Angabe im Frameworkverzeichnis.. diese LÃ¶sung ist inakzeptabel.</li><li>Der Benutzer stellt seine Default-JVM auf 1.6 um.. das machen die Entwickler eh, aber der Benutzer wird auch damit Ã¼berfordert sein. Auch keine akzeptable LÃ¶sung.</li><li>Man erstellt eine Mac-Application mit entsprechenden Application-Bootloader und einer Art Manifest, wo eingestellt wird, welche Java-Version verwendet werden muss. Damit findet sich Java 1.6 sogar dann, wenn man als Default 1.4 eingestellt hat. AuÃŸerdem hat es den positiven Nebeneffekt, dass die &#8220;technische&#8221; Jar vor dem Benutzer durch ein Anwendungsymbol kaschiert wird.</li></ol> ]]></content:encoded> <wfw:commentRss>http://www.knallisworld.de/blog/2009/05/08/starten-einer-jar-unter-mac-osx-bad-version-number/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Non-Java exception raised, not handled (Error creating CGSWindow)</title><link>http://www.knallisworld.de/blog/2009/05/07/non-java-exception-raised-not-handled-error-creating-cgswindow/</link> <comments>http://www.knallisworld.de/blog/2009/05/07/non-java-exception-raised-not-handled-error-creating-cgswindow/#comments</comments> <pubDate>Thu, 07 May 2009 15:18:14 +0000</pubDate> <dc:creator>knalli</dc:creator> <category><![CDATA[Aktuelles]]></category> <category><![CDATA[Java]]></category> <category><![CDATA[MacOS X]]></category> <category><![CDATA[cgswindow]]></category> <category><![CDATA[jung]]></category> <category><![CDATA[macosx]]></category> <guid
isPermaLink="false">http://www.knallisworld.de/blog/?p=687</guid> <description><![CDATA[Update: It seems that MacWidgets causes this problem. In the applications main frame I added the line If I disable (comment out) this line there will no exceptions. What a.. The structure of components: One Mainframe with BorderLayout (Toolbar, Sidebar and MainContent). The MainContent contains eventually the graph, the corresponding satellite component is in the [...]]]></description> <content:encoded><![CDATA[<p><strong>Update: It seems that <a
href="http://code.google.com/p/macwidgets/">MacWidgets</a> causes this problem.</strong> In the applications main frame I added the line</p><pre class="brush: java; title: ; notranslate">MacUtils.makeWindowLeopardStyle(getRootPane());</pre><p>If I disable (comment out) this line there will no exceptions. What a..</p><p>The structure of components: One Mainframe with BorderLayout (Toolbar, Sidebar and MainContent). The MainContent contains eventually the graph, the corresponding satellite component is in the sidebar.</p><p>Original post:</p><p>I had already posted about it <a
href="http://www.knallisworld.de/blog/2009/05/01/mac-os-x-non-java-exception-raised/#content">last week</a>. But now it seems that is was not a reasonable solution.</p><p>I have a java swing application which uses standard java swing elements and the jung2 graph framework visualizing graphs. The application is developed under java 1.6 and mac os x 10.5.6.</p><p>The actual problem is that since yesterday the AWT-Eventthread crashed, for example like this:</p><pre class="brush: plain; title: ; notranslate">Thu May 7 15:04:28 X.localdomain java[2002]Â : CGSResolveShmemReference : reference offset (65232) exceeds bounds (32768) on shmem obj 0x257e
Exception in thread &quot;AWT-EventQueue-0&quot; java.lang.RuntimeException: Non-Java exception raised, not handled! (Original problem: Error (1000) creating CGSWindow)
at apple.awt.CRenderer.doRect(Native Method)
at apple.awt.OSXSurfaceData.doRect(OSXSurfaceData.java:1247)
at apple.awt.CRenderer.fillRect(CRenderer.java:157)
at apple.awt.CRenderer.fillRect(CRenderer.java:145)
at sun.java2d.pipe.ValidatePipe.fillRect(ValidatePipe.java:58)
at sun.java2d.SunGraphics2D.fillRect(SunGraphics2D.java:2501)
at edu.uci.ics.jung.visualization.BasicVisualizationServer.renderGraph(BasicVisualizationServer.java:341)
at edu.uci.ics.jung.visualization.BasicVisualizationServer.paintComponent(BasicVisualizationServer.java:321)
at javax.swing.JComponent.paint(JComponent.java:1027)
at javax.swing.JComponent.paintChildren(JComponent.java:864)
at javax.swing.JComponent.paint(JComponent.java:1036)
at javax.swing.JComponent._paintImmediately(JComponent.java:5096)
at javax.swing.JComponent.paintImmediately(JComponent.java:4880)
at javax.swing.RepaintManager.paintDirtyRegions(RepaintManager.java:749)
at javax.swing.RepaintManager.paintDirtyRegions(RepaintManager.java:679)
at javax.swing.RepaintManager.seqPaintDirtyRegions(RepaintManager.java:659)
at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(SystemEventQueueUtilities.java:128)
at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:597)
at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:300)
at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:210)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:200)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:195)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:187)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)</pre><p>This happens in the event thread, so the application is &#8220;still&#8221; useable. Well, of course, the graph painting is a mess.</p><p>After googling, I found some solutions:</p><ol><li>Execute the file access rights (permissions)-fix via disk utilities &amp; reboot the maschine. Yes, this will fix the problem for some starts, but then.. what a dejavu.</li><li>Assure that the paint-process is not outside of the awt-thread.. yes it is. See trace. (Link <a
href="http://developer.apple.com/samplecode/simpleJavaLauncher/index.html#//apple_ref/doc/uid/DTS10000688">developer.apple.com</a>)</li><li>Exclude the SWT jar.. well, I do not use this and I have not include it. (Link <a
href="http://publicobject.com/2005/12/java-5-on-mac-crashing-burning-blame.html">publicobject.com</a>)</li><li>Use not the apple ui manager.. well, i replace the manager for the components of jung, i disabled my own selfwritten graph vertex renderer.. no changes. No less exceptions, nothing.</li></ol><p>Perhaps this could be an issue by jung, but..</p><ul><li>why only on this mac &#8211; but no error/exception on others systems like windows and linux? Also I have a 2 years older macbookpro.. no problem there.</li><li>why, or some time,  is there no problem after fixing the file access rights (permissions) and rebooting the machine?</li></ul><p>Currently, I have no solution.. the exeptions raises while painting the graph (which uses many paint()/Graphs objects ofc) moving/zooming it. I was able to catch some of the strange exceptions overriding the default visualizerviewer (by jung) and put in a small try-catch-wrapper of the corresponding method (here renderGraph). But other exceptions raised within javax.swing.Component and so on&#8230;</p><p>And.. how strange: the line</p><p>Thu May Â 7 15:04:28 X.localdomain java[2002] &lt;Warning&gt;: CGSResolveShmemReference : reference offset (65232) exceeds bounds (32768) on shmem obj 0x257e</p><div>is not an output by the java exception but from the failed native method. The numbers: 32768 (=2^15) and 65232 (2^16 -4). 64bit-problem?</div><p>I&#8217;m very appreciate if someone has an idea or solution.</p> ]]></content:encoded> <wfw:commentRss>http://www.knallisworld.de/blog/2009/05/07/non-java-exception-raised-not-handled-error-creating-cgswindow/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Colloquy vs. Linkinus</title><link>http://www.knallisworld.de/blog/2009/02/22/colloquy-vs-linkinus/</link> <comments>http://www.knallisworld.de/blog/2009/02/22/colloquy-vs-linkinus/#comments</comments> <pubDate>Sun, 22 Feb 2009 19:33:16 +0000</pubDate> <dc:creator>knalli</dc:creator> <category><![CDATA[Allgemeines]]></category> <category><![CDATA[Technik]]></category> <category><![CDATA[Vergleiche]]></category> <category><![CDATA[chat]]></category> <category><![CDATA[colloquy]]></category> <category><![CDATA[irc]]></category> <category><![CDATA[mac osx]]></category> <category><![CDATA[macosx]]></category> <guid
isPermaLink="false">http://www.knallisworld.de/blog/?p=650</guid> <description><![CDATA[Ich setze seit meiner Mac-Migration fÃ¼r IRC-Dinge das Programm Colloquy ein. Es ist einfach, kostenlos und frei (Open source) und mactypisch reinfach zu handhaben. Probleme tauchen auf, wenn man dann doch mal ein Feature haben will, die bei mIRC so selbstverstÃ¤ndlich waren. Aber nun gut, fÃ¼r den Alltag reicht&#8217;s. Nun gibt es einige, dass es [...]]]></description> <content:encoded><![CDATA[<p>Ich setze seit meiner Mac-Migration fÃ¼r IRC-Dinge das Programm <a
href="http://colloquy.info/">Colloquy</a> ein. Es ist einfach, kostenlos und frei (Open source) und mactypisch reinfach zu handhaben. Probleme tauchen auf, wenn man dann doch mal ein Feature haben will, die bei <a
href="http://www.mirc.com/get.html">mIRC</a> so selbstverstÃ¤ndlich waren. Aber nun gut, fÃ¼r den Alltag reicht&#8217;s.</p><p>Nun gibt es einige, dass es fÃ¼r diesen Fall ja <a
href="http://sourceforge.net/projects/xchataqua/">X-Chat Aqua</a> gibt. Das kostenlose und freie X-Chat Aqua ist dabei die Mac-Version von <a
href="http://www.xchat.org/">XChat</a>, also <span
style="text-decoration: line-through;">dem</span>einem IRC-Client fÃ¼r Linux/Unix &amp; Co. Eins ist sicher: Das Programm hat mit 99% Wahrscheinlichkeit das Feature und die Funktion, die man haben will. Aber es 0 Design. Es sieht nicht nur aus wie ein FremdkÃ¶rper, die GUI und BenutzerfÃ¼hrung ist scheiÃŸe und alles andere als &#8220;Mac&#8221;. Da kann man sich ja auch direkt XChat installieren.. jedes schlecht zusammengeschusterte Mac-Java-Programm sieht besser aus!</p><p>Eher zufÃ¤llig fand ich heute die Software <a
href="http://www.conceitedsoftware.com/products/linkinus">Linkinus</a>. Ebenfalls fÃ¼r Macs, sieht es im Gegensatz zu Colloquy sogar noch eine Idee besser aus und hat auch mehr FunktionalitÃ¤ten. Alleine das Menu der Einstellungen &#8211; aufgemacht wie die Systemeinstellungen &#8211; erschlÃ¤gt einen. Colloquy ist dagegen sehr.. dezent. Ein Minuspunkt ist sicherlich, dass Linkinus Geld kostet; mit 15 Euro (Studenten) ist man dabei. Sollte die Software sehr gut sein, kann man darÃ¼ber reden&#8230; aber ist sie das auch?</p><p>Ein Problem, was ich bei Colloquy habe: Bestehen mehrere parallele Verbindungen, so kann es durchaus passieren, dass sowohl Colloquy als auch der Benutzer &#8211; also ich &#8212; durcheinander kommt. Denn alle Channels und Queries landen in einer (!) gemeinsamen Liste. In der Regel funktionieren manuelle Queries, Joins, etc Ã¼ber die IRC-Befehle im Kontext der verknÃ¼pften Verbindung.. normalerweise. Mindestens einmal ist es mir aber schon passiert, das es durcheinander kam. In diesem Szenario hatte ich zwei unterschiedliche BNCs (Shroud), der /jump im zweiten Fenster lÃ¶ste einen Reconnect im ersten aus. Arg!</p><p>Hier ist Linkinus wesentlich besser organisiert, da alle Fenster nach Verbindung getrennt werden (zumindestens schon mal rein optisch).</p><p>Ein weiteres Problem: Enkodierung. Ich hatte lange Zeit UTF-8 eingestellt, aber leider sind die IRC&#8217;ler <span
style="text-decoration: line-through;">Windoofnutzer</span> ein paar HinterwÃ¤ndler, die per Standard einen Win-ISO-Code nutzen (wohl den *15?). Mittlerweile konnte ich Colloquy auch richtig einstellen, ich kann jetzt Sonderzeichen richtig senden &#8211; und lesen. Bei Linkinus wiederum kann man dies auch einstellen; wÃ¤hrend das Schreiben nun auch keine Probleme macht, kriegt das Lesen nicht hin: Es kommen bei bestimmten (wie ÃŸ) andere Zeichen an. Strange!</p><p>Das grÃ¶ÃŸe Manko an Linkinus ist aber, dass es einen einen kleinen, aber dennoch dummen Fehler hat: Farben &amp; Formatierungen. Ein IRC-Benutzer kann ja seine Nachricht farblich verÃ¤ndern, bzw. fett, kursiv, unterstrichen. UnterstÃ¼tzt man diese Formatierungen, so fÃ¼hren zusÃ¤tzliche Sonderzeichen ([, ]) dazu, dass aus Farben keine werden, WÃ¶rter verschwinden und ZeilenumbrÃ¼che eingefÃ¼hrt werden. Deaktiviert man diese Formatierungen, so gibt es naheliegenderweise keine Farben mehr; aber es fehlen aus unverstÃ¤ndlichen GrÃ¼nden Buchstaben der Nachricht. Mit Colloquy und X-Chat wiederum alles kein Problem.</p><p>Falls jemand ernsthafte Alternativen hat: Her damit. Meinen absoluten Wunschclient habe ich noch nicht.. bin eben nicht der Poweruser, aber bin auch kein IRC-Noob <img
src='http://www.knallisworld.de/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p> ]]></content:encoded> <wfw:commentRss>http://www.knallisworld.de/blog/2009/02/22/colloquy-vs-linkinus/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Wie man in MacOS X in der Finder-Sidebar resettet.</title><link>http://www.knallisworld.de/blog/2008/12/05/wie-man-in-macos-x-in-der-finder-sidebar-resettet/</link> <comments>http://www.knallisworld.de/blog/2008/12/05/wie-man-in-macos-x-in-der-finder-sidebar-resettet/#comments</comments> <pubDate>Fri, 05 Dec 2008 14:19:40 +0000</pubDate> <dc:creator>knalli</dc:creator> <category><![CDATA[Empfehlungen]]></category> <category><![CDATA[MacOS X]]></category> <category><![CDATA[Technik]]></category> <category><![CDATA[Tipps]]></category> <category><![CDATA[bug]]></category> <category><![CDATA[finder]]></category> <category><![CDATA[macosx]]></category> <guid
isPermaLink="false">http://www.knallisworld.de/blog/?p=568</guid> <description><![CDATA[Ich hatte das Problem, dass jeder Ã–ffnen und Speichern-Dialog neuerdings mehrere Sekunden brauchte, bis man etwas &#8220;machen&#8221; konnte. Zudem war die Liste der &#8220;Orte&#8221; (englisch: Places) Ã¼berfÃ¼llt mit Hunderten EintrÃ¤gen. Meine definierte Liste war etwa 15-20 Items lang, aber diese Liste wurde ein paar Mal wiederholt &#8211; strange. LÃ¶scht man die Datei ~/Library/Preferences/com.apple.sidebarlists.plist, loggt sich [...]]]></description> <content:encoded><![CDATA[<p>Ich hatte das Problem, dass jeder Ã–ffnen und Speichern-Dialog neuerdings mehrere Sekunden brauchte, bis man etwas &#8220;machen&#8221; konnte. Zudem war die Liste der &#8220;Orte&#8221; (englisch: Places) Ã¼berfÃ¼llt mit Hunderten EintrÃ¤gen. Meine definierte Liste war etwa 15-20 Items lang, aber diese Liste wurde ein paar Mal wiederholt &#8211; strange.</p><p>LÃ¶scht man die Datei ~/Library/Preferences/com.apple.sidebarlists.plist, loggt sich aus und wieder neu ein, so ist die Sidebar wieder aufgerÃ¤umt. Man muss allerdings die Places wieder neu einstellen und ggf. Tweaks wie das Ausblenden der iDisk reaktivieren.</p> ]]></content:encoded> <wfw:commentRss>http://www.knallisworld.de/blog/2008/12/05/wie-man-in-macos-x-in-der-finder-sidebar-resettet/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Speedup for Mac OSX</title><link>http://www.knallisworld.de/blog/2008/10/04/speedup-for-mac-osx/</link> <comments>http://www.knallisworld.de/blog/2008/10/04/speedup-for-mac-osx/#comments</comments> <pubDate>Sat, 04 Oct 2008 15:24:06 +0000</pubDate> <dc:creator>knalli</dc:creator> <category><![CDATA[Empfehlungen]]></category> <category><![CDATA[MacOS X]]></category> <category><![CDATA[Technik]]></category> <category><![CDATA[Tipps]]></category> <category><![CDATA[cache]]></category> <category><![CDATA[macosx]]></category> <category><![CDATA[onxy]]></category> <category><![CDATA[spotlight]]></category> <guid
isPermaLink="false">http://www.knallisworld.de/blog/?p=525</guid> <description><![CDATA[Boah, irgendwie war der Mac die letzte Zeit immer langsamer geworden.. Spotlight-Index neu aufbauen lassen. Boot-Cache und Kernel-Cache lÃ¶schen &#38; neustarten Und alles ist wieder fast so schnell wie am Anfang.. Wunderbar einfach mit Onxy.]]></description> <content:encoded><![CDATA[<p><img
class="size-full wp-image-526 alignright" title="onyx-leopard" src="http://www.knallisworld.de/blog/wp-content/uploads/2008/10/onyx-leopard.png" alt="" width="83" height="83" />Boah, irgendwie war der Mac die letzte Zeit immer langsamer geworden..</p><ol><li>Spotlight-Index neu aufbauen lassen.</li><li>Boot-Cache und Kernel-Cache lÃ¶schen &amp; neustarten</li></ol><p>Und alles ist wieder <span
style="text-decoration: line-through;">fast</span> so schnell wie am Anfang.. <img
src='http://www.knallisworld.de/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p><p>Wunderbar einfach mit <a
href="http://www.titanium.free.fr/pgs2/english/onyx_leopard.html">Onxy</a>.</p> ]]></content:encoded> <wfw:commentRss>http://www.knallisworld.de/blog/2008/10/04/speedup-for-mac-osx/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Firefox 3 Mac OS X Inline PDF!</title><link>http://www.knallisworld.de/blog/2008/07/10/firefox-3-mac-os-x-inline-pdf/</link> <comments>http://www.knallisworld.de/blog/2008/07/10/firefox-3-mac-os-x-inline-pdf/#comments</comments> <pubDate>Thu, 10 Jul 2008 20:40:11 +0000</pubDate> <dc:creator>knalli</dc:creator> <category><![CDATA[Allgemeines]]></category> <category><![CDATA[MacOS X]]></category> <category><![CDATA[Technologie/IT]]></category> <category><![CDATA[Tipps]]></category> <category><![CDATA[Was ich schon immer mal wissen wollte..]]></category> <category><![CDATA[Web]]></category> <category><![CDATA[download]]></category> <category><![CDATA[firefox]]></category> <category><![CDATA[macosx]]></category> <category><![CDATA[pdf]]></category> <guid
isPermaLink="false">http://www.knallisworld.de/blog/?p=443</guid> <description><![CDATA[Na endlich &#8211; mit diesem Plugin kann man PDFs nun auch im Firefox sofort im Browser angucken.]]></description> <content:encoded><![CDATA[<p>Na endlich &#8211; mit diesem <a
href="http://code.google.com/p/firefox-mac-pdf/">Plugin</a> kann man PDFs nun auch im <a
href="http://www.getfirefox.com">Firefox</a> sofort im Browser angucken.</p> ]]></content:encoded> <wfw:commentRss>http://www.knallisworld.de/blog/2008/07/10/firefox-3-mac-os-x-inline-pdf/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Time Machine Launcher</title><link>http://www.knallisworld.de/blog/2008/06/08/time-machine-launcher/</link> <comments>http://www.knallisworld.de/blog/2008/06/08/time-machine-launcher/#comments</comments> <pubDate>Sun, 08 Jun 2008 11:27:36 +0000</pubDate> <dc:creator>knalli</dc:creator> <category><![CDATA[Apple]]></category> <category><![CDATA[Downloads]]></category> <category><![CDATA[Empfehlungen]]></category> <category><![CDATA[MacOS X]]></category> <category><![CDATA[Technologie/IT]]></category> <category><![CDATA[dashboard]]></category> <category><![CDATA[macosx]]></category> <category><![CDATA[timemaschine]]></category> <category><![CDATA[widget]]></category> <guid
isPermaLink="false">http://www.knallisworld.de/blog/?p=430</guid> <description><![CDATA[Time Machine Launcher Mit diesem Widget kann man die TimeMaschine ein- und ausschalten, ohne in die Systemeinstellungen zu wechseln. AuÃŸerdem sind die Operationen &#8220;Jetzt sichern&#8221; und &#8220;TimeMaschine starten&#8221; mit einem Klick erreichbar.]]></description> <content:encoded><![CDATA[<p><img
class="alignnone size-full wp-image-429 alignright" style="float: right;" title="tm_widget_icon" src="http://www.knallisworld.de/blog/wp-content/uploads/2008/06/widget_icon.png" alt="" width="82" height="82" /></p><p><a
href="http://www.mathieuthouvenin.com/software/timemachinelauncher/">Time Machine Launcher</a></p><p>Mit diesem Widget kann man die TimeMaschine ein- und ausschalten, ohne in die Systemeinstellungen zu wechseln. AuÃŸerdem sind die Operationen &#8220;Jetzt sichern&#8221; und &#8220;TimeMaschine starten&#8221; mit einem Klick erreichbar.</p> ]]></content:encoded> <wfw:commentRss>http://www.knallisworld.de/blog/2008/06/08/time-machine-launcher/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Was man mit seinem Mac ja so alles kann</title><link>http://www.knallisworld.de/blog/2008/05/15/was-man-mit-seinem-mac-ja-so-alles-kann/</link> <comments>http://www.knallisworld.de/blog/2008/05/15/was-man-mit-seinem-mac-ja-so-alles-kann/#comments</comments> <pubDate>Wed, 14 May 2008 22:20:27 +0000</pubDate> <dc:creator>knalli</dc:creator> <category><![CDATA[Actually irrelevant!]]></category> <category><![CDATA[Apple]]></category> <category><![CDATA[MacOS X]]></category> <category><![CDATA[Technologie/IT]]></category> <category><![CDATA[mac]]></category> <category><![CDATA[macosx]]></category> <guid
isPermaLink="false">http://www.knallisworld.de/blog/?p=418</guid> <description><![CDATA[Das meiste kann ich ja, aber bei Punkt 3 hab ich dann wirklich &#8220;holy shit&#8221; gedacht Davon kann ich leider keinen Screenshot machen, da es scheinbar eine Art Overlay erzeugt..Â Link: Lifehacker Top 10: Top 10 Things You Forgot Your Mac Can Do]]></description> <content:encoded><![CDATA[<p>Das meiste kann ich ja, aber bei Punkt 3 hab ich dann wirklich &#8220;holy shit&#8221; gedacht <img
src='http://www.knallisworld.de/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> Davon kann ich leider keinen Screenshot machen, da es scheinbar eine Art Overlay erzeugt..Â</p><p>Link: <a
href="http://lifehacker.com/390226/top-10-things-you-forgot-your-mac-can-do">Lifehacker Top 10: Top 10 Things You Forgot Your Mac Can Do</a></p> ]]></content:encoded> <wfw:commentRss>http://www.knallisworld.de/blog/2008/05/15/was-man-mit-seinem-mac-ja-so-alles-kann/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Adium &#8211; Xtras &#8211; View Xtra: Adiumy Slashy</title><link>http://www.knallisworld.de/blog/2008/05/08/adium-xtras-view-xtra-adiumy-slashy/</link> <comments>http://www.knallisworld.de/blog/2008/05/08/adium-xtras-view-xtra-adiumy-slashy/#comments</comments> <pubDate>Wed, 07 May 2008 22:29:23 +0000</pubDate> <dc:creator>knalli</dc:creator> <category><![CDATA[Allgemeines]]></category> <category><![CDATA[Empfehlungen]]></category> <category><![CDATA[MacOS X]]></category> <category><![CDATA[adiumx]]></category> <category><![CDATA[macosx]]></category> <guid
isPermaLink="false">http://www.knallisworld.de/blog/?p=416</guid> <description><![CDATA[]]></description> <content:encoded><![CDATA[<p><img
class="alignnone size-full wp-image-417" title="adium-slashy" src="http://www.knallisworld.de/blog/wp-content/uploads/2008/05/adium-slashy.png" alt="" width="251" height="263" /></p> ]]></content:encoded> <wfw:commentRss>http://www.knallisworld.de/blog/2008/05/08/adium-xtras-view-xtra-adiumy-slashy/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Logitech LCC Scroller deaktiviert Growl</title><link>http://www.knallisworld.de/blog/2008/04/25/logitech-lcc-scroller-deaktiviert-growl/</link> <comments>http://www.knallisworld.de/blog/2008/04/25/logitech-lcc-scroller-deaktiviert-growl/#comments</comments> <pubDate>Fri, 25 Apr 2008 15:21:54 +0000</pubDate> <dc:creator>knalli</dc:creator> <category><![CDATA[Empfehlungen]]></category> <category><![CDATA[Gadgets]]></category> <category><![CDATA[MacOS X]]></category> <category><![CDATA[Technik]]></category> <category><![CDATA[Tipps]]></category> <category><![CDATA[Was ich schon immer mal wissen wollte..]]></category> <category><![CDATA[Apple]]></category> <category><![CDATA[growl]]></category> <category><![CDATA[logitech]]></category> <category><![CDATA[macosx]]></category> <guid
isPermaLink="false">http://www.knallisworld.de/blog/?p=412</guid> <description><![CDATA[Boah, das ist doch nicht wahr. Ich wunderte mich in letzter Zeit, wieso Growl nicht mehr funktionierte (hatte aber nie Lust, das Problem zu beheben). Jetzt hab ich herausgefunden.. Growl funktioniert &#8211; nur ein &#8220;LCC Scroller&#8221; verhindert die korrekte Anzeige. SchÃ¶ne ScheiÃŸe.. Abhilfe: Einfach das betreffende Minitool (inkl. Ordner) lÃ¶schen (Umbennen reicht scheinbar nicht). Siehe [...]]]></description> <content:encoded><![CDATA[<p><img
class="alignleft size-full wp-image-413" style="float: left;" title="growl" src="http://www.knallisworld.de/blog/wp-content/uploads/2008/04/growl.png" alt="" width="259" height="229" />Boah, das ist doch nicht wahr. Ich wunderte mich in letzter Zeit, wieso Growl nicht mehr funktionierte (hatte aber nie Lust, das Problem zu beheben). Jetzt hab ich herausgefunden.. Growl funktioniert &#8211; nur ein &#8220;LCC Scroller&#8221; verhindert die korrekte Anzeige. SchÃ¶ne ScheiÃŸe..</p><p>Abhilfe: Einfach das betreffende Minitool (inkl. Ordner) lÃ¶schen (Umbennen reicht scheinbar nicht).</p><p><a
href="http://www.meinneuermac.de/2008/03/21/logitech-control-center-stort-growl/">Siehe auch.</a></p> ]]></content:encoded> <wfw:commentRss>http://www.knallisworld.de/blog/2008/04/25/logitech-lcc-scroller-deaktiviert-growl/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
