The time now is Wed 19 Jun 2013, 13:38
All times are UTC - 4 |
|
Page 125 of 133 [1983 Posts] |
Goto page: Previous 1, 2, 3, ..., 123, 124, 125, 126, 127, ..., 131, 132, 133 Next |
| Author |
Message |
edoc

Joined: 07 Aug 2005 Posts: 3942 Location: Southeast Georgia, USA
|
Posted: Wed 22 Jun 2011, 14:01 Post subject:
Subject description: Fluppy 013 End-of-Life? |
|
Is Fluppy 013 the end of the line for development?
Just wondering.
_________________ Thanks! David
Home page: http://nevils-station.com
Don't google Search! http://duckduckgo.com
Multiple computers - currently running Puppy Exprimo ver. 5x15
|
|
Back to top
|
|
 |
edoc

Joined: 07 Aug 2005 Posts: 3942 Location: Southeast Georgia, USA
|
Posted: Wed 22 Jun 2011, 14:14 Post subject:
Batch Scaling Jpegs? Subject description: What method in Fluppy? |
|
I have several hundred large jpeg files I'd like to post online but need to reduce them to a manageable size.
Scaling them down one at a time is obviously not practical.
I read that ImageMagick has been compiled for Wary, but what about Fluppy?
http://bkhome.org/blog/?viewDetailed=01943
Or, other recommendations, please?
NOTE1: I do have GIMP, if there is a way to do this via GIMP ...
NOTE2: Picasa is not an option, even if it would work, as I won't load anything from the privacy-disrespecting google-thugs on my computers.
_________________ Thanks! David
Home page: http://nevils-station.com
Don't google Search! http://duckduckgo.com
Multiple computers - currently running Puppy Exprimo ver. 5x15
|
|
Back to top
|
|
 |
RetroTechGuy

Joined: 15 Dec 2009 Posts: 2303 Location: USA
|
Posted: Wed 22 Jun 2011, 14:56 Post subject:
Re: Batch Scaling Jpegs? Subject description: What method in Fluppy? |
|
| edoc wrote: | I have several hundred large jpeg files I'd like to post online but need to reduce them to a manageable size.
Scaling them down one at a time is obviously not practical.
I read that ImageMagick has been compiled for Wary, but what about Fluppy?
http://bkhome.org/blog/?viewDetailed=01943
Or, other recommendations, please?
NOTE1: I do have GIMP, if there is a way to do this via GIMP ...
NOTE2: Picasa is not an option, even if it would work, as I won't load anything from the privacy-disrespecting google-thugs on my computers. |
I use cjpeg and djpeg from the command line.
I typically make a copy of all the files, as I plan to overwrite them at the end (thus the original will be gone, and shrunk)
I typically write a script to do something like from the command line:
| Code: | djpeg -scale 1/8 -targa filein > filein.tga
cjpeg filein.tga > fileout.jpg |
This produces a targa file (high-res, uncompressed format) at 1/8 scale, then compresses it back to a .jpg format. I find I have minimal visual losses from decompression and recompression like this (noting that jpeg, being a lossy format, cannot decompress and recompress without loss).
So I use "find" to produce the list, and my text editor (mg) to create a macro, to turn the whole list into the script above. I suspect that our resident script-guy (Bruce) could whip it into a generic script, to compress all of the jpgs in a directory.
The 1/8 scale shrinks my 10MP camera photos to a decent size for posting -- adjust sizes to taste.
Now let me look to see where I found this bundle, and how I got it working under Puppy (btw I did this under 5.20).
I believe that I may have used this .pet (I found a copy of it in my software collection):
http://murga-linux.com/puppy/viewtopic.php?p=297770#297770
Edit: You can also do batch file processing with XNView (I just tried it with the older XnView MP 0.26). The .sfs is here (add through bootmanager to install, and reboot):
http://murga-linux.com/puppy/viewtopic.php?t=52508
Pemasu has created a combined .sfs in the last link.
_________________ Wellminded Search
Add swapfile
|
|
Back to top
|
|
 |
