Continuing from the latest blog post, I finally made some breakthrough in my knowledge. It is true that the best teacher is your own experience. The main problem in the connection string between me and ASP classic is the connection string suddenly changed when I navigate through pages in ASP. Instead on believing that the … Continue reading Connection String Romance Continued
Category: Programming
ASP Classic Connection String Romance
New job and brand new works is giving me new things to learn. Currently I am staying with ASP again! This time it is not ASP.net but ASP classic.
Dynamics
Finally the laziness of mine came to fruition! What happened here is that I needed to parse lengthy json from a website and I was really lazy to map it all into a specific type. I was not fully lazy, I was also chased by tight deadline in my project. So to overcome my laziness I searched on … Continue reading Dynamics
Random Character With LINQ
Just now, I checked my forgotten stackoverflow account. I looked on some common questions and upvoted the good ones. Then I stumbled to this great answer. Why it was so great? Because it solves common problem, just creating random characters, but using such advance thing. I mean people usually just use Random and create character. … Continue reading Random Character With LINQ
Some Weird Thing on VS2010 Today
Returning to ASP after a long journey in PHP made me had some weird and awkward situations with Visual Studio. One of them wass when I tried to use ConfigurationManager class. I included the System.Security in my reference, but then nothing seemed to show. The message kept saying that The name 'ConfigurationManager' does not exist in … Continue reading Some Weird Thing on VS2010 Today
Making YouTube Thumbnail as Post Thumbnail in WordPress
Creating video thumbnail can be tricky on WordPress. You will need to add new meta on your post so that the post writer can insert the video ID and update the whole post. This time the key of the post meta that I used is video_id. Have a look on the code! 😀 Feel free … Continue reading Making YouTube Thumbnail as Post Thumbnail in WordPress
PHP yeay!
Hello world! Well, I am back to PHP! After a long time I haven't used this, I am back again to PHP! So, I am working on a WordPress plugin. It will allow the user to post through another web. Well, it is intended for a digital agencies, not for really commercial use. I will … Continue reading PHP yeay!
Code that Suits Us
Hello! I had quite a small dilemma this month. As fact I am working on a small CMS that I create by myself. Not being arrogant or self prided, it was just for exercise so that I could keep myself away from games (especially DoTA 2 that had taken so many of my Internet quota). … Continue reading Code that Suits Us
Orchard – Piedone Avatar Double Extension Threat
So, I was still developing for a site that using Orchard CMS. I finally get into security testing. Well, that's a lot of effort to do. 😀 But what I got is that there is double extension threat to my application. At first, I manage to fix it through Media module on Orchard. Then I … Continue reading Orchard – Piedone Avatar Double Extension Threat
.NET – Linq, foreach, and eyesore
Hello all! I was building an asp site. So, I got into a feature that I can use either linq and foreach. What is about the eyesore? You'll get it later. Well, the feature that I wanted to make is to filter a list based on a criteria. Let's just say that I had a … Continue reading .NET – Linq, foreach, and eyesore