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
| @echo off | |
| :: | |
| :: Basic shim to call WSL executable with same name as this BAT file | |
| :: | |
| :: Copyright (c) 2020 Dale Phurrough with MIT License: | |
| :: Permission is hereby granted, free of charge, to any person obtaining a copy | |
| :: of this software and associated documentation files (the "Software"), to deal | |
| :: in the Software without restriction, including without limitation the rights | |
| :: to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| :: copies of the Software, and to permit persons to whom the Software is |
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 ruby | |
| # NOTE: Requires Ruby 2.1 or greater. | |
| # This script can be used to parse and dump the information from | |
| # the 'html/contact_info.htm' file in a Facebook user data ZIP download. | |
| # | |
| # It prints all cell phone call + SMS message + MMS records, plus a summary of each. | |
| # | |
| # It also dumps all of the records into CSV files inside a 'CSV' folder, that is created |
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) 2014 ERAL | |
| // Distributed under the Boost Software License, Version 1.0. | |
| // (See copy at http://www.boost.org/LICENSE_1_0.txt) | |
| using UnityEngine; | |
| #if UNITY_EDITOR | |
| using UnityEditor; | |
| [CustomPropertyDrawer(typeof(EnumMaskAttribute))] |