All Questions

0
answers

How do I add additional fields to an infotype? [closed]

I need to customize a new infotype (HR) by adding two new fields for control as shown, circled in yellow, in the image below:     
asked on 17.01.2014 / 15:08
2
answers

What is and what is "2 & 1" for?

When we want to direct the output in order to execute a command without receiving any information, between which potential execution errors we use: meuComando >/dev/null 2>&1 Effectively with >/dev/null we are sending th...
asked on 25.03.2015 / 19:55
1
answer

How to configure the Visual Studio Code to open the console in a new window?

In earlier versions the Visual Studio Code Console opened in a window outside Visual Studio Code , but in the new versions this Console screen was opened in of the Visual Studio Code itself, which greatly disrupts debugging because the cons...
asked on 21.12.2015 / 11:55
2
answers

Use Jquery library with AngularAMD

I'm implementing AngularJS + RequireJs through AngularAMD. I want to add the Jquery library but it returns the following error when I use "$":    Error: $ is not defined I have main.js set up as follows: require.config({ baseUrl:...
asked on 21.04.2015 / 20:28
6
answers

Copy of WordPress database without using PHPMyAdmin

I need to migrate a WordPress site from one server to another. One of the necessary steps is to export the database used in the current site, edit some data if necessary (such as the site address and URLs of the files) and import the database to...
asked on 27.02.2014 / 23:01
4
answers

How to limit the generation of pseudorandom numbers to nonzero and non-repeating numbers?

I wish the numbers did not repeat themselves and were nonzero. import random Sort1 = int(60 * random.random()) Sort2 = int(60 * random.random()) Sort3 = int(60 * random.random()) Sort4 = int(60 * random.random()) Sort5 = int(60 * ra...
asked on 27.12.2016 / 23:32
0
answers

Content ID and Policies for use with Youtube API [closed]

I'm trying to upload my videos on Youtube, with Content Policy and Content Id Matching enabled. My project is in .NET with the Youtube API v3 library, but the library only allows the implementation below that is not working either. video.Monet...
asked on 05.09.2016 / 19:40
3
answers

What is the purpose of an empty parenthesis "()" in a regular expression?

Searching in Stackoverlow English on regular expressions, I came across a certain expression where it presents an empty group in it (an empty parenthesized expression). So: (DE)()([0-9]{1,12}) What is the purpose of this "empty group" (...
asked on 02.02.2016 / 15:32
4
answers

Performance of functions with and without creation of local variables

Despite the simplicity of this question, I could not find an answer for it on the Internet. Is there any structural / performatic difference between the two functions defined below? def F(x): Output = x + 1 return Output def F(x):...
asked on 17.12.2018 / 22:45
5
answers

How to remove input and textarea borders from all browsers when clicked?

Look at the image to get an idea: When clicked this border with blue shadow is visible. I think it's standard for all browsers. Any solution?     
asked on 11.02.2014 / 14:35