Questions

Convert string to BigDecimal in java

I am reading a currency from `XML` into Java. ``` String currency = "135.69"; ``` When I convert this to `BigDecimal` I get: ``` System.out.println(new BigDecimal(135.69)); ``` Output: ``` 135.68999...

18 Aug at 02:7

iTunes Connect Screenshots Sizes for all iOS (iPhone/iPad/Apple Watch) devices

I'm trying to submit a new application to the App Store but now Apple requires screenshots for iPhones of 4.7 inch and 5.5 inch. Anyone has these screenshot specifications (size)? I tried with: - -...

What is the difference between Bower and npm?

What is the fundamental difference between `bower` and `npm`? Just want something plain and simple. I've seen some of my colleagues use `bower` and `npm` interchangeably in their projects.

How can I create unique IDs with JavaScript?

I have a form where a user can add multiple select boxes for multiple cities. The problem is that each newly generated select box needs to have a unique id. Can this be done is JavaScript? Here is the...

15 Jun at 12:59

Error 5 : Access Denied when starting windows service

I'm getting this error when I try to start a windows service I've created in C#: ![alt text](https://i.stack.imgur.com/53rgc.png) My Code so far: ``` private ServiceHost host = null; public RightA...

15 Jul at 14:25

What is Mocking?

What is Mocking?                                                                                                    .

22 Oct at 20:32

Which icon sizes should my Windows application's icon include?

I have a Windows application which will run in Windows XP and newer (i.e. Vista/7). According to the [Vista UI Guidelines](http://msdn.microsoft.com/en-us/library/dn742485.aspx#size_requirements), the...

10 Nov at 16:45

How to read an entire file to a string using C#?

What is the quickest way to read a text file into a string variable? I understand it can be done in several ways, such as read individual bytes and then convert those to string. I was looking for a m...

25 Jan at 11:6

How to validate array in Laravel?

I try to validate array POST in Laravel: ``` $validator = Validator::make($request->all(), [ "name.*" => 'required|distinct|min:3', "amount.*" => 'required|integer|min:1', "description.*" ...

2 Jul at 22:24

Creating a BAT file for python script

How can I create a simple BAT file that will run my python script located at C:\somescript.py?

15 Apr at 22:20

selected value get from db into dropdown select box option using php mysql error

I need to get selected value from db into select box. please, tell me how to do it. Here is the code. Note: 'options' value depends on the category. ``` <?php $sql = "select * from mine where us...

14 Apr at 15:1

How to send HTML-formatted email?

I could be able to let the web application sends automatic emails using Windows Task Scheduler. Now I want to send HTML-Formatted email using the following method that I wrote for sending emails. My ...

15 Nov at 10:19

When should space be encoded to plus (+) or %20?

Sometimes the spaces get URL encoded to the `+` sign, and some other times to `%20`. What is the difference and why should this happen?

19 Nov at 14:48

Split text file into smaller multiple text file using command line

I have multiple text file with about 100,000 lines and I want to split them into smaller text files of 5000 lines each. I used: ``` split -l 5000 filename.txt ``` That creates files: ``` xaa xab...

What's the difference between a Python module and a Python package?

What's the difference between a Python module and a Python package? See also: [What's the difference between "package" and "module"](https://stackoverflow.com/questions/3680883/whats-the-difference-b...

23 May at 11:55

How to click or tap on a TextView text

I know this is so easy (doh...) but I am looking for a way to run a method on tapping or clicking a TextView line of text in an Android App. I keep thinking about button listeners and anonymous metho...

25 Jul at 10:2

How to add 'ON DELETE CASCADE' in ALTER TABLE statement

I have a foreign key constraint in my table, I want to add ON DELETE CASCADE to it. I have tried this: Doesn't work. EDIT: Foreign key already exists, there are data in foreign key column. The e...

15 Oct at 11:44

Display PDF within web browser

How can I display a pdf within a web browser on an .html page?

31 Jan at 17:19

Git: "Corrupt loose object"

Whenever I pull from my remote, I get the following error about compression. When I run the manual compression, I get the same: ``` $ git gc error: Could not read 3813783126d41a3200b35b6681357c213352...

10 Apr at 18:6

Going to a specific line number using Less in Unix

I have a file that has around million lines. I need to go to line number 320123 to check the data. How do I do that?

18 Mar at 22:13

How to give spacing between buttons using bootstrap

I want to give spacing between buttons is there a way to give spacing using bootstrap so that they will be consistent for different screen resolutions. I tried using `margin-left` But is it the corre...

18 Mar at 21:58

How to make PopUp window in java

I am currently developing a java application. I want to show a new Window which contains a text area and a button. Do you have any ideas?

2 Jul at 00:56

Post request with Wget?

I want to use wget to upload a picture to a distant server, using an authentication token, 'AUTH_1624582364932749DFHDD', to the 'test' folder. This command doesn't work (authorization failed), and I ...

18 Jul at 12:48

filter out multiple criteria using excel vba

I have 8 variables in column A, 1,2,3,4,5 and A, B, C. My aim is to filter out A, B, C and display only 1-5. I can do this using the following code: ``` My_Range.AutoFilter Field:=1, Criteria1:=Arra...

15 Nov at 10:2

Bootstrap 3 with remote Modal

I just started a new project with the new Twitter Bootstrap release : bootstrap 3. I can't make the Modal work in the remote mode. I just want that when I click on a link it shows the modal with the ...

8 Apr at 12:0