edoc

Joined: 07 Aug 2005 Posts: 3942 Location: Southeast Georgia, USA
|
Posted: Thu 23 Jun 2011, 11:20 Post subject:
Subject description: Slide Show? |
|
That worked perfectly! Thanks!!!
The next step in the process - now that I have 709 pictures from our recent VBS, batch-reduced to 800x600 ...
I'd like to stuff them into a simple slide show that is 'clickable'.
I found this code:
http://www.javascriptkit.com/howto/show3.shtml
The problem is that it uses specific names and I don't want to get into manually labeling every image!
Can I use a wild-card "*" for the name in code like this?
Or do I have to use another method to build a slide show that uses whatever images it finds in the folder?
I want to avoid anything proprietary like Silverlight.
Thanks!
_________________ Thanks! David
Home page: http://nevils-station.com
Don't google Search! http://duckduckgo.com
Multiple computers - currently running Puppy Exprimo ver. 5x15
|
|
Back to top
|
|
 |
RetroTechGuy

Joined: 15 Dec 2009 Posts: 2303 Location: USA
|
Posted: Thu 23 Jun 2011, 12:33 Post subject:
Subject description: Slide Show? |
|
| edoc wrote: | That worked perfectly! Thanks!!!
The next step in the process - now that I have 709 pictures from our recent VBS, batch-reduced to 800x600 ...
I'd like to stuff them into a simple slide show that is 'clickable'.
I found this code:
http://www.javascriptkit.com/howto/show3.shtml
The problem is that it uses specific names and I don't want to get into manually labeling every image!
Can I use a wild-card "*" for the name in code like this?
Or do I have to use another method to build a slide show that uses whatever images it finds in the folder?
I want to avoid anything proprietary like Silverlight.
Thanks! |
I know a friend of mine had set his Linux system to roll backgrounds, but don't recall how he did it.
Searching the Murga list for photo slideshow, I found this:
http://www.murga-linux.com/puppy/viewtopic.php?p=398667#398667
More hits for the term:
http://www.google.com/cse?cx=015995643981050743583%3Aabvzbibgzxo&q=photo+slideshow&sa=Search&cof=FORID%3A0
Also, many of the photo viewers are capable of slideshows (I believe that XNView will do it)
_________________ Wellminded Search
Add swapfile
|
|
Back to top
|
|
 |
edoc

Joined: 07 Aug 2005 Posts: 3942 Location: Southeast Georgia, USA
|
Posted: Thu 23 Jun 2011, 12:53 Post subject:
|
|
Thanks!
I need something in the HTML, e.g. the Java, that any browser out there can handle.
_________________ Thanks! David
Home page: http://nevils-station.com
Don't google Search! http://duckduckgo.com
Multiple computers - currently running Puppy Exprimo ver. 5x15
|
|
Back to top
|
|
 |
edoc

Joined: 07 Aug 2005 Posts: 3942 Location: Southeast Georgia, USA
|
Posted: Thu 23 Jun 2011, 13:05 Post subject:
|
|
Here's another Java-based example:
http://www.codelifter.com/main/javascript/slideshow2.html
But it also requires hard-coding the individual image names.
This sounds possible but I am confused by the "S5" thing ...
http://meyerweb.com/eric/tools/s5/
This CSS-only solution sounds promising, but I had not been planning to bother with thumbnails at this point:
http://www.erdinc.net/image_enlarge/
This one uses PHP, which is available on the server, but I don't know if it is OK for all kinds of browsers ... WDYT?
http://askmichel.icoder.com/2006/08/21/simple-photo-album-slide-show-generator/
This says the code "adds slides dynamically" - will that work?
http://malsup.com/jquery/cycle/add.html?v2
_________________ Thanks! David
Home page: http://nevils-station.com
Don't google Search! http://duckduckgo.com
Multiple computers - currently running Puppy Exprimo ver. 5x15
|
|
Back to top
|
|
 |
RetroTechGuy

