• Gear
  • Shots
  • Photo Craft
  • Video
  • Wide Angle
  • Support
  • New Stuff
  • More
Support SmugMug APIs, Hacks & Tricks Houston we have upload !!!

FAQtoid

Ever wanted to create an Avatar? Creating an Avatar!

Searching Dgrin with Google Searching with Google

Dgrin Challenges

Congratulations to the Winner of DSS #128 (Sunrise or Sunset), ShootingStar.

The next Dgrin Challenge DSS #129 (Silhouette Revisited ) is open for entries through May 27th, 2013 at 8:00pm PDT.

As always, we look forward to your participation but please do take a moment to read through the rules before posting your entry.

Past DSS Challenge Winners, DSS Challenge Rules, and other important DSS Challenge information is here.

Need some help with Accessories?

Tutorials

Ever find yourself wondering just how someone managed to create an image using different effects?

Here are three simple tutorials we hope will encourage you to try something new.

The Hot Seat

A lifelong interest in landscape photography has led Eyal Oren to make a study of his adopted hometown of Marblehead, MA. As you can see, his dedication is paying off!

Africa!

Dgrinners Harryb, Pathfinder, and others joined Andy Williams and Marc Muench on Safari in East Africa recently. Here are some awesome threads to check out!

 
Thread Tools Display Modes
Old Mar-10-2005, 09:07 PM
#1
devbobo is offline devbobo OP
technicolored
devbobo's Avatar
Houston we have upload !!!


Finally got uploads working

David
__________________
David Parry
SmugMug API Developer
My Photos
Old Mar-11-2005, 05:13 AM
#2
Nikolai is offline Nikolai
Darth SLR
Nikolai's Avatar
Congratulations!
Quote:
Originally Posted by devbobo


Finally got uploads working

David
So, what was the main problem? Just curious..

Cheers!
__________________
"May the f/stop be with you!"
Star*Explorer: on Dgrin, home; Master Class: open;
Class is in session, My Facebook, @DarthSLR, #NiksTips
member: NAPP, PPA, partner: Adobe
Comprehending life, universe and everything - one pixel at a time
Old Mar-11-2005, 12:08 PM
#3
devbobo is offline devbobo OP
technicolored
devbobo's Avatar
Quote:
Originally Posted by Nikolai
So, what was the main problem? Just curious..

Cheers!
The main problem was understanding!!...i had to create the multi-part form data manually and i wasn't really sure how.

Gotta love the internet.
__________________
David Parry
SmugMug API Developer
My Photos
Old Mar-11-2005, 12:24 PM
#4
Nikolai is offline Nikolai
Darth SLR
Nikolai's Avatar
If it's any consollation to you
Quote:
Originally Posted by devbobo
The main problem was understanding!!...i had to create the multi-part form data manually and i wasn't really sure how.

Gotta love the internet.
Pretty much all SE xml/http stuff is done manually.
Hence under 600Kb exe, which is pretty fast, too:-).
Importing something like DOM as TLB (early binding) would make it possibly incompatible and bloated, doing late binding would make it slower..

Gotta get your hands dirty if you want the results:-)

Cheers!
__________________
"May the f/stop be with you!"
Star*Explorer: on Dgrin, home; Master Class: open;
Class is in session, My Facebook, @DarthSLR, #NiksTips
member: NAPP, PPA, partner: Adobe
Comprehending life, universe and everything - one pixel at a time
Old Mar-11-2005, 01:11 PM
#5
devbobo is offline devbobo OP
technicolored
devbobo's Avatar
All my other XML-RPC calls were done by using a standard interface that comes with Mozilla.

At present, my jar file is about 18KB, or about 100KB expanded. But I haven't done much optimisation.

David

Quote:
Originally Posted by Nikolai
Pretty much all SE xml/http stuff is done manually.
Hence under 600Kb exe, which is pretty fast, too:-).
Importing something like DOM as TLB (early binding) would make it possibly incompatible and bloated, doing late binding would make it slower..

Gotta get your hands dirty if you want the results:-)

Cheers!
__________________
David Parry
SmugMug API Developer
My Photos
Old Mar-11-2005, 03:46 PM
#6
Nikolai is offline Nikolai
Darth SLR
Nikolai's Avatar
18Kb jar
Quote:
Originally Posted by devbobo
All my other XML-RPC calls were done by using a standard interface that comes with Mozilla.

At present, my jar file is about 18KB, or about 100KB expanded. But I haven't done much optimisation.

