If you're interested in writing an article for our Article Network, please get in touch with us through our Article Network FAQ page.
Knowledge Bomb
- All of the functions that we write to make our jQuery plugin work should be private and not accessible from outside, in an attempt to avoid cluttering and possible backwards incompatibility.
- In PostgreSQL 9, don't use "postgres" as your password. This will make you vulnerable to idle hackers, so make it a little more difficult than that.
Graphical Capabilities of R
The R Project for Statistical Computing (or just R for short) is a powerful data analysis tool. It is both a programming language and a computational and graphical environment.
R is free, open source software made available under the GNU General Public License. It runs on Mac, Windows, and Unix operating systems.
The official R website is available at the following site:
In the previous article by John M. Quick, author of the book Statistical Analysis with R, we learned how to create charts, graphs, and plots in R. We also took a look at customizing graphics in R.
In this article, you will be able to:
- Create different charts, graphs, and plots in R
- Save and export your graphics for use outside of R
Organizing, Clarifying and Communicating the R Data Analyses
The R Project for Statistical Computing (or just R for short) is a powerful data analysis tool. It is both a programming language and a computational and graphical environment. R is free, open source software made available under the GNU General Public License. It runs on Mac, Windows, and Unix operating systems.
The official R website is available at the following site:
In this article by John M. Quick, author of the book Statistical Analysis with R, you will learn how to:
- Organize and clarify your raw R data analyses
- Communicate your raw R data analyses effectively
- Apply the steps common to all well-conducted R analyses
Microsoft Dynamics NAV: OS Integration
In this article by Matt Traxinger, author of Microsoft Dynamics NAV 2009 Programming Cookbook, we will cover:
- Using HYPERLINK to open external files
- Working with environment variables
- Using SHELL to run external applications
- Browsing for a file
- Browsing for a folder
- Checking file and folder access permissions
- Querying the registry
- Zipping folders and files within NAV
Joomla! 1.5 Top Extensions for Using Languages
This article focuses on using multiple languages on a Joomla!-based site. It shows you how to add a language, translate language files, translate a site's content on the fly using Google's translation service.
In this article by Suhreed Sarkar, author of Joomla! 1.5 Top Extensions Cookbook, we will cover:
- Adding a language to your site
- Translating language files for your site
- Translating your site's content using Google's translation service
Manually Translating Your Joomla! Site's Content into Your Desired Language
In the previous article we saw how to translate a site's content using Google's translation service. The full process is automated and the machine does the translation. However, machine translation is not always good and can sometimes be misleading. To avoid your content getting lost in translation, or in the absence of a translation service for a specific language, like Bengali, you may like to manually translate the site's content.
In this article by Suhreed Sarkar, author of Joomla! 1.5 Top Extensions Cookbook, you will learn how to translate your site's content manually into your desired language using the Joom!Fish extension. It allows you to translate the articles, modules, banners, menus, sections, categories, and so on into your desired language. It also shows a language selection module for visitors to choose a language from the site's frontend. Many other components and modules can be translated by installing their respective content elements.
Read Manually Translating Your Joomla! Site's Content into Your Desired Language in fullCustomizing Graphics and Creating a Bar Chart and Scatterplot in R
The R Project for Statistical Computing (or just R for short) is a powerful data analysis tool. It is both a programming language and a computational and graphical environment.
R is free, open source software made available under the GNU General Public License. It runs on Mac, Windows, and Unix operating systems.
The official R website is available at the following site:
In this article by John M. Quick, author of the book Statistical Analysis with R, you will learn how to:
- Create different charts, graphs, and plots in R
- Customize your R visuals using text, colors, axes, and legends
ASP.Net Site Performance: Reducing Page Load Time
In the previous article, ASP.Net Site Performance: Improving JavaScript Loading, we saw how JavaScript files can block rendering of the page while they are being loaded and executed, and how to load JavaScript in parallel with other resources.
In this article by Matt Perdeck, author of ASP.NET Site Performance Secret, we will see how to load JavaScript code on demand, and techniques to load JavaScript without blocking page rendering.
Read ASP.Net Site Performance: Reducing Page Load Time in fullASP.Net Site Performance: Improving JavaScript Loading
One approach to improving page performance is to shift functionality from the server to the browser. Instead of calculating a result or validating a form in C# on the server, you use JavaScript code on the browser. A drawback of this approach is that it involves physically moving code from the server to the browser. Because JavaScript is not compiled, it can be quite bulky. This can affect page load times, especially if you use large JavaScript libraries. You're effectively trading off increased page load times against faster response times after the page has loaded.
In this article by Matt Perdeck, author of ASP.NET Site Performance Secret, you'll see how to reduce the impact on page load times by the need to load JavaScript files. It shows:
- How JavaScript files can block rendering of the page while they are being loaded and executed
- How to load JavaScript in parallel with other resources
- How to load JavaScript more quickly
Tips and Tricks for Joomla! Multimedia
Joomla! is a Content Management System designed to organize and deliver content within a website environment. Multimedia provides us with stunning interactive user experiences and wonderful design options, but it requires discipline and knowledge to utilize it effectively so that we do not alienate our audiences.
In this article we will provide some tips and tricks for Joomla! multimedia, such as;
- Inserting custom code into your Joomla! Articles
- Creating a new directory using Joomla! Media Manager
- Publishing your Twitter tweets in your Joomla! site
jQuery User Interface Plugins: Tooltip Plugins
We might want to start off by saying tooltips are very popular in today's web design. This is probably due to the value that the tooltips add to the overall look of a website and the sensible addition to a nice user experience that they will certainly contribute. Also, as we have seen for many other plugins, which are not that difficult to create—provided we know exactly what to do and how to do it—there shouldn't be much of an issue with developing the tooltip plugin. It may actually take some time to understand how to position elements based on the mouse cursor position itself and how to move deftly with an increasing number of functions doing different things. However, we're now on the path to becoming experts, and fearless too!
The topics we're going to discuss in this article by Giulio Bai, author of jQuery Plugin Development Beginner's Guide, include:
- Tooltip plugins in general
- Positioning the tooltip
- Merging pieces together
- Custom jQuery selectors