AKMA's Random Thoughts

July 18, 2003

Disseminary Prospects and Blogroll Maintenance

Trevor and I divvied up a bunch of responsibilities the other day, and we’re sending out invitations to a bunch of scholars who may be able and interested in joiing forces with the Disseminary. Now we just have to wait out the return messages. . . .

And for the first time in months, I’ve begun adding to my blogroll a number of sites I visit (or aggregate) regularly, but hadn’t bothered to enumerate. I doubt I reached all of them, but it’s a start.

Posted by AKMA at July 18, 2003 01:52 PM | TrackBack
Comments

The rest of our conversion follows a similar vein. Instead of going through line by line, let's just compare end results: when the transition is complete, the code that used to read:

Posted by: Martha at January 13, 2004 12:23 PM

Our next line looks familiar, except it starts with an asterisk. Again, we're using the star operator, and noting that this variable we're working with is a pointer. If we didn't, the computer would try to put the results of the right hand side of this statement (which evaluates to 6) into the pointer, overriding the value we need in the pointer, which is an address. This way, the computer knows to put the data not in the pointer, but into the place the pointer points to, which is in the Heap. So after this line, our int is living happily in the Heap, storing a value of 6, and our pointer tells us where that data is living.

Posted by: Silvester at January 13, 2004 12:24 PM

But variables get one benefit people do not

Posted by: Griffith at January 13, 2004 12:24 PM