Joined: 15 Dec 2009 Posts: 2303 Location: USA
|
Posted: Thu 23 Jun 2011, 14:00 Post subject:
|
|
| edoc wrote: | Thanks!
I need something in the HTML, e.g. the Java, that any browser out there can handle. |
I don't know anything about Java, but a quick Google for "browser based photo slideshow" turns up a number of hits:
http://www.google.com/search?q=browser%20based%20photo%20slideshow&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a&source=hp&channel=np
How about cribbing from something like this:
http://panmental.de/public/programming_projects/Slideshow%20script%20in%20PHP/
_________________ Wellminded Search
Add swapfile
|
|
Back to top
|
|
 |
edoc

Joined: 07 Aug 2005 Posts: 3942 Location: Southeast Georgia, USA
|
Posted: Thu 23 Jun 2011, 14:21 Post subject:
|
|
This looks very interesting ...
Are iframes compatible across all browsers?
From his text it appears as if that is so:
"To the best of my knowledge this is the first free single script solution that fades in and out of images and supports all newer browsers (IE 5.5+, Mozilla Firefox 1+, Opera 6+, Safari...)"
Thanks!
_________________ Thanks! David
Home page: http://nevils-station.com
Don't google Search! http://duckduckgo.com
Multiple computers - currently running Puppy Exprimo ver. 5x15
|
|
Back to top
|
|
 |
jemimah

Joined: 26 Aug 2009 Posts: 4309 Location: Tampa, FL
|
Posted: Thu 23 Jun 2011, 15:11 Post subject:
Subject description: Fluppy 013 End-of-Life? |
|
| edoc wrote: | Is Fluppy 013 the end of the line for development?
Just wondering. |
Maybe. Probably until I get another job where I'm chained to a desk with nothing to do.
|
|
Back to top
|
|
 |
edoc

Joined: 07 Aug 2005 Posts: 3942 Location: Southeast Georgia, USA
|
Posted: Thu 23 Jun 2011, 15:34 Post subject:
|
|
Well, we sure appreciate 013 - it has been solid and well-supported with no need to look elsewhere.
I am happy for you that you are employed, albeit not where development is practical, many of us out here would like to find work in this politician-caused
long-term recession.
_________________ Thanks! David
Home page: http://nevils-station.com
Don't google Search! http://duckduckgo.com
Multiple computers - currently running Puppy Exprimo ver. 5x15
|
|
Back to top
|
|
 |
maxpro4u

Joined: 19 Jun 2010 Posts: 290 Location: Rittman,Ohio,USA, In dog years,I'm dead
|
Posted: Thu 23 Jun 2011, 23:41 Post subject:
Subject description: Fluppy 013 End-of-Life? |
|
| jemimah wrote: | | edoc wrote: | Is Fluppy 013 the end of the line for development?
Just wondering. |
Maybe. Probably until I get another job where I'm chained to a desk with nothing to do. |
I hope you get one soon
_________________ Dell D610 1.7M w/1024mb
Testing Slacko and a few others
I'm Max Wachtel and I approve this message.
Registered Linux User #393236
|
|
Back to top
|
|
 |
yerc1
Joined: 09 Jan 2009 Posts: 51
|
Posted: Fri 24 Jun 2011, 18:52 Post subject:
Subject description: Fluppy 013 End-of-Life? |
|
| jemimah wrote: | | edoc wrote: | Is Fluppy 013 the end of the line for development?
Just wondering. |
Maybe. Probably until I get another job where I'm chained to a desk with nothing to do. |
Fluppy has been the best OS driving my netbook.
I can't thank you enough for the fantastic experience.
All the best for you Jemimah!
|
|
Back to top
|
|
 |
Volhout

