Warning: session_start(): open(/tmp/sess_bvv5k3fh7l3m7d8ift8ceh6vc6, O_RDWR) failed: No space left on device (28) in /www/H01/htdocs/lib/base/lib_base.php on line 280
mathew's comments openDesktop.org
-
 KDE-Apps.org Applications for the KDE-Desktop 
 GTK-Apps.org Applications using the GTK Toolkit 
 GnomeFiles.org Applications for GNOME 
 MeeGo-Central.org Applications for MeeGo 
 CLI-Apps.org Command Line Applications 
 Qt-Apps.org Free Qt Applications 
 Qt-Prop.org Proprietary Qt Applications 
 Maemo-Apps.org Applications for the Maemo Plattform 
 Java-Apps.org Free Java Applications 
 eyeOS-Apps.org Free eyeOS Applications 
 Wine-Apps.org Wine Applications 
 Server-Apps.org Server Applications 
 apps.ownCloud.com ownCloud Applications 
--
-
 KDE-Look.org Artwork for the KDE-Desktop 
 GNOME-Look.org Artwork for the GNOME-Desktop 
 Xfce-Look.org Artwork for the Xfce-Desktop 
 Box-Look.org Artwork for your Windowmanager 
 E17-Stuff.org Artwork for Enlightenment 
 Beryl-Themes.org Artwork for the Beryl Windowmanager 
 Compiz-Themes.org Artwork for the Compiz Windowmanager 
 EDE-Look.org Themes for your EDE Desktop 
--
-
 Debian-Art.org Stuff for Debian 
 Gentoo-Art.org Artwork for Gentoo Linux 
 SUSE-Art.org Artwork for openSUSE 
 Ubuntu-Art.org Artwork for Ubuntu 
 Kubuntu-Art.org Artwork for Kubuntu 
 LinuxMint-Art.org Artwork for Linux Mint 
 Arch-Stuff.org Art And Stuff for Arch Linux 
 Frugalware-Art.org Themes for Frugalware 
 Fedora-Art.org Artwork for Fedora Linux 
 Mandriva-Art.org Artwork for Mandriva Linux 
--
-
 KDE-Files.org Files for KDE Applications 
 OpenTemplate.org Documents for OpenOffice.org
 GIMPStuff.org Files for GIMP
 InkscapeStuff.org Files for Inkscape
 ScribusStuff.org Files for Scribus
 BlenderStuff.org Textures and Objects for Blender
 VLC-Addons.org Themes and Extensions for VLC
--
-
 KDE-Help.org Support for your KDE Desktop 
 GNOME-Help.org Support for your GNOME Desktop 
 Xfce-Help.org Support for your Xfce Desktop 
--
openDesktop.orgopenDesktop.org:   Applications   Artwork   Linux Distributions   Documents    Linux42.org    OpenSkillz.com   
 
Home
Apps
Artwork
News
Groups
Knowledge
Events
Forum
People
Jobs
Register
Login

-
- mathew's profile .- Fan of  .- CV  .- Friends  .- Content (2) .- Latest Comments (13) . 
Re: pr0n on kde-look
Jun 7 2003  on Discussion

Yes, I agree.

Sadly, your language defeated the purpose of your message.

I also have been unsettled by the recent influx of pornographic images.

I would agree with Avatar that there should at least be a different section for such images.

.
Cool, but...
Jun 4 2003  on content Tux keyboard

It needs a bit of work. The keys still look grubby - see if you can clean them up a bit.

.
X11 may redone...
Mar 24 2003  on Discussion

Hmm,

Looks either a bright future for X, or else it's going to fade into nonexistence..

http://www.theregister.co.uk/content/4/29881.html

.
.
PowerPC KDE
Feb 8 2003  on poll How do you like KDE 3.1

I got it working finally - I formatted my HD, and installed SuSE just so I could see KDE 3.1 :-)

SuSE seems to have compiled it with an old version of libpng - The alpha channels are converted to masks before drawing, so window corners, and especially icons look very ugly.

What's the most up-to-date PPC Linux Distro? Gentoo takes far too much time to compile everything on my 400 G3.

YDL doesn't even have 3.1 packages yet...

.
.
Yeah I know...
Jan 29 2003  on content icns2png

I wasn't really expecting a reply either... But then... I did get one :D

