
Search In
Image source
In 2021, online videos make up over 82% of internet traffic, making it one of the most popular content on every platform. That being said, using video content is an effective way to spread the word about your brands.
Using social media sites such as Facebook, Twitter, and Pinterest to interact and communicate with your customers is a wonderful approach to do so. However, due to the growth of social media, some individuals argue that email marketing is no longer e
Every employer will now look at your computer skills when deciding whether to bring you on board as part of their team. While you do not have to be an expert in modern technology, a few mandatory computer skills are now required in the workplace. You
What is GIS: Geographic Information System
A geography information system (GIS) is a software tool which is used for analysing and surveying geographic information and occurrence(events) that occurs on Earth. These tools allow users to capture, stor
One of the most common html elements in a web page is select box. In Rails select and option tag helper method is used to display it .
select and option tag:
<%= select_tag(:city_id, options_for_select[[‘Bangalore’, 1], [‘Dehradun’, 2]]) %>
Test Case Review process
When Customer gives requirements, development team start developing the product looking at the requirements and testing team start writing test cases looking at the requirements. Test engineers are writing test cases for a p
Rails has a nice way to protect yourself from CSRF attacks through threatening HTML encoding from anything you write between <%= %>. But there is a caution, you want to render HTML from string so you need to tell rails that it should not escape
Rails Internationalization : Setting locale from Domain Name
For translating your application to other language, you can set I18n.default_locale to your locale in application.rb or in initializers as I told in my previous blog Configuring i18N Api
How to create threads in Java?
From main thread we can create our own user defined threads, we can create threads in two ways:
By extending thread class.
By implementing run-able interface.
By extending thread class
Create a class which extends
OpenERP enables utilizer to send and receive emails when an action is done from OpenERP. We can configure emails to be send when a sale is verify or invoice is paid etc. But to implements these type of functionality, we require to update the function