Joined: 28 Dec 2008 Posts: 244
|
Posted: Tue 28 Jun 2011, 02:02 Post subject:
Continue Subject description: Fluppy 013 End-of-Life? |
|
Jemimah,
Can you think about asking someone else (TUUXXXX / TechnoSaurus / Bigpup, Barry ??) to start supporting Puppeee. It is such a pitty that soo close to the end, the project stalled. Many of the questions on the forum get an answer, but there are some things that need specialist involvement:
- some nasty bugs
- updating the puppeee pet store from 1.0 to current
You worked soo hard to get it to this level. Please make sure it gets finished !
Volhout
| jemimah wrote: | | edoc wrote: | Is Fluppy 013 the end of the line for development?
Just wondering. |
Maybe. Probably until I get another job where I'm chained to a desk with nothing to do. |
|
|
Back to top
|
|
 |
Volhout

Joined: 28 Dec 2008 Posts: 244
|
Posted: Wed 29 Jun 2011, 02:46 Post subject:
Frisbee problem Subject description: on Puppeee 44 RC2 |
|
I post this here since fluppy 013 is very similar to puppeee, and since jemimah is out, there may be someone here to help me.
I am running Puppeee 44RC2 since release on a eee pc 1001ha. Originally from SD card. I have noticed that after a while intensive use on WIFI poluted area's (airport area) Frisbee stopped connecting. It was a test phase and I had several configurations stored (hotel, airport, home, work, other hotel, the neighbours wifi, clients office etc... At that time I needed the netbook, and I re-installed Puppeee on the SATA SSD (frugal install) but lost all diagnosics of what went wrong.
After running Puppeee from SSD for almost 2 months, the problem pops up again. This time I had 10 networks in my configuration list. I have been trying for a while to get it working again, but no luck yet. Observations:
- Frisbee scans the area correct. All networks are valid networks for the area (so wireless works). When a new encrypted network is connected, it automatically asks the question for the key. So there is wireless communication.
- Frisbee requests a IP adress, but in stead of "xxx.yyy.zzz.aaa" received the popup "wlan0 down" response comes all the time.
- Enable-ing wlan0 via the rightclick on the wlan tray item results in a double wlan0 down popup.
- Enabling wlan0 via F2 gives no result at all (the blue LED goes on and off, but no popups).
- When I try to edit the WPA configuration file (just tried....) I cannot save the file.
- I tried removing all wpa configurations except the current one, but no luck.
- I set the priority of the current one to 1 (was at 10 due to the long list I assume), no luck.
- My save file is only 1/3 used, so I don't have a storage problem.
- I installed Barry's SNS 2.1 ... just to try if it helps, and it gives at startup no name for the driver used for wireless (see attached). From there I tried to reinstall the driver "load driver" in puppeee network setup, pointing to the RT3090.BIN in /lib/firmware/, but it says "no new devices found". I think it also conflicts with the fact that network scan works.
- puppeee Network setup also shows there is no driver installed (see attached).
Is there anyone who can help me to get wlan0 working again. I am 100% sure that re-installing puppeee wil solve the problem, but I would rather remove some WIFI config files, and keep the rest of my save file. I have customized puppeee and installed a lot of stuff.
Regards,
Volhout
*********** last update **************
I rebooted the netbook from USB with the same puppeee 44RC2 install, used the save file from the SSD (the failing install) and nthat seems to work. Then I rebooted from SSD with the USB stick removed, and now the SSD install also seems to work again. Seems like the USB boot repaired something at either power up, or power down.
I'll do some more testing to find out if I get a clue.
***********************************
 |
| Description |
|

Download |
| Filename |
puppeee_status_wifi.jpg |
| Filesize |
109.52 KB |
| Downloaded |
116 Time(s) |
| Description |
|

Download |
| Filename |
puppeee_driver_not_loaded.jpg |
| Filesize |
115.69 KB |
| Downloaded |
100 Time(s) |
| Description |
|

Download |
| Filename |
SNS_no_driver.jpg |
| Filesize |
101.47 KB |
| Downloaded |
109 Time(s) |
|
|
Back to top
|
|
 |
|
|
Page 125 of 133 [1983 Posts] |
Goto page: Previous 1, 2, 3, ..., 123, 124, 125, 126, 127, ..., 131, 132, 133 Next |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|