Dec 17
2007 22:47
(
ASP.NET) ·

(6,875 views)
How often you are laughing out loud when looking on the someone’s code? Today I found great code in my current project and I can’t hold posting this to my blog. So,
1 2 3 4 5 6 7 8 9 10 11
| if (Request.QueryString.HasKeys())
{
string[] keys = Request.QueryString.AllKeys;
foreach (string k in keys)
{
if (k == "memberpagemode" && (string)Request.QueryString.GetValues(k).GetValue(0) == "edit")
{
pSett.ChangeFormViewMode(FormViewMode.Edit);
}
}
} |
And how do you search through the hash for a key with specified value?
Dec 09
I have a good news: Sphinx Client API has been updated and now it supports all brand new features of the unstable Sphinx 0.9.8 development snapshot. What does it mean for you as a developer? What features you will get if you would decide to switch to the new version? I will describe most valuable improvements of the Sphinx in this article, and will show how to use them with new Sphinx Client API 0.4.0 r909.
Read the rest of entry »
Tagged fulltext, library, MySQL, plugin, postgresql, proximity, ruby, Ruby on Rails, scalability, search, sphinx, stemming
Sep 18
Last week I faced strange bug in Facebook Developer Toolkit. When I tried to call setFBML method (I mentioned it in my previous post) I’ve got an exception about invalid signature. “Haha” I said and downloaded toolkit sources. After some debugging, I’ve found a few lines which just killed me:
1 2 3
| // Compute the MD5 hash of the signature builder
hash = md5.ComputeHash(Encoding.Default.GetBytes(
signatureBuilder.ToString().Trim())); |
Read the rest of entry »
Sep 14
2007 00:56
(
PHP) ·

(8,897 views)
We are living in XXI century, but PHPists can’t decide yet how to write: "text $b" or 'text ' . $b. I’m going slightly mad.
via Artjom Kurapov’s blog.
Sep 14
In my current project we decided to build a Facebook application. This is really great platform with many interesting ideas inside, which usually means that you will spend a much time to make your application working as expected. Today I wanna talk about user profiles. Any Facebook application could add some action links, which will be displayed under the user’s picture, and some content for wide or narrow column. Of course, you can use FBML syntax, especially fb:if-… tags set to choose which content to show on specific profiles to concrete users.
Read the rest of entry »