Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

Search In

Java bit processing

Hello, I want to process a file.txt at the binary level by removing every 5th bit if it is equal to 1. Save the new processed binary file and repeat the process until it can no longer find any more 5th bits equal to 1, then save the final file. Coul

SQL Outer-Right Join

2) Right Outer Join -> It is also known as Right join . In right join all the content of right table will come in resultant and from the left table only matching rows will come . If no rows is matched from left table then null value will be return

How to convert Json Object into Json Array

Hello Reader's. If you have a json object and you need to convert it into array then you just need to write the code below, and you will get the array converted format. var obj = {"0":"1","1":"2","2":"3","3":"4"}; var arr = []; for (elem in obj) {

How to refresh a function after a particular time in jsp?

To refresh a function after a particular time interval to refresh the values on the page. We can do this by using setInterval() function on page load. Write the below code where refresh() function will be the function that you want to refresh every

How to use regular expression in mysql query?

By using REGEXP function of mysql.Below is the example via a MySQL Query select empId,empName from tbl_employee where empName REGEXP “[1-4]$”; This will select the data of all employees whose name ends with either 1 or 2 or 3 or 4

Mysql Function To Rounding number to nearest 1,10,100,1000

Below is the Mysql Function To Rounding number to nearest 1,10,100,1000 DELIMITER $$ DROP FUNCTION IF EXISTS `rounding_to_nearest`$$ CREATE FUNCTION `rounding_to_nearest`(num decimal(15,2),round_to int,neare

How to Modifying a report in OpenERP-6.1 ?

Step-1 First we have to Modify existing reports which will then replace the originals in our OpenERP database, Step-2 create new reports for the selected object. select Report > Modify Existing Report . Choose the report Request for Quotation

How to set the priority of testcases in testng.xml file?

We use @Test method to make a class as a part of our testcase. We can set priority by using "priority=" with @Test annotation in testng.xml file. @Test(priority=1) @Test(priority=0) Priority 0 testcase will be executed first and then Priority 1

Error occur when create new server in pgadmin

When Error occur to create new server in pgadmin than use these commond in terminal to resolve this type of problem in pgadmin 1-sudo -u postgres psql 2-sudo -u postgres psql template1 3-ALTER USER postgres PASSWORD 'newPassword';

Pessimistic locking in ruby on rails

In pessimistic locking a particular row in the database is exclusively locked so that other updates on the same record are blocked . This mechanism has the advantage that when a certain operation is going on the selected row other user cannot read or

1 46 949
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: