
Search In
To restart postgresql database in ubuntu
Run this command in terminal:-
step1- sudo service postgresql
step2- sudo service postgresql restart
use these command to restart postgresql service
Previous Git Blogs
Intialize git repostiory
First Commit
Two tree architecture and Three tree architecture
Best basic practices for writing commit messages
Viewing the commit logs
To keep things simple I am using only one file
We got a three
Write a program requesting a number (n), then ask n numbers more and print their product (use "for"!). The requested "n" number must be integer and positive. (The multiplied numbers must not be positive!)
The result shoul
Hey guys! I want to write a program that finds the sum of cubed terms. i.e. 1**3 + 2**3 + n**3
I wrote down the following code:
// n = input('Give the value of n.')
n = int (n)
s = ((n(n+1))/2)**2
print ('Sum equals =', s
Wrapper classes are used to convert any data type into an object.
a wrapper class gets enclose around a data type and appears as an object.
for example:
int k = 100;
Integer it1 = new Integer(k);
The int data type k is converted into an object, it1
While defining and developing web applications one important thing that you have is the configuration file that contains the information and settings of your applications.
This is the basic structure of your configuration file.
<co
You already know the importance of having a WordPress website that loads quickly and does not fall when one of your articles is a big hit. In addition, you want a website that has a high level of security and can easily grow.
Your
SignalR is a new library for .Net developers for creating real time web functionality, can also be defined as asynchronous signalling library. SignalR provides two way communication between client and server. SignalR can be used for creating real tim
To create incoming mail Server in openerp-6.1
follow these step given below:-
1. Go to Setting->Configuration->Email->Incoming Mail Servers, and create
2. Give a Name, example: Incoming Gmail Server
3. Select Server Type as POP/IMAP
4. In Se
In c#, HashSet is a disjoint group of an unique elements. We can a apply a multiple operation on HashSet such as Add, Remove, Contains etc. HashSet is also allow to apply a standard set of operations such as union, intersection, and symmetric d