David
Does it mean there has to be java support installed on the client's machine?
__________________
"May the f/stop be with you!"
Star*Explorer: on Dgrin, home; Master Class: open;
Class is in session, My Facebook, @DarthSLR, #NiksTips
member: NAPP, PPA, partner: Adobe
Comprehending life, universe and everything - one pixel at a time
Old Mar-11-2005, 11:04 PM
#7
onethumb is offline onethumb
SmugMug CEO & Chief Geek
onethumb's Avatar
Quote:
Originally Posted by Nikolai
Does it mean there has to be java support installed on the client's machine?
FYI, approximately 96.39% of those who browse smugmug have Java. So you're probably golden.

Don
Old Mar-12-2005, 09:33 AM
#8
Nikolai is offline Nikolai
Darth SLR
Nikolai's Avatar
Thank you!
Quote:
Originally Posted by onethumb
FYI, approximately 96.39% of those who browse smugmug have Java. So you're probably golden.
Don
Can I have you take a look at this issue, please?

Cheers!
__________________
"May the f/stop be with you!"
Star*Explorer: on Dgrin, home; Master Class: open;
Class is in session, My Facebook, @DarthSLR, #NiksTips
member: NAPP, PPA, partner: Adobe
Comprehending life, universe and everything - one pixel at a time
Old Mar-13-2005, 07:04 PM
#9
devbobo is offline devbobo OP
technicolored
devbobo's Avatar
I may be wrong here, but while jar files are typically related to java. A jar file is actually just an archive format like zip, cab, etc.

You can actually rename a jar with a zip extension and open it.

So for the stuff I am doing, no I don't think they need java support.

David


Quote:
Originally Posted by Nikolai
Does it mean there has to be java support installed on the client's machine?
__________________
David Parry
SmugMug API Developer
My Photos
Old Mar-13-2005, 07:20 PM
#10
Nikolai is offline Nikolai
Darth SLR
Nikolai's Avatar
Is it a windows/vb/.. script?
Quote:
Originally Posted by devbobo
I may be wrong here, but while jar files are typically related to java. A jar file is actually just an archive format like zip, cab, etc.

You can actually rename a jar with a zip extension and open it.

So for the stuff I am doing, no I don't think they need java support.

David
The reason I'm asking is that 100Kb of yours is a fairly small deployable. Unless you do it in K&R C-style (or console app), windows exes are usually pretty hefty..
The only option to do a lot of things in a such a small package is to rely on some sort of a runtime support (windows host, VBrun, Java, .NET, PHP, Perl, etc.) ...
Just curious..
__________________
"May the f/stop be with you!"
Star*Explorer: on Dgrin, home; Master Class: open;
Class is in session, My Facebook, @DarthSLR, #NiksTips
member: NAPP, PPA, partner: Adobe
Comprehending life, universe and everything - one pixel at a time
Old Mar-13-2005, 07:28 PM
#11
devbobo is offline devbobo OP
technicolored
devbobo's Avatar
Quote:
Originally Posted by Nikolai
The reason I'm asking is that 100Kb of yours is a fairly small deployable. Unless you do it in K&R C-style (or console app), windows exes are usually pretty hefty..
The only option to do a lot of things in a such a small package is to rely on some sort of a runtime support (windows host, VBrun, Java, .NET, PHP, Perl, etc.) ...
Just curious..
The reason why it's so small is that it's a Mozilla Firefox extension. So obviously it needs Mozilla Firefox installed, then it just uses javascript, xml and existing mozilla interfaces.

It's pretty cool stuff.

David
__________________
David Parry
SmugMug API Developer
My Photos
Old Mar-13-2005, 07:59 PM
#12
Nikolai is offline Nikolai
Darth SLR
Nikolai's Avatar
Oh, a plug-in..
Quote:
Originally Posted by devbobo
The reason why it's so small is that it's a Mozilla Firefox extension. So obviously it needs Mozilla Firefox installed, then it just uses javascript, xml and existing mozilla interfaces.

It's pretty cool stuff.

David
Gotcha
__________________
"May the f/stop be with you!"
Star*Explorer: on Dgrin, home; Master Class: open;
Class is in session, My Facebook, @DarthSLR, #NiksTips
member: NAPP, PPA, partner: Adobe
Comprehending life, universe and everything - one pixel at a time
Tell The World!  

Thread Tools
Display Modes

Posting Rules  
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump