Archive for the ‘Web’ Category
Monday, April 11th, 2011
Designers, Developers, System Administrators and companies spend a lot of time trying to optimize their networks and content delivery systems to achieve optimal performance with the minimum resources possible. At first, there was a simple browser/proxy cache schema, then the “If-Modified-Since” and ETags HTTP headers where introduced. Nowadays CDNs seem to blooming and all the […]
Posted in Apple, Featured, I'm an Idiot, Monologue, Personal, Security, Web | No Comments »
Wednesday, March 24th, 2010
Due to a particular idea of mine I found myself in need of something I don’t believe possible today – to easily share data between desktop and web applications using the browser alone. This raised several technical, privacy and culture questions on my mind, as well as a couple suggestions of course. Many are already […]
Tags: Google, google gears, html 5, ideas, web storage
Posted in I'm an Idiot, Monologue, Web | 2 Comments »
Tuesday, October 27th, 2009
I got tired of visiting the AdSense page all the time, well from time to time. I already have done an iPhone app so now I created a iGoogle gadget to display the most important stats and also a chart! So, with the help of Mono I was able to have everything setup and tested […]
Tags: AdSense, gadget, Google, Mono
Posted in .Net, ASP.Net, Cocoa, Featured, Mono, Monologue | No Comments »
Friday, October 23rd, 2009
Lately I’ve been doing a lot of ASP.Net code developed on VS.Net and IIS and deployed (via a cool subversion hook I might add) to my server running mod_mono on Fedora. Usually there aren’t many issue except for the occasional OS specific thing. But today I’ve hit not 1 but 2 hard to figure problems. […]
Tags: bug, Mono, WebClient
Posted in ASP.Net, Mono, Monologue | 12 Comments »
Monday, August 24th, 2009
I’ve been developing a large application with ASP.Net Ajax and ExtJS. It all works great together and in fact ASP.Net is just a easy way to access my .Net code/web services because the whole UI done with ExtJS constructed/controlled by javascript/Ajax. When it comes to a 100% javascript UI there are some cases where you’ll […]
Tags: ajax, ASP.Net, ExtJs
Posted in .Net, ASP.Net, Featured, Mono, Monologue, Web | 1 Comment »
Wednesday, August 19th, 2009
ASP.Net Ajax features are very good, even great if you consider the useful integration with other ASP.Net constructs. PageMethods are one of the easiest ways to implement an AJAX call without too much trouble or the need to implement a complete web service page if you’re only going to use this particular Ajax call from […]
Tags: ajax, ASP.Net, PageMethods
Posted in .Net, ASP.Net, Featured, Mono, Monologue, Publish, Web | 4 Comments »
Saturday, May 2nd, 2009
Yesterday I did a lot of work to make WordPress and my custom site word seamlessly one with the other. Today I’m trying to raise that level of integration to an higher level. I had 2 problems with a common solution: Am I the admin? I won’t be creating a backoffice anytime soon, but I […]
Tags: Dreamweaver, Google Analytics, PHP, Wordpress
Posted in Design, PHP, Security, Web | No Comments »
Friday, May 1st, 2009
I finally got my head into doing a redesign of my blog and integrating several sites I’ve into one place. That should make it easier to expand, maintain, backup and setup if needed. I also had some demanding requirements to leave things to my taste in laziness: I like WordPress for blogging most of the […]
Tags: Dreamweaver, SEO, Wordpress
Posted in Design, Linux, Web | No Comments »
Thursday, March 5th, 2009
I’ve been working at a new project that requires me to save a whole lot of data into a database. Without giving too much details right now (I’m not quite ready for that yet :)) I would say a good replacement would be to think I’ve developing something like Google Analytics. So, there are a […]
Posted in .Net, Development, Featured, Linux, Mono, Monologue, Web | 2 Comments »
Tuesday, November 25th, 2008
Updated on 23/10/2009: I’ve updated the code to fix the bogus regex expressions (wordpress editor striped some bits from them) and also to fix the code since Google changed the signin process slightly. For the more interrested, Google now has 2 cookies/hidden vars instead of 1, the code is almost the same though. A simple […]
Tags: AdSense, C#, Cookies, HttpFox, Login, Objective C, Sign in, WebClient
Posted in .Net, Featured, Linux, Mono, Monologue, Security, Web | 9 Comments »
Monday, November 17th, 2008
ASP.Net provides out-the-box several nice (although not new) features to manage your application’s state, the Session and Application objects. The Session and Application objects are also among the first things learned by students of almost any web programming framework but while they are true in their usefulness it doesn’t mean you should use them directly, […]
Tags: application, ASP.Net, session, state management
Posted in .Net, ASP.Net, Featured, Mono, Monologue, Security, Web | 5 Comments »
Monday, September 29th, 2008
A few days ago if you asked me if Microsoft would ever include an open source piece of code in one of their products, I would say you were insane just for asking! There’s no way! Well, Microsoft is planning to amaze me along with everyone else. ASP.Net and Visual Studio will start shipping with […]
Tags: .Net, ASP.Net, jQuery, Microsoft, open source, release
Posted in .Net, ASP.Net, Design, Mono, Monologue, Web | 1 Comment »
Monday, August 18th, 2008
One of the problems with ASP.Net when trying to keep a degree of separation between project components is that you can’t easily implement a page or a user control inside a library project and simply reference it from the main ASP.Net project. This, I think, its not entirely by lack of vision or interest from […]
Tags: ajax, ASP.Net, Embed, User Control
Posted in .Net, ASP.Net, Development, Monologue, Publish, Web | 1 Comment »
Tuesday, June 10th, 2008
It’s one of the most common issues on the ASP.Net Web 2.0 era, how to add dynamic controls at server side… but that’s a well explored territory as you can check by simply googling it. As a reference I recommend this series of 4 articles. There are 2 problems not so easy to handle, the […]
Tags: ajax, ASP.Net, Dynamic Controls, UpdatePanel, UpdateProgress
Posted in .Net, ASP.Net, Design, Development, Mono, Monologue, Web | 1 Comment »
Sunday, April 27th, 2008
If you’ve a piece of code similar to this one, and try to use the control inside an UpdatePanel then you might be surprised to see that triggering that event will in fact do a complete PostBack of the page (read Refresh-like-Postback): public override void Render(HtmlTextWriter writer) { Response.Write(“Button”, Page.ClientScript.GetPostBackEventReference(this, “onclick”)); } The reason is […]
Tags: ajax, ASP.Net, custom control, postback
Posted in .Net, ASP.Net, Mono, Monologue, Web | 12 Comments »
Friday, March 21st, 2008
One of my favorite gadgets is Gullible Info, its always on my Google Home Page. Its displays things like: «Japanese scientists have created a mechanical version of a human hand with similar motor skills; it requires a computer 1,500 times more powerful than a standard desktop computer to function.» The problem with this is that […]
Posted in I'm an Idiot, Monologue, Personal, Publish, Web | 1 Comment »
Wednesday, October 3rd, 2007
No more Refletor. Now Visual Studio 2008 will enable you to debug and see the core .Net source making our life easier when trying to understand the “Voodoo Inside”. Not exactly Open Source and doesn’t include the VM or compilers but still an important move towards compatibility between implementations. Initially Microsoft will release the source […]
Posted in .Net, ASP.Net, Mono, Monologue, Publish | 8 Comments »
Tuesday, September 25th, 2007
Update: Andreia has posted some really useful tips and “fixes to my approach that might interest you too. Check them, and a blog post detailing the process and some tunning. A few weeks ago Andreia (a Portuguese like me :)) published in her blog about the latest improvements she has made towards a MWF WebBrowser […]
Posted in .Net, Linux, Mono, Monologue, Publish, Web | 6 Comments »
Friday, August 24th, 2007
A few days ago I had this insane idea while thinking about all those ad spamming and stealth dialup sites – we can take advantage of a user visiting a specially crafted page to upload data to other users. It’s both stupid and simple. Torrent sites and clients only would need a few changes and […]
Posted in I'm an Idiot, Security, Web | No Comments »
Thursday, August 16th, 2007
While searching for a snippet of code that could give me the scrollbar width (or height) on the browser I only found this code that does not work at all in IE, only “well-behaved” browsers work, states the author. Later I found this snippet (somewhere in the last result pages of Google) that seemed to […]
Posted in Design, Web | 18 Comments »
Wednesday, August 1st, 2007
Web 2.0 this… Web 2.0 that… All we here is the wonder of this new apparently more responsive and pretty Web we’ve been used to in the last years startups and now some big players like Microsoft, Yahoo and Google. Turns out that in my opinion Web 2.0 is not so great, Web 3.0 won’t […]
Posted in Development, Web | No Comments »
Saturday, May 19th, 2007
For a while now I’ve been developing Web Magic, previously know as ePortal, a web-based ASP.Net designer that focus on easy-to-use features instead of hard-core developers. Although getting the initial version running was painful due to the lack of documentation I managed to get it implemented a long while ago. We’ve been developing more and […]
Posted in .Net, ASP.Net, Development, ePortal, Monologue, Publish, Web | 6 Comments »
Friday, April 20th, 2007
One of the lovely things about most Linux distributions is a central package management system. It allows you to update most of your software with a few clicks as well as install/remove just as easily. Yet something has been bothering my mind as I develop a new application, and is placing a question mark on […]
Posted in .Net, ASP.Net, Linux, Mono, Monologue, Publish | 4 Comments »
Sunday, March 18th, 2007
A while ago I was thinking about some of the SPAM problems we’re facing world wide. One of the things I’ve concluded to be very problematic is the lack of any kind of security about the senders host. Anyone, anywhere can create a mail server and send mail from there. If you try to check […]
Posted in Web | No Comments »