Join the Facebook Group to discuss the tutorials. You can view the archives here.
To watch now, click on the image below:
If you have trouble viewing that directly, you can click here to download the video directly. If you need the video in a Windows Media format, then download that here.
Between the patent trolls and the lawyers they employ, vast sums of money that could be going into something productive are instead doing two value free things:
Defending (or paying off) against bogus patent claims
Building up a MAD style array of patents to use as defensive weapons
In the smartphone market alone, $15-20 billion has already been spent by technology companies on building defenses, says Stanford Law School professor Mark Lemley. For example, Google bought Motorola Mobility for $12.5 billion—mostly for its patents. An Apple-Microsoft-Oracle-Nokia consortium bought Nortel’s patent portfolio for $4.5 billion. Microsoft bought Novell’s patent portfolio for $450 million and some of AOL’s patents for $1 billion. Facebook bought some of Microsoft’s new AOL patents for $550 million. Lemley estimates that more than $500 million has been squandered on legal fees—and battles are just beginning. This is money that could have been spent, instead, on R&D.
The only ones who are making out under the current system are the lawyers, and they are parasitically feasting at the trough. It's time to get rid of software patents. Don't reform them; kill them dead.
Today's Smalltalk 4 You looks at utilizing OCX controls in WindowBuilder Pro (VA Smalltalk) - we've already looked at using them via the Composition Editor. If you have trouble viewing it here in the browser, you can also navigate directly to YouTube. To watch now, click on the image below:
If you have trouble viewing that directly, you can click here to download the video directly. If you need the video in a Windows Media format, then download that here.
You can also watch it on YouTube:
Today we'll use WindowBuilder Pro to embed an OCX control into a VA Smalltalk window. Obviously, this support is limited to Windows. To get started, select the OLE controls in the palette, and then select the control:
Double click on the widget to bring up properties; it might take a moment, depending on what you have installed. In clientName, select the control you want to use - the list will vary based on what you have installed on your windows machine. Here, we've selected the Windows Media Player:
To see it work, put in an url for playable media (Video or audio):
Unlike the composition editor, the embedded player starts operating on what you entered immediately. You can also test it:
Need more help? There's a screencast for other topics like this which you may want to watch. Questions? Try the "Chat with James" Google gadget over in the sidebar.
Join the Facebook Group to discuss the tutorials. You can view the archives here.
To watch now, click on the image below:
If you have trouble viewing that directly, you can click here to download the video directly. If you need the video in a Windows Media format, then download that here.
The USFL is back, and it looks like they intend to run it as a minor league. Maybe if it takes off, colleges could get away from football and back to, you know, academics....
Today's Smalltalk 4 You looks at the upgrades to code completion in VA Smalltalk 8.5.1. If you have trouble viewing it here in the browser, you can also navigate directly to YouTube. To watch now, click on the image below:
If you have trouble viewing that directly, you can click here to download the video directly. If you need the video in a Windows Media format, then download that here.
You can also watch it on YouTube:
Today we'll go back to code completion in VA Smalltalk - there have been a lot of improvements in the 8.5.1 release. When the video from STIC 2012 is released (check the conference pages regularly), you should definitely watch it. In the meantime, let's open up a workspace and have a look. Notice that we've defined our variables as temps; the code completion support relies on having a valid compilation environment. If you don't have that, you won't see suggestions:
One of the niftier new things is camel case support. Try typing in RWS - you should see suggestions immediately, although you can always hit ctrl-space to get them:
The new support is smart enough to split on the case changes, and match RWS to ReadWriteStream. What's really nice is that it also works for keyword messages, splitting both on case and colons. Try creating an OrderedCollection and then entering aai:
Notice that it matched for messages in the collection hierarchy - the support takes note of the compilation environment, and uses it to give you better answers.
Need more help? There's a screencast for other topics like this which you may want to watch. Questions? Try the "Chat with James" Google gadget over in the sidebar.
Welcome to episode 77 of Independent Misinterpretations - a Smalltalk and dynamic language oriented podcast with James Robertson and David Buck.
This week Dave and I wrap up our discussion of Smalltalk history - a topic Dave has been doing some research on lately. Dave recommends this PDF if you want to look into this history yourself. Yu can find part 1 of this discussion here.
You can subscribe to the podcast in iTunes (or any other podcatching software) using this feed directly or in iTunes with this one.
To listen now, you can either download the mp3 edition, or the AAC edition. The AAC edition comes with chapter markers. You can subscribe to either edition of the podcast directly in iTunes; just search for Smalltalk and look in the Podcast results. You can subscribe to the mp3 edition directly using this feed, or the AAC edition using this feed using any podcatching software. You can also download the podcast in ogg format.
If you like the music we use, please visit Josh Woodward's site. We use the song Troublemaker for our intro/outro music. I'm sure he'd appreciate your support!
If you have feedback, send it to jarober@gmail.com - or visit us on Facebook - you can subscribe in iTunes using this iTunes enabled feed.. If you enjoy the podcast, pass the word - we would love to have more people hear about Smalltalk!
Welcome to episode 77 of Independent Misinterpretations - a Smalltalk and dynamic language oriented podcast with James Robertson and David Buck.
This week Dave and I wrap up our discussion of Smalltalk history - a topic Dave has been doing some research on lately. Dave recommends this PDF if you want to look into this history yourself. Yu can find part 1 of this discussion here.
You can subscribe to the podcast in iTunes (or any other podcatching software) using this feed directly or in iTunes with this one.
To listen now, you can either download the mp3 edition, or the AAC edition. The AAC edition comes with chapter markers. You can subscribe to either edition of the podcast directly in iTunes; just search for Smalltalk and look in the Podcast results. You can subscribe to the mp3 edition directly using this feed, or the AAC edition using this feed using any podcatching software. You can also download the podcast in ogg format.
If you like the music we use, please visit Josh Woodward's site. We use the song Troublemaker for our intro/outro music. I'm sure he'd appreciate your support!
If you have feedback, send it to jarober@gmail.com - or visit us on Facebook - you can subscribe in iTunes using this iTunes enabled feed.. If you enjoy the podcast, pass the word - we would love to have more people hear about Smalltalk!
If you have trouble viewing that directly, you can click here to download the video directly. If you need the video in a Windows Media format, then download that here.
Join the Facebook Group to discuss the tutorials. You can view the archives here.
To watch now, click on the image below:
If you have trouble viewing that directly, you can click here to download the video directly. If you need the video in a Windows Media format, then download that here.
Nagare is designed to be simple and scalable. Contrary to other logging frameworks which provide rich set of log output methods (file, socket, DB, etc.), Nagare just connects to fluentd (http://fluentd.org). And Fluentd does the various log processing jobs.
The core default sort algorithm in VisualWorks is hybridization of quicksort and a insertion sort. The implications for this, is that this somewhat expensive toolListDisplayString method may be called repeatedly for some objects. That means redundant CPU cycles. A common solution to this kind of problem is memoization. Memoization basically is a fancy word which means "cache the results of your computation function, so you only evaluate the function once for each unique input and just look up the cached result for subsequent calls."