Tag Archives: ProgrammerAH

Adobe finally launched Photoshop fix on Android, a powerful mobile phone map revision app

Super power net
The 2016-11-04 15:00

When Apple released the 12-inch iPad Pro last year, Adobe released a Photoshop Fix for it. Adobe has traditionally given priority to their apps on iOS and a little later on Android, but the Photoshop Fix didn’t arrive on Android for more than a year.

Adobe’s revised figure APP nature than like a picture show some useful, don’t have that a key facial, wrinkles to the enchanting such as silica gel, but still have provided the Photoshop Fix thin face, beautiful skin, and the function of the blur these basic skin care and other function also is stronger than general modification APP, can repair to a photograph, smooth, liquefaction, lights and other operations, this means that a lot of complex, so if you want to photos look good to have a little technology and kung fu. In addition, Photoshop Fix can save the edited content as a PSD file and put it into the computer version of Photoshop for further editing.

The Android version of Photoshop Fix requires an Android 5.0 level or above system. This year, all Android phones photographed will not be lower than this version of the system. Users who like a bit of professional style can try it and download it for free.
Google Play download: Adobe Photoshop Fix
Focus on WeChat ID expkf01, the first time to learn exciting activities and original technology information.

Windows 8.1 – Fix This app can’t open for Built-in Administrator account

This app can’t open can’t be opened using the Built-in Administrator account. 

This app can’t open can’t open while User Account Control is turned off. Turn on User Account Contro

Solution one: 
Sign in with a different account and try again.

Solution two:
1. Local Security Policy – Run “secpol. msc” and modify as in screenshot 

2. Edit Registry – Run “regedit” and change the value as in screenshot

XNA 4 project running error: no suitable graphics card found

Today, I started to learn about the development of XNA Games. I created a new project to run directly and reported an error.
The error screenshot is as follows:

Later, I found a solution on the Internet. It turned out that my graphics card did not support DirectX 10. I only needed to change the GAME profile in XNA GAME Studio in the project property from Hidef to Reach, hoping that it could be helpful to friends who met the same problem with me.
  
 

