Interesting video about the history and future of Drupal. A must see for everyone who is involved or develop for the drupal community. The presentation is done by Dries Buytaert, founder of Drupal.
Maybe another hint is to follow drupal at Twitter to keep updated about their actions.
http://twitter.com/drupal http://twitter.com/drupalcon
Posted in cms, open source | No Comments »
Internet Explorer 6 doesn’t understand the CSS min-height property.
You can find many solutions for this problem.
One of the most easy and fastest solutions I could found is the CSS Min-Height Fast Hack.
selector {
min-height:500px;
height:auto !important;
height:500px;
}
More info on
http://www.dustindiaz.com/min-height-fast-hack/
Tags: CSS
Posted in CSS | No Comments »
After suffering with the workflow between Flex and Flash i found this plugin that lets you write your code in Flex and Compile it in the Flash API. It’s called the Ant plugin (what’s in a name
More info on installation and using :
http://hubflanger.com/building-flash-projects-with-ant-and-flex-builder-part-1/
Tags: Ant, Flash, Flex
Posted in development | No Comments »
When you are using ASP.NET, the ajax updatepanel and jquery together, you can have some trouble with the jquery effects or widgets not working anymore. After making an asynchronous postback with the updatepanel the jquery will not work anymore if you have to initialise some stuff in the load of the page.
When making an asynchronous postback the load event of the page is not fired anymore, so the initialisation of the widget or event will not occur. There is a simple solution to this problem. Just put all initialisations in a javascript function. Call this javascript function from the load of your page and also the endrequest event of your PageRequestManager.
<script>
$(document).ready(function(){
initJQuery();
});
function initJQuery(){
//All inits for your jquery widgets/events
}
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(initJQuery);
</script>
The end request event will occur when the asynchronous postback of the updatepanel is completed. The jquery objects will then be recreated, so that the jquery events still work perfectly.
Posted in .NET, development | No Comments »
While doing some research i came across this handy website called pdfmenot, simply insert the pdf link or upload your file and make this viewable for your clients and friends without the right pdf software.
Tags: online, pdf, pdfmenot, share, viewer
Posted in graphics, useful | No Comments »