Questions

How to convert a multipart file to File?

Can any one tell me what is a the best way to convert a multipart file (org.springframework.web.multipart.MultipartFile) to File (java.io.File) ? In my spring mvc web project i'm getting uploaded fi...

Apply CSS rules to a nested class inside a div

I don’t know exactly how to apply CSS to a nested element. Here is my example code, but I’m looking for a manual that explains all the rules: ``` <div id="content"> <div id="main_text"> <h2 cla...

29 Aug at 11:11

Generate SHA-1 for Flutter/React-Native/Android-Native app

I'm trying to generate a SHA-1 for a Flutter app, for Android studio to support Google Sign in, but I don't know how to do that, I saw some posts that indicate to run a command, but there I need a jks...

27 Feb at 15:55

Regex: Use start of line/end of line signs (^ or $) in different context

While doing some small regex task I came upon this problem. I have a string that is a list of tags that looks e.g like this: `foo,bar,qux,garp,wobble,thud` What I needed to do was to check if a c...

31 Mar at 11:55

Switch focus between editor and integrated terminal

Does anyone know the keyboard shortcut (Mac and Linux) to switch the focus between editor and integrated terminal in Visual Studio Code?

19 Mar at 15:52

How to fix "Root element is missing." when doing a Visual Studio (VS) Build?

How to fix "Root element is missing." when doing a Visual Studio (VS) Build? Any idea what file I should look at in my solution? Actually, I am getting this error message inside of "Visual Build Pro...

Return first N key:value pairs from dict

Consider the following dictionary, d: ``` d = {'a': 3, 'b': 2, 'c': 3, 'd': 4, 'e': 5} ``` I want to return the first N key:value pairs from d (N <= 4 in this case). What is the most efficient meth...

22 Sep at 12:29

How to generate Class Diagram (UML) on Android Studio (IntelliJ Idea)

I've try to search and found this [link](https://www.jetbrains.com/idea/features/uml_designer.html), but +++ doesn't work. I also use find Action ++ to find action about diagram and uml but found not...

Update records using LINQ

I need to set a value in a table for a subset of rows. In SQL, I would do this: ``` UPDATE dbo.Person SET is_default = 0 WHERE person_id = 5 ``` Is there a way to do this in LINQ? I currently use ...

25 Oct at 13:49

How to remove first 10 characters from a string?

How to ignore the first 10 characters of a string? Input: ``` str = "hello world!"; ``` Output: ``` d! ```

17 Aug at 10:58

Generate a unique id

I am a student at university and our task is to create a search engine. I am having difficulty generating a unique id to assign to each url when added into the frontier. I have attempted using the SHA...

8 Oct at 05:55

Spring JDBC Template for calling Stored Procedures

What is the correct way to invoke stored procedures using modern day (circa 2012) Spring JDBC Template? Say, I have a stored procedure that declares both `IN` and `OUT` parameters, something like thi...

27 Mar at 08:4

Get file content from URL?

When I use following URL in browser then it prompt me to download a text file with JSOn content. [https://chart.googleapis.com/chart?cht=p3&chs=250x100&chd=t:60,40&chl=Hello|World&chof=json](https://...

16 Jan at 10:33

Python string prints as [u'String']

This will surely be an easy one but it is really bugging me. I have a script that reads in a webpage and uses [Beautiful Soup](https://www.crummy.com/software/BeautifulSoup/) to parse it. From the ...

14 Apr at 11:21

Count specific character occurrences in a string

What is the simplest way to count the number of occurrences of a specific character in a string? That is, I need to write a function, countTheCharacters(), so that ``` str = "the little red hen" cou...

1 Jan at 00:8

How to replace plain URLs with links?

I am using the function below to match URLs inside a given text and replace them for HTML links. The regular expression is working great, but currently I am only replacing the first match. How I can ...

13 Aug at 19:25

Creating a Plot Window of a Particular Size

How can I create a new on-screen R plot window with a particular width and height (in pixels, etc.)?

25 Jan at 02:58

How to change color in markdown cells ipython/jupyter notebook?

I'm only looking to format a specific string within a cell. I change that cell's format to "Markdown" but I'm not sure how to I don't want to change the look of the whole notebook (via a CSS file...

27 Aug at 22:59

How to set null value to int in c#?

``` int value=0; if (value == 0) { value = null; } ``` How can I set `value` to `null` above? Any help will be appreciated.

19 Jan at 14:13

How to get IP address of running docker container

I am using Docker for Mac. I am running a nodejs based microservice in a Docker container. I want to test node microservice through the browser. How to get IP address of running docker container?

22 Mar at 06:15

How do I include a path to libraries in g++

I am trying to include the path to extra libraries in my makefile, but I can't figure out how to get the compiler to use that path. so far I have: ``` g++ -g -Wall testing.cpp fileparameters.cpp mai...

26 May at 15:37

How to test an Internet connection with bash?

How can an internet connection be tested without pinging some website? I mean, what if there is a connection but the site is down? Is there a check for a connection with the world?

26 Mar at 01:7

JavaScript for...in vs for

Do you think there is a big difference in for...in and for loops? What kind of "for" do you prefer to use and why? Let's say we have an array of associative arrays: ``` var myArray = [{'key': 'value...

11 Apr at 02:42

When to use 'raise NotImplementedError'?

Is it to remind yourself and your team to implement the class correctly? I don't fully get the use of an abstract class like this: ``` class RectangularRoom(object): def __init__(self, width, hei...

14 May at 12:46

Error: org.testng.TestNGException: Cannot find class in classpath: EmpClass

When i'm trying to run the test suite, am getting this exception. We are using maven project here and i am done with refreshing, cleaning, reinstalling testNG and then imported the maven projects but ...