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
# -*- coding: utf-8 -*- | |
# Original by reddit.com/u/nomansuniverse. | |
# Threaded version by yours truly. | |
from __future__ import print_function | |
from multiprocessing.pool import ThreadPool | |
import argparse | |
import filecmp | |
import glob |
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
I've read quite a bit online. | |
I really don't want to pay a lawyer on FOSS license use or copyright when it has to do with open-source and Free Software. | |
My aims were to port some sofware licensed under GPLv2 to a different platform. | |
TLDR: | |
Include original Copyright license and disclaimer, and add your own copyright for the port/derivative. |
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
C:\Program Files (x86)>mklink /J "Reference Assemblies" "F:\Program Files\Reference Assemblies" | |
Junction created for Reference Assemblies <<===>> F:\Program Files\Reference Assemblies | |
C:\Program Files (x86)>mklink /J "Microsoft SDKs" "F:\Program Files\Microsoft SDKs" | |
Junction created for Microsoft SDKs <<===>> F:\Program Files\Microsoft SDKs | |
C:\Program Files (x86)>mklink /J "Microsoft Visual Studio 11.0" "F:\Program Files\Microsoft Visual Studio 11.0" | |
Junction created for Microsoft Visual Studio 11.0 <<===>> F:\Program Files\Microsoft Visual Studio 11.0 | |
C:\Program Files (x86)>mklink /J "Microsoft Web Tools" "F:\Program Files\Microsoft Web Tools" |
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
public class IOException { | |
public static void main(String[] args) { | |
String path = "C:/TSK/TSK.txt"; | |
PrintWriter pwInput = null; | |
try{ | |
File fileExample = new File(path); | |
pwInput = new PrintWriter(fileExample); |