
Search In
Procedural !! is the word.Have you heard it before? Have you heard about Procedural generation?
Yes or No what ever your answer is, But this term blows my mind out and make me curious and to think about it.
So i have done some research on it.
&nbs
Array is used to keep collection of objects. Array in ruby can have any type of objects together. Using array in ruby:
>> a = []
>> arr = [1, 0, 7]
>> arr[2] # => 7
>> arr.size # => 3
>> arr = ["string", 5, 0.8,
How to check if record exists in Cakephp 3
I am writing this blog for them who are learning Cakephp 3. This blog will going to help you to find the solution for checking if record exists.
In Cakephp 2 we can check records which exist by usi
In September 2002, Mozilla Foundation developed a free, open-source and cross platform graphical interface Web Browser, known as Mozilla Firefox. Now, it’s the most popular open- sourced internet web browser around the whole
If you want to generate the barcode for product in openERP .Then you will need the following kind of python code declaration in your .py file and run in Odoo server.
from openerp.osv import fields, orm
from openerp.tools.translate import _
def i
Below is the code to keep the sidebar fixed while scrolling the page.
It is one of the easiest way to keep it fixed.
HTML-
Here is the simple design having main content div and a particular section of a sidebar.
<div id="main_container">
In my previous article, we talked about XAML resources that were mainly covered, Whats is the pupose of XAML Resources and Where can be it declare? Now, we will discuss StaticResource and DynamicResource in XAML.
In XAML, Resource coul
Install BaasBox on Ubuntu 14.04
Baasbox is server side application that is used for database server. Mobile and backend developers can use this application to store data in database and can create backups. In order to install stable version of Baasb
In WPF, this is the property which gets or sets a value at the time of binding source updates. It is used in TwoWay binding. The Mode Sets the direction of the binding and Mode = TwoWay binding means that any changes occurs in target of the bind
Creating style for circle checkbox:
<Style TargetType="CheckBox" x:Key="CircleCheckbox">
<Setter Property="Cursor" Value="Hand"></Setter>
<Setter Property="Content" Value=""></Setter>
