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
| #!/usr/bin/env python3 | |
| import argparse | |
| import sys | |
| def main(): | |
| parser = argparse.ArgumentParser() | |
| parser.add_argument("foo") | |
| parser.add_argument("bar", nargs="*") |
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.Drawing; | |
| /// <summary> | |
| /// A rectangle that allows creating layouts with subtractive methods. | |
| /// </summary> | |
| public struct LayoutRectangle | |
| { | |
| public int Top; | |
| public int Right; | |
| public int Bottom; |
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
| Computer Information: | |
| Manufacturer: Unknown | |
| Model: Unknown | |
| Form Factor: Laptop | |
| No Touch Input Detected | |
| Processor Information: | |
| CPU Vendor: GenuineIntel | |
| CPU Brand: Intel(R) Core(TM) i5-6300HQ CPU @ 2.30GHz | |
| CPU Family: 0x6 |
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
| // REQUIRES APACHE COMMONS LANG3!!! | |
| import org.apache.commons.lang3.SystemUtils; | |
| public class Config { | |
| private static final String CONFIG_DIRECTORY_NAME = "myappname"; | |
| public static final File CONFIG_DIRECTORY; | |
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 | |
| ## | |
| # FL Studio launcher for WINE and Jack | |
| # Version 1.4 | |
| ## | |
| ###### config ###### | |
| # Main | |
| WINE_PREFIX=$HOME/.flstudio |