Microsoft fix 50688 [Windows 7 event ID10, WMI error resolution

The Windows7 event record has the following error message:

“Event filter with query” SELECT * FROM __InstanceModificationEvent WITHIN 60 WHERE TargetInstance ISA “Win32_Processor AND TargetInstance. LoadPercentage & gt;” ” 99″ Could not be reactivated in namespace “//./root/CIMV2″ because of error 0x80041003. Events cannot be delivered through this filter until the problem is corrected.”

as shown in the figure below:

the problem occurred after manual integration of SP1. There is a problem in the creation process caused by WMI registration left in DVD/ ISO. Microsoft says these incidents do not represent any problems in the system and can be safely ignored.

Microsoft has issued a fix “Microsoft fixit 50688.msi” for this issue.

ridicule CSDN recently came aunt zha, can not send the link, you brothers baidu download this patch bar

Reproduced in: https://www.cnblogs.com/ziyeqingshang/p/3769487.html

How to debug stored procedure/function in TOAD

I studied how to debug the Stored Procedure or function under Toad and saw the corresponding menu under Toad before, but I never knew how to use it. For details, please refer to the article:
Debugging PL/SQL, now available for everyone!

Here’s a case of how debugging in Toad works:


The test code for this Case:
CREATE OR REPLACE PROCEDURE APPS.swapn (num_one IN OUT NUMBER, num_two IN OUT NUMBER) IS
temp_num NUMBER;
BEGIN
temp_num := num_one;
num_one := num_two;
num_two := temp_num ;
END;


On the breakpoint


Be sure to compile your Procedure
first


Run in Debug (most of the buttons in the Debug menu are grayed out if you don’t compile the Stored Procedure)


Before is debugged, set the values of input parameters

will stop at the break point, you can see the Watches output window, variable value changes




Explain stdin, stdout, stderr in C language

When we write C programs, we often come across printf (), fprintf (), perror (), what exactly do these things do?I have to say stdin, stdout, stderr. Think about what we do when we write a File in C: File * FP =fopen(), which is what we request from the system, which is the equivalent of a channel to the File.
 
Actually, stdin,stdout,stderr is this FP, but it is turned on by default when the computer system is turned on, where 0 is stdin, which means input stream, which means input from the keyboard, 1 is STdout,2 is Stderr, and 1,2 is the monitor by default. While printf () prints out to stdout, which is equivalent to Fprintf (stdout, “***”), perror() prints out to Stderr, which is equivalent to Fprintf (stderr, “***”), what’s the difference between stdout and Stderr?
 
The reason we use printf () when we write a program is that we can monitor the health of our program, or debug, if our program is running all the time without stopping, we can’t keep staring at the screen to see the output of the program, then we can use file redirection. Will output to a file that we can look at later. For example, test.c
(CPP) view plain copy
1. & lt; The pre class = “CPP” name = “code” & gt; #include< stdio.h>   
2.
3. Int main ()
4. {
5. The printf (” stdout Helo World!!!!! \n”);    
6.
7. Return 0;   
8.}
After compiling, we./test > Test.txt (redirects the contents of stdout to a file by default) outputs the contents of the test program to a file called test.txt. There is a more explicit way of writing it. Test.txt, where the 1 stands for stdout. Speaking of which, you should know what Stderr should do. Test.c: That’s right.
(CPP) view plain copy
1. # include< stdio.h>   
2.
3. Int main ()
4. {
5. The printf (” Stdout Helo World!!!!! \n”);   
6. Fprintf (stdout, stdout “Hello World!! \n”);   
7. Perror (Stderr “Hello World!!!!! \n”);   
8. Fprintf (stderr, “stderr Hello World!! \n”);   
9.
10. Return 0;   
11.}
After compilation,./test, four outputs on the screen, if./test > Test.ext, the result is two Stderr Hello World output from the screen!! , Stdout Helo World!!!!! In the file test.txt, based on the above, it is easy to understand the current result, so we can do whatever we want with the output, such as:
 
./test 1> testout.txt 2> Testerr.txt, we’ll output stdout to testout.txt, stderr to testerr.txt;
./test 1> Testout.txt, output stdout to file testout.txt, output stderr to screen;
./test 2> Testerr.txt, output stderr to file testerr.txt, output stdout to the screen;
./test > test.txt 2> & 1, this is to redirect stdout and Stderr to the same file, test.txt.
 
If we don’t want to see the output, either on the screen or redirected to a file, don’t worry, Linux has a solution for everything,./test >/dev/zero 2 & gt; & 1, so you don’t see any output.
 
Note: An important difference between Stderr and Stdout is that Stderr is non-buffered and outputs immediately, whereas Stdout defaults to row buffering, which means it outputs when it hits’ \n ‘. If you want stdout to output in real time as well, add Fflush (stdout) to the end of the output statement to do so in real time.

Reprinted in WeChat embedded ARM public number

Uninstall Ad-Aware Antivirus with WindowsUninstaller.Org Removal Tips

How to completely uninstall Ad-Aware Antivirus?If you are interested in absolute computer security from viruses and much more, you won’t get it wrong with Ad-Aware Antivirus Antivirus. Offering rock-solid security, basic usability, and effective using resources, it is a good solution. However, periodically it must always be uninstalled. Still, it isn’t easy to entirely uninstall Ad-Aware Antivirus.
You cannot depend on Windows built-in Add/Removal for just a clean Ad-Aware Antivirus removal or in addition, you can not eradicate Ad-Aware Antivirus by adding the newer Ad-Aware Antivirus version after which it uninstall it. The main basis for this is that only at that antivirus installation time there is no Ad-Aware Antivirus uninstall power installed. So how could you remove that?Even you think you’ve gotten rid on this antivirus, actually, many Ad-Aware Antivirus similar files and registry items remain hidden inside the nooks and corners of your respective registry and hard drives.
On the other hand, now you can depend on a good automate removal tool to completely uninstall Ad-Aware Antivirus with seconds. A good removal tool contains the features below:
It can fully uninstall programs which can not be removed by House windows built-in (Add/Remove) applet. It fully removes empty or corrupted registry entries. It forcibly uninstalls corrupted or hidden programs. It is quite a bit simpler and faster to work with than the (Add/Remove) Software programs functionality in Windows’ Manage Panel. It restores registry data.
There is in reality a fantastic removing software that will help people entirely uninstall Ad-Aware Antivirus together with fantastic achievements in addition to ensure that every one of the now-defunct Registry items in addition to similar data are generally removed on auto-pilot with a several keys to press. Apart from that computer software, it can also fully eliminate some other applications like Authentium, Norton, Craze Minuscule antivirus, Internet explorer, or Microsoft company Business office, in addition to similar applications.

How to uninstall IDM (Internet Download Manager)

Reason: IDM is too much trouble. It pops up every time you download it. Some pages don’t need it, but it pops up anyway
Search Baidu results:

Solutions:
1 download IDM official download software package;
Start installing the package

3 Copy the installation path shown above (starting with the IDM you have installed) and exit the installation
4, enter the above path, find uninstall. Exe, after the execution of automatically restart the computer, OK uninstall finished
Conclusion: the bell must be tied

Installation library on pychar (taking pandas for example)

Some reports on the web show that there are problems when installing pandas, and the prompt seems to be the cause of PIP.
is probably your PIP version for too long. So it’s best to update the PIP at CMD first.
Enter the command in CMD:

python -m pip install -U pip

Successful information: Requirement already up-to-date.
Then turn on pycharm
1, click file/ Settings
2, and select project/project interpreter
in the popup screen
3. Click “+” on the upper right to enter the interface
for searching third-party libraries
4. Search the corresponding library or module to be installed in the search box, and click “Install Package” at the bottom left. If the installation is complete, the library displays the font color to blue, and in the previous screen lists the libraries you have installed

5. When it is finished, it will not be marked red when importing

Learn English together | three ways to realize digital factorial with JavaScript

click on the top
“Front end talent” can subscribe oh!
Original title: “Three Ways to Factorialize a Number in JavaScript”
Sonya Moisset
The original link: https://medium.freecodecamp.com/how-to-factorialize-a-number-in-javascript-9263c89a4b38
2. The English version of the dictionary is translated by the English version of the dictionary
Front-end technology changes with each new day, a lot of new technical articles are in English, which requires us to have a good English ability, from today on small make up and we learn English while learning the front end, due to limited ability, welcome everyone correct, together to improve English.
This article is based on Free Code Camp Basic Algorithm Scripting “Factorialize a Number”.
Translation:
This article is based on the Free Code Camp basic algorithm script “Digital factorials”.
Note: Free Code Camp is a Free online learning website. Web site address: https://www.freecodecamp.com
Key words:
algorithm
An algorithm, esp in a computer program
In mathematics, the factorial of a non-negative integer n can be a tricky algorithm. In this article, I’m going to explain three approaches, first with the recursive function, second using a while loop and third using a for loop.
Translation:
In mathematics, factorial of a non-negative integer n can be a tricky algorithm. In this article, I’ll do it three ways, first with recursive functions, second with a while loop, and third with a for loop.
Key words:
factorial
It is a factor of two
N. The factorial product
non-negative
non-negative
tricky
Difficult to deal with; Difficult to deal with; Tricky; Crafty; scheming. The treacherous; Sly.
approach
vt.& Come near, come near, come near
Vt. Close to; Get to grips with; Make closer; Try to bribe (or influence, smooth)
N. method; Way; Close to the
Vi. Near
recursive function
Recursive function
We have already seen a recursion approach on a String in the previous article, How to Reverse a String in JavaScript in 3 Different Ways ?This time we will apply the same concept on a number.
Translation:
We’ve seen recursion in string manipulation in the last article. How do you reverse strings in JavaScript in three different ways?This time we’ll apply the same concepts to Numbers.
Key words:
concept
Concept; Point of view; Thought, conception, idea; The overall impression

Algorithm Challenge

Return the factorial of the provided integer.

If the integer is represented with the letter n, a factorial is the product of all positive integers less than or equal to n.

So, flexibly?B: Well, general rules are often terrible.

For example: 5! So it’s 1 times 2 times 3 times 4 times 5, which is 120
Translation:
Challenge algorithm
Returns the factorial of a specified integer.
If integers are represented by the letter N, the factorial is the product of all positive integers less than or equal to N.
Factorial is usually written in shorthand notation N! Said.
For example: 5! So it’s 1 times 2 times 3 times 4 times 5, which is 120
The function factorialize (num) {
return num;    
}
factorialize(5);    
Key words:
represented
V. representative; Reflect; To represent (a past tense and past participle); As a… The representative of the
positive
adj.
Positive; Be sure of STH. Positive; Positive
n.
Positive; Positive; [Language] a primal adjective; Positive quantity
shorthand notation
Simplify the symbol
Provided the test cases
Factorialize (0) should return 1factorialize(5) should return 120factorialize(10) should return 3628800factorialize(20) should return 2432902008176640000
Translation:
Provide test cases:
Factorialize (0) should return 1factorialize(5) should return 120factorialize(10) should return 3628800factorialize(20) should return 2432902008176640000
Key words:
provided
Conj. If; If; In the… Under the condition of
A. provide B. provide C. provide D. provide
What is factorializing a number all about?

When you factorialize a number, you are multiplying that number by each consecutive number minus one.

If your number is 5, you would have:
5! = 5 * 4 * 3 * 2 * 1
The pattern would be:
0! = 1
1! = 1
2! = 2 * 1
3! = 3 * 2 * 1
4! = 4 * 3 * 2 * 1
5! So it’s 5 times 4 times 3 times 2 times 1
Translation:
What exactly is a digital factorial?
When you take the factorial of a number, decrease the number by 1 each time and multiply.
If the number is 5, you should look like this:
5! So it’s 5 times 4 times 3 times 2 times 1
This pattern will:
0! = 1
1! = 1
2! = 2 * 1
3! = 3 * 2 * 1
4! = 4 * 3 * 2 * 1
5! So it’s 5 times 4 times 3 times 2 times 1
Key words:
consecutive
Continuous, continuous, or continuous; Indicating the result
multiplying
Six (multiply) four times from six. Multiply; multiply. Add to; add to Breed
1. Factorialize a Number With Recursion
The function factorialize (num) {
if (num < 0)
return -1;    
Else if (num == 0)
return 1;    
The else {
return (num * factorialize(num – 1));    
}
}
factorialize(5);    
2 Factorialize a Number with a WHILE loop
The function factorialize (num) {
var result = num;    
If (num === 0 || num === 1)
return 1;    
while (num > 1) {
num–;    
result *= num;    
}
return result;    
}
factorialize(5);    
3 Factorialize a Number with a FOR loop
The function factorialize (num) {
If (num === 0 || num === 1)
return 1;    
for (var i = num – 1; i > = 1; I -) {
num *= i;    
}
return num;    
}
factorialize(5);    

About today’s article sharing here, I hope you have a harvest, about the original English please click on the original reading view (need over the wall to see, you know)

The public,
The front-end talent
Long press to identify the left two-dimensional code to follow me click below “read the original” to view the English text down down down