iii! » Your new PC (pussycat)
This is too cute. I wish I could read her(?) native language.
This is too cute. I wish I could read her(?) native language.
I will be sad when I finally come to my senses and pack my lunch to save money, because then I will not have the pleasure of sharing lunch with a roomful of odd people and their quirky habits.
I sat down at Wendy’s today with the intention of quietly consuming my fries and chicken strips, and maybe making a few notes on some future web projects. A lady with a pierced eyebrow was chowing down on some double-cheeseburger a few tables away. I noticed this because while I was looking out the window admiring the sunny day, I saw her staring at me in the periphery.
This online bit font editor lets you create bitmap true type fonts online.
I think I’ve done enough of these that I can convey upon you my limited expertise. :) [This one’s for Val.]
For today’s exercise (which will take me no more than an hour to explain in writing), we’re going to make a plugin that is like the acronym plugin, except it’s going to display an image popup instead of text.
Our next issue is namespaces. I’ve written some information about this in the codex. This project is probably a little small to be worrying about namespace collisions, but it merits mention so that you can use good practices when you move onto bigger things.
When you write a function in PHP, generally it exists in the global namespace. That means that you ca call that function from anywhere. It is not possible to declare two functions in the global namespace with the same name in PHP. If you and your friend write plugins to do similar things, you should’t use the same function names. But if you want to write a plugin that doesn’t share function names with people you haven’t met, how do you do that?