Thought the techies might like to know that stuff, but then, this isn't exactly a devel forum.

I am already planning a kfile plugin, and also want kview to support the format.

I need a bit of input from some kde development savvy people.

E-mail me: mathew%bearca!.com (Obvious changes to address)

Expect 0.5 within the week...

-Mathew

.
.
Parsing resource...
Jan 28 2003  on content icns2png

...forks.

I found the problem - it is with a 3 byte int (!!??) in the mac os resource maps.

I think this should fix the rest of the problems people are having, so I will release 0.5 non beta as soon as I figure out how to read the 3 byte int on x86.

On a side note, if people are willing to give a little in donations, I am now willing to open source GPL. Think of the possibilities... :D

.
.
Resource maps
Jan 25 2003  on content icns2png

It is not parsing the resource maps on that icon set properly... I am looking into it.

.
.
Good call
Jan 23 2003  on content icns2png

Thanks for the gdb post... Good call on the filename char arrays.

It would technically die any time the new title was longer than the old one, since I allocated the old title's size for the new one.

This explains why some people thought you needed the .icns extension - It wouldn't segfault on the filenames.

I'll post a fixed version this afternoon.

.
segfaults
Jan 22 2003  on content icns2png

Any chance you could tell me which filenames you're converting, and mabye post a gdb run?

.
.
libc6
Dec 27 2002  on content icns2png

Luke,

Sorry I took so long to respond.

Could you clue be in a bit more?... I thought I had linked it with libc6. ( I built it on a borrowed RH 8.0 system )

Here is a copy of the essential parts of my Makefile:

------------------------------------
# Makefile for Icns2PNG, MacOS X / Linux
# Copyright (C) 2002 Mathew Eis

# version number
version=0.2b

# where make install puts icns2png
prefix=/usr/local

# Where the libpng and zlib library and include files are located
LPNGINC=libpng-1.2.5
ZLIBINC=zlib-1.1.4
LPNGLIB=libpng-1.2.5
ZLIBLIB=zlib-1.1.4

CC=c++

CFLAGS=-O -I$(LPNGINC) -I$(ZLIBINC)
CPPFLAGS=$(CFLAGS)
LDFLAGS=-L. -L$(LPNGINC) -L$(ZLIBLIB) -lpng12 -lz -lm
LDFLAGS_A=-L$(LPNGINC) -L$(ZLIBLIB) $(LPNGLIB)/libpng.a -lz -lm

OBJS = icns2png.o iconvert.o pngwriter.o byteswap.o

all: icns2png

test: icns2png
@cd test; rm -f OmniWeb.png Snow.png; \
if ../icns2png OmniWeb.icns Snow; then \
echo 'Icns2PNG test successful!'; \
else \
echo 'Icns2PNG test failed internal error'; \
fi; cd ..;

install: icns2png
install -m 755 -o root -g wheel icon2png $(prefix)/bin

release: icns2png test
@mkdir -p icon2png-$(version); \
cp icns2png icon2png-$(version); \
cp README icon2png-$(version); \
rm -f icon2png-$(version).tar; \
tar -cf icon2png-$(version).tar icon2png-$(version); \
rm -rf icon2png-$(version); \
echo 'Icns2PNG $(version) release package created.'; \
rm -f *.o;

icns2png: $(OBJS)
$(CC) -o icns2png $(CFLAGS) $(OBJS) $(LDFLAGS_A)

clean:
rm -f *.o icns2png
---------------------------

Let me know what to change for you.

.


Do you miss your friend here on the website?
Send an invitation email


Search people
Current visitors
New users
Birthdays
Most active users
Back



-



 
 
 Who we are
Contact
More about us
Frequently Asked Questions
Register
Twitter
Blog
Explore
Apps
Artwork
Jobs
Knowledge
Events
People
Updates on identi.ca
Updates on Twitter
Content RSS   
Events RSS   

Participate
Groups
Forum
Add Content
Public API
About openDesktop.org
Legal Notice
Spreadshirt Shop
CafePress Shop
Advertising
Sponsor us
Report Abuse
 

Copyright 2007-2016 openDesktop.org Team  
All rights reserved. openDesktop.org is not liable for any content or goods on this site.
All contributors are responsible for the lawfulness of their uploads.
openDesktop is a trademark of the openDesktop.org Team