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
| #!/bin/bash | |
| cd svnroot | |
| mkdir $1 | |
| cd $1 | |
| svnadmin create --fs-type fsfs ./ | |
| chown -R www-data:www-data ./ | |
| chmod -R g+rws ./ | |
| cd ../.. |
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
| #!/bin/bash | |
| nohup java -Xmx256M -Xms256M -jar ./minecraft_server.jar nogui & |
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
| :while 1 | |
| "C:\Program Files (x86)\Steam\SteamApps\common\Universe Sandbox\Universe Sandbox.exe" | |
| ping -n 8 127.0.0.1 > NUL 2>&1 | |
| TASKKILL /f /im "Universe Sandbox.exe" | |
| ping -n 3 127.0.0.1 >NUL | |
| goto :while 1 |
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
| using System; | |
| class Program | |
| { | |
| const int MAX_TEST = 100; | |
| const int MAX_PHASE = 10; | |
| const int MAX_LOOP = 10000000; | |
| public static void Main ( string [] args ) | |
| { |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.ComponentModel; | |
| using System.Data; | |
| using System.Drawing; | |
| using System.Linq; | |
| using System.Reflection; | |
| using System.Runtime.InteropServices; | |
| using System.Text; | |
| using System.Threading.Tasks; |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Net; | |
| using System.Net.NetworkInformation; | |
| using System.Text; | |
| using System.Threading; | |
| using System.Windows.Forms; | |
| namespace DdnsUpdater | |
| { |
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
| #include <stdio.h> | |
| #include <Windows.h> | |
| int main(void) | |
| { | |
| bool start = false; | |
| int c = 0; | |
| char str[32] = {0, }; | |
| bool exit = true; |
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
| using System; | |
| using System.IO; | |
| using System.Text; | |
| namespace OpenCLTest | |
| { | |
| class Program | |
| { | |
| static void Main ( string [] args ) | |
| { |
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
| #include <winsock.h> | |
| #include <Windows.h> | |
| #include <stdio.h> | |
| #pragma comment (lib, "ws2_32.lib") | |
| int main(void) | |
| { | |
| WSADATA wsaData = { 0, }; | |
| struct in_addr addr = { 0, }; |
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
| ffmpeg -i input1.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate1.ts | |
| ffmpeg -i input2.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate2.ts | |
| ffmpeg -i "concat:intermediate1.ts|intermediate2.ts" -c copy -bsf:a aac_adtstoasc output.mp4 |
OlderNewer