IFTTT is amazing, awesome and definitely beautiful!

So you want to know what it is? yes you do. So let’s see what IFTTT is: IFTTT is a service that enables users to connect different web applications (e.g., Facebook, Evernote, Weather, Dropbox, etc.) together through simple conditional statements known as “Recipes”. You can learn more about how IFTTT works and how to use it …

Introduction to Razor and Microsoft WebMatrix

WebMatrix is a great tool for making ASP.NET Web Pages. As we know, ASP.NET Web Pages is a straightforward page-based architecture different from existing ASP.NET technologies, such as Web Forms and ASP.NET MVC. Using the Web Pages approach, developers create their websites one page at a time, adding logic and behavior inline as needed. Installing …

Meet Ahmad Jamshid Hashimi – MSP from Dokuz Eylul University, Turkey

Two year ago, when I was MSP (Microsoft Student Partner) in Turkey, I had this interview with MicrosoftFeed. To keep the interview in my blog and save it into a secure place, I am also posting it here 🙂 Tell us who you are? I am Ahmad Jamshid HASHIMI, from Afghanistan. Studied Computer Engineering in Dokuz Eylul …

Dynamically Add Javascript and CSS Files in CodeIgniter Header Page

Those who are developing web projects know that, header pages are always the constant file of their template folder. The classic way of using a header page in small projects are to fill it with constant JavaScript and CSS files along with html tags and use it in inside functions where you need. The problem arise when …

What’s new in Windows 8 and Introduction to Windows 8 Application Development

In an early post; I wrote about 11th iHub montly meeting; which I had a session regarding “What’s new in Windows 8 and Introduction to Windows 8 Application Development”. The event was great and lots of people  from IT and ICT sector was there. The very best part of participating in such these events is …

learn your facebook profile ID/page ID

Here you can learn your facebook profile or your page ID; Edit the url and paste this to your browser address bar. http://developers.facebook.com/tools/explorer/?method=GET&path=yourusername To clear your website open graph cache, you can use this url http://developers.facebook.com/tools/debug  

Facebook tarzı zaman gösterimi (tarih, saat)

function get_time($timestamp) { $timestamp = strtotime($timestamp); $diff = time() – $timestamp; if ($diff <= 0) { return ‘Şimdi’; } else if ($diff < 60) { return grammar_date(floor($diff), ‘ saniye önce’); } else if ($diff < 60*60) { return grammar_date(floor($diff/60), ‘ dakika önce’); } else if ($diff < 60*60*24) { return grammar_date(floor($diff/(60*60)), ‘ saat önce’); } …

How to invoke on check event of a checkbox[]

Let’s learn how to invoke a checkbox[]’s checked event. Our checkbox: <input type=”checkbox” id=”check[]” name=”check[]” value=”<?=$item->id?>” class=”checkbox” onchange=”javascript: showhidecheckbox(‘check[]’,’sendto’,’1′);” /> our onchange event call showhidecheckbox() javascript function. This function is used to detect the checkbox status and show or hide a div named “sendto”. function showhidecheckbox(checkboxname,name1) { var d1=document.getElementById(‘sendto’).style; if($(‘input[name=”check[]”]:checked’).length > 0) { d1.display =’block’; …