Developers/projects that have proven, by past actions in their repositories, to be untrustworthy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # switch to the jenkins user | |
| [root@li220-252:~] su jenkins | |
| jenkins@li220-252:/root$ | |
| # Move into the jenkins directory | |
| jenkins@li220-252:~$ cd /var/lib/jenkins/ | |
| # Intialize a git repository | |
| jenkins@li220-252:~$ git init | |
| Initialized empty Git repository in /var/lib/jenkins/.git/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.io.FileDescriptor; | |
| import java.io.FileOutputStream; | |
| import java.io.IOException; | |
| import java.io.OutputStream; | |
| import java.io.PrintStream; | |
| public class HelloWorld{ | |
| private static HelloWorld instance; | |
| public static void main(String[] args){ | |
| instantiateHelloWorldMainClassAndRun(); |
This FFmpeg command converts a .webm video file to a standard .mp4 file using the libx264 codec for video, aac codec for audio, and a CRF value of 22. The preset is set to 'slow' for higher quality encoding, and the audio bitrate is set to 128 kbps.
If the input and output filenames don't contain spaces, quotation marks or other special characters:
ffmpeg -i input.webm -c:v libx264 -preset slow -crf 22 -c:a aac -b:a 128k output.mp4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # As a condition of accessing this website, you agree to abide by the following | |
| # content signals: | |
| # (a) If a content-signal = yes, you may collect content for the corresponding | |
| # use. | |
| # (b) If a content-signal = no, you may not collect content for the | |
| # corresponding use. | |
| # (c) If the website operator does not include a content signal for a | |
| # corresponding use, the website operator neither grants nor restricts | |
| # permission via content signal with respect to the corresponding use. |