Archive for March, 2010

New Line in PHP

March 31, 2010

Printing a new line witch is visible in a web page is made like this: echo(‘line 1′.‘\n‘.‘line 2′);   the code above will print line 1 on a line and line 2 on a new line. Now if you have to generate a CSV file  <br/> wil not work  you have to use  \n like [...]

Tags: , ,
Posted in PHP & MySQL Comments Off

WordPress: get the role of the current user

March 18, 2010

/* get the role of the current user */ global $current_user, $wpdb; $var = $wpdb->prefix . ‘capabilities’; $caps = $current_user->$var;

Tags: , , , , ,
Posted in Wordpress Comments Off

Open Source Video Conferencing

March 10, 2010

Every project where people from different location are involved need a Video Conferencing solution. Usualy phone or video calls are used but what you do if you need to have a presentation for some charts or some source code? Then you buy or rent video conferencing services. Now there is an open source alternative and [...]

Tags: , , , , ,
Posted in Website's Comments Off

MonoDevelop free IDE for C# and other .NET for Win, Linux and MacOS

March 9, 2010

MonoDevelop is a free and feature advanced IDE for C# and other .NET languages. The great feature of all is that it work on Linux, Windows & Mac OSX. You can change your operating system but you dont need to change your IDE. code completion support for C# code templates & code folding integrated debugger [...]

Tags: , , , , , , , ,
Posted in .NET Comments Off

LiveUI open source framework for .NET websites

March 9, 2010

It is possible? In the web development open source is similar with PHP & MySQL and a tone of free CMS based on them. Now it is possible with .NET too. How? LiveUI is the answer and is built for .NET 3.5 sp1 Based on pure ASP .NET Pluggable to any asp.net application jQuery and [...]

Tags: , , , , , , , ,
Posted in .NET, ASP.NET Comments Off

Neural Networks in PHP

March 9, 2010

Browsing phpclasses.org I had found a very interesting article Neural Networks in PHP . For anyone who dont know yet “Neural networks allow emulating the behavior of a human brain in software applications.” In this article you can read how to implement Neural Mesh to develop Neural Network applications in PHP. (Neural Networks in PHP) [...]

Tags: , , , , , , ,
Posted in PHP & MySQL, Tutorials 1 Comment »