Thursday Release Party 62
taktile writes "I started the project about a week and a half ago after learning about Apple's ASCIIMoviePlayer. QuickASCII is an Open Source project to add improvements to Apple's player."
Another user writes, "There is a small group collaboration program called iStorm that is out. It anyone gets tired of severely delayed collaboration over the Internet, maybe he should try an almost telepathic experience with this program."
ludeyork writes "I just saw that BBEdit 7.0 has been released and it's got great new features." It's very cool, and by cool, I mean totally sweet. The CVS integration is worth the upgrade for me.
yuck72 writes "Apple has just released version 5.2 of its WebObjects application server. Improvements include better J2EE integration, easy tools for building SOAP-based web services and Java Webstart support. Applications can be deployed on any machine with a Java 1.3.1 compliant JVM. Apple's 'best-kept secret' really deserves more attention than it currently gets considering that it plays in the same league as Websphere and Weblogic." Oops, maybe I should have given it its own story.
Happy times are here again... (Score:5, Insightful)
Thanks for the good vibes. All this carping about Microsoft and the evil spying government gives us indigestion. (It's merely a question of proportions in the "omelette [slashdot.org].")
All are missing the one thing I need (Mac OS X) (Score:5, Interesting)
I know there are third party tools but I want the whole thing integrated.
If BB has it i'm dropping Dreamweaver and GoLive, if it doesn't it's wait as usual. Since I didn't see it I guess I'll keep waiting.
Re:All are missing the one thing I need (Mac OS X) (Score:2)
Re:All are missing the one thing I need (Mac OS X) (Score:5, Informative)
couldn't the user above tunnel their connections though?
Re:All are missing the one thing I need (Mac OS X) (Score:3, Informative)
Re:All are missing the one thing I need (Mac OS X) (Score:3, Informative)
Re:All are missing the one thing I need (Mac OS X) (Score:2)
OT: Right or wrong? (Score:1)
Re:OT: Right or wrong? (Score:2)
Thanks. I'll try them out. (Score:2)
However these look like good alternatives so I'll try them out. The frustrating thing is after buying MX Studio and the design collection (came with golive 6) it's sad they don't include this one small piece of functionality when they have so much shitty bloat in their applications.
Re:All are missing the one thing I need (Mac OS X) (Score:2, Informative)
Re:All are missing the one thing I need (Mac OS X) (Score:1)
I have a shell on all the servers I'm accessing, though, so YMMV.
I haven't used Dreamweaver for ages, but you used to be able to specify BBEdit as your text editor. If you can still do that, then you should be good to go.
The following is taken from the release notes:
"Additions
The following major features have been added in BBEdit 7.0:
Integrated access to CVS (Concurrent Versions System) allows you to transparently work with source files from multiple repositories. [Mac OS X]"
I would also recommend taking a look at BBEdit's command-line integration. There's a whole section on it in the BBEdit User Manual.
Re:All are missing the one thing I need (Mac OS X) (Score:3, Informative)
Re:All are missing the one thing I need (Mac OS X) (Score:5, Informative)
Re:All are missing the one thing I need (Mac OS X) (Score:1, Redundant)
I know you don't want to use third party tools, but for ssh is already installed and it's very easy to setup port forwarding. Heck, it's two lines of code in your ~/.ssh/config file (per host) and then tell Dreamweaver and GoLive to connect to localhost on whatever port ssh is listening. I'd say twenty seconds max to set it up. This is a very integrated solution that many people use for many things, it's not hacky at all.
BBEdit + MacSFTP (Score:2)
I live in MacSFTP and BBEdit all day.
Re:All are missing the one thing I need (Mac OS X) (Score:1)
so what is webobjects? (Score:2)
Re:so what is webobjects? (Score:5, Funny)
WebObjects is Web Applications done right. (Score:3, Interesting)
Ok, you can use WO in collaboration with the J2EE way of doing things. They have built in support for tomcat etc. I haven't used it, and you shouldn't either, though.
You see, WebObjects predates the web by a couple years-- it started out as EOF and enterirpise object foundation that allows you to deal with any RDMS as objects. When the web came about they added a webfrontend, and really did it right (The WOF).
Here's an example. I could create all of the functionality of slashdot, from scratch, including users, moderation, friend/foe, story posting, etc. in about 3 weeks. FROM SCRATCH. Oh, and it would have a hell of a lot better performance and scalability than slasdot has now.
When you want to list the comments on a story, that is merely a query on the DB passed to a repeating object, which has a template in HTML, and thus you have story comments- 20 minutes of work. The query handles ranking, the links are automagically generated, etc.
It simply is the easiest, most effective, and best product ever put out by Apple or anyone in the web applications / database backed website space.
It looses, just like the Mac did, because its competition is very difficult to implement, requires consultants, and the sell the $5 million with consultants included solution, and so everybody tries to sell that cause they get a huge markup. (And the companies that uses htese products never can get their sites updated in time, and thus we had part of what caused the dot-com crash.)
If you're doing any kind of a dynamic or DB backed website, you should learn WO-- at $700 its cheaper than anything that's not free, and if you include your time, its still a LOT cheaper than the free stuff.
It really is the best kept secret in apple's product line.
Re:WebObjects is Web Applications done right. (Score:3, Insightful)
That's a big fucking boast. WO is the bomb, but I'm not so sure you could write slash in 3 weeks, and I'm CERTAIN it would not have the same performance/scalability in that time.
The biggest problems (for WOSlash) that I can think of: memory & updates. Sure you could scale it up onto a few machines easily, but the instaneous updates between sessions on multiple machines is a tough act. I don't know slash code, but I think they fetch almost everything from the db almost all the time, and WO simply isn't really good at that. The fact that you can't easily use more than one DB connection from one app is gonna kill you, I think.
Slash is probably one of the heaviest used sites in the world, and it holds up really well. Consider:
Re:WebObjects is Web Applications done right. (Score:2)
No, WO does handle this. EOF can handle it, and it can distribute updates between the caches across many machines.
If
Course, its easier to start a site like this in perl or whatever, and grow it like crazy-- it would take 6 months to learn WO first if you didn't already know WO.
But once you did, you could do it. (I'm not taking into account time to create art, and content, just the code.)
Re:WebObjects is Web Applications done right. (Score:3, Interesting)
Pronoun trouble: if by 'this' you mean updating objects between sessions, then
If by 'this' you mean multiple connections to the DB from the same app, then no, WO does not do this out of the box.
Which isn't to say that it can't be done - I've seen it done at a previous job, but it wasn't pretty, and it wasn't clean, and it probaly didn't help them.
Yes, it can, but it does not out of the box. What's more, with the number of updates
If
I just don't believe that, as much as I'd like to. PERL is damn fast, and damn light. I gotta think that Java and WO add plenty of overhead just because it's OO. Which is great for dev and most applications, but generally means you do take a performance hit. Not a big one, but some.
But once you did, you could do it. (I'm not taking into account time to create art, and content, just the code.)
Are you also taking into account all the
Re:WebObjects is Web Applications done right. (Score:1)
Re:WebObjects is Web Applications done right. (Score:2)
Re:WebObjects is Web Applications done right. (Score:2)
And I've gone to the store during Macworld keynotes and seen sluggishness, but not "totally unresponsive"
That's the thing about net performance- everyone assumes its the site, when it may well be a MAE dropping packets on you.
Re:WebObjects is Web Applications done right. (Score:1)
Re:WebObjects is Web Applications done right. (Score:2)
Actually, I'm pretty clear on
"The site is being updated"
vs.
timeout messages
The former happens when they are updating. The latter happens after I've gotten in and am trying to do something.
Re:WebObjects is Web Applications done right. (Score:1)
Re:WebObjects is Web Applications done right. (Score:2, Insightful)
OK, I aggree with kwerle -- I think all that WO has gone to your head
I will say that the OSS world would do well to quit copying M$ for a while and take a look around at all of the great, relatively hidden, proprietary software out there. Every time I see JSP and Jakarta Struts, I think fondly about my short time as a WO programmer. If all you know is VB and ASP, maybe that stuff looks good, but anyone who's had time to get to know WO knows better
Now, WO isn't *that* great -- EOF is the real diamond there, and even it could use improvements.
The great part is that this technology is so transparent, so clean, that I imagine it should be fairly simple to re-implement as OSS. Perhaps this is what the Tapestry project is trying to do...
And yes, WO is cheap, but remember that free as in pretzels isn't the point. OSS means being able to develop a community that is committed and resillient. A lot of people have been burned by NextStep's demise and business decisions (to a certain extent justifiable) by Apple that have restricted software development for one reason or another.
Well, maybe with all of these hackers messing with OSX, the ideas in WO will finally make it into mainstream middleware...
Re:WebObjects is Web Applications done right. (Score:2)
(The latter even appears to have been backported to OS X [geocrawler.com].)
Anyone experienced with them?
BBEmacs?? (Score:5, Funny)
Re:BBEmacs?? (Score:1)
I heart bbedit (Score:2)
Damn; that sounded like a switch commercial, sorry. If it makes you feel any better, I never had emacs go BEEPBEEPBEEPBEEP....
forgot to add (Score:3, Informative)
But on the brighter side, back when I first ordered bbedit (version 3 I think it was, something like $50 at educational pricing) they sent me a free "Software That Doesn't Suck" T-shirt.
Re:I heart bbedit (Score:1)
The same, however, can not be said of vi
hmm (Score:1, Offtopic)
quickascii entrapment.mov
from the quickascii directory, with entrapment.mov in the same directory, and getting the following error - "quickascii: Command not found."
help?
Re:hmm (Score:1)
Why? Quickascii (and './') may not be in your path, so you must put
./ indeed (Score:2, Funny)
And to think, all it took to get you using the command line was a movie player for a terminal. Maybe you're just meant to be a GUI kind of guy?
Hey, will quickascii find it's way into emacs like 50% of the rest of the code in the known universe?
Re:hmm (Score:3, Informative)
There's a much easier way to do this:
"Don't use open, just make sure the file is in a directory on your path, then drag the file 'ASCIIMoviePlayer' to your terminal.app, next pull the movie you want to see onto the terminal and press return.
Tip: use a movie that is not too large, or reduce your terminal font very small.
Also, you get the best results by changing the Terminal window settings to white on black. "
Credit this trinket to: sao
http://forums.macosxhints.com/showthread.php
Re:hmm (Score:2)
iStorm: interesting, but... (Score:4, Funny)
Re:iStorm: interesting, but... (Score:2, Informative)
Although my mom made a big deal out of it, I've never really cared much when someone uses "me" where he should have used "I." On the other hand, for some reason (probably because I'm insane*), it is much more annoying when someone uses "I" where she should have used "me." A person is consciously making an extra effort to speak or write properly, and the effort is actually counterproductive. I am so incredibly lazy that I hate wasted effort, even when it is somebody else's wasted effort.
The real rule (or close enough for me, since I'm not an English major) is that "I" is used for the subject and "me" is used as an object. But since most confusion comes in plural situations, the following rule of thumb usually is enough to get by:
Remove the other person/thing/entity from the sentence, and the correct word will usually become obvious.
In the case above, get rid of the boss for a second. "What I really need is a program that allows [my boss and] I to do such and such..."
"I need a program that allows I to do such and such."
OR
"I need a program that allows me to do such and such."
Sorry for the rant.
* I've come to terms with my insanity. Why can't you?
---
If you must know, anal-retentive IS spelled with a hyphen.
Re:iStorm: interesting, but... (Score:2)
Re:iStorm: interesting, but... (Score:1)
Re:iStorm: interesting, but... (Score:2)
Re:When will they fix the mac problems? (Score:2)
Every single one of these "problems" is an area where pc weenies are stupid and sadled with a worse solution, but they THINK its better! And so they complain and complain and complain and complain.
Re:When will they fix the /windows/ problems? (Score:4, Insightful)
One button mouse.
Keyboards that none wants to use.
Paying for every service pack.
Overpriced hardware.
Mac zealots that hink that PCs only run Windows 95.
Slow processors.
Plunging share price.
Slow software updates.
Poor market share.
Bloated GUI.
Grinning idiots on Apple's homepage.
What about windoze problems?
* Inability to realise you can buy multi-button mice for $10.
* Keyboards with thousands of proprietry keys from thousands of manufacturers (a "check email" key, I mean really!).
* Having to deal with a buggy, broken OS that seems to develop more security holes with each patch applied.
* Inability to realise that 10.1 to 10.2 is like windoze 95 > windows 98. M$ didn't give you a copy of thier peice of shit OS for free did they?
* Users caught in the myth that a 50 GHz processor is useless if the rest of your hardware is rubbish.
* I don't own shares in Apple
* How does lower market share affect my productivity/enjoyment of Apple?
* Crayola GUI in latest OS. Bears more than a passing resemblance to a certain other OS with an X in the name. Copying again M$? tch tch.
* Stock photo idiots on M$'s homepage (remember M$'s supposed "switch" ad?)
* Having to use your own employees to promote your OS in a fake switch ad, since no one else will.
* Lacking a nice Unix core that has proved very useful to me in OSX.
Oh, and one last thing.
* Digital Rights Removal, errr, Digital Restrictions Management, err, no sorry Digital Rights Management.
BBEdit 7.0 First Look (Score:5, Interesting)
I've been using BBEdit 7 for about a day, especially testing out the CVS integration. It's really good, but there are some things I miss about MacCVS Pro.
- BBEdit lacks tag, edit, and watch commands.
- Although you can do some CVS operations in the BBEdit File Browser (and File Groups) you can't do certain operations when multiple files are selected (including "commit file" oddly).
- BBEdit doesn't show the status of files in the file browser, file groups, or in window headers. The only way to get revision information is to "Get CVS Status" and read a modal dialog.
- BBEdit's CVS operations tend to be slower than MacCVS, or seem so, because MacCVS is robustly threaded. BBEdit puts up modal "wait" dialogs every single time it has to contact the remote CVS server.
- If you're going to do secure CVS BBEdit requires you to set up one of SSH's auto-authentication methods (The whole "ssh-keygen -t dsa" rigamarole). Once the authentication is set up BBEdit's CVS integration is compatible with MacCVS, and the combination is much better than either one by itself.
- On the positive side, BBEdit's diff function was meant to be integrated with CVS. (BBEdit does the diff itself without using CVS's diff command.)
The geeks at BareBones have done a great job so far. They're doing the right thing by adding new features gradually, releasing just what works. Obviously they don't want to turn their editor into bloatware. Being able to checkin or diff without leaving BBEdit is a great bonus. If they are able to make BBEdit more threaded and add CVS features to the File Browser (and make it hierarchical for goodness sake!) I might finally be able to give up MacCVS Pro.
But not yet.
BBEdit overpriced? (Score:1)
Re:BBEdit overpriced? (Score:3, Interesting)
I've been a fan of BBEdit since I first touched BBEdit Lite in...what was it...1997? Even when I stopped using Macs for awhile (because I couldn't stand OS 8/9 and I wanted games) the one thing I really missed about MacOS was BBEdit, and version 6.5 was the first piece of software I bought when I got my iBook with OS X. I use BBEdit for everything text related, rom coding to word processing (I so much prefer it to MS Office). Nothing else compares. Emacs is a overly complicated, bloated, ugly piece of crap. vi is nice enough, but only if strictly necessary, and it doesn't have all the little features that BBEdit has. Pico is actually my preferred console text editor because it's nice and simple, and doesn't require a manual to learn how to use. But none of them stand up to BBEdit in my humble view. More than worth the money I paid for it. Worth double what I paid for it. Hell, I like BBEdit so much, I bought Mailsmith so I could use a BBEdit style interface for e-mail.
BBEdit. It (Still) Doesn't Suck.