This file contains 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
{*_* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * | |
Author: Arno Garrels <[email protected]> | |
Description: A place for common utilities. | |
Creation: Apr 25, 2008 | |
Version: V9.1 | |
EMail: http://www.overbyte.be [email protected] | |
Support: https://en.delphipraxis.net/forum/37-ics-internet-component-suite/ | |
Legal issues: Copyright (C) 2002-2023 by François PIETTE | |
Rue de Grady 24, 4053 Embourg, Belgium. |
This file contains 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 | |
echo ========================================================================== | |
echo = Tom Clancy's The Division 2 Cleaner = | |
echo = Division 2 ver. 3260693 = | |
echo = Ref https://gist.github.com/naa0yama/227888f9064e617a02f0205c4a87b2a5 = | |
echo ========================================================================== | |
set Division2_DIR=%USERPROFILE%\Documents\My Games\Tom Clancy's The Division 2\ | |
echo Division2 Directory %Division2_DIR% | |
cd /d %Division2_DIR% |
This file contains 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
/** | |
D3D11AppView.cpp | |
*/ | |
#include "pch.h" | |
#include "D3D11AppView.h" | |
using namespace Windows::ApplicationModel; | |
using namespace Windows::ApplicationModel::Core; | |
using namespace Windows::ApplicationModel::Activation; |
This file contains 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
// From https://github.com/Dylan-H/NotePadUWP/ | |
#include "pch.h" | |
#include "EmptyObjectToObjectConverter.h" | |
#include "ConverterTools.h" | |
namespace winrt::NotePad::implementation | |
{ | |
DependencyProperty EmptyObjectToObjectConverter::_NotEmptyValueProperty = | |
DependencyProperty::Register(L"NotEmptyValue", winrt::xaml_typename<IInspectable>(), winrt::xaml_typename<NotePad::EmptyObjectToObjectConverter>(), PropertyMetadata(nullptr)); | |
DependencyProperty EmptyObjectToObjectConverter::_EmptyValueProperty = | |
DependencyProperty::Register(L"EmptyValue", winrt::xaml_typename<IInspectable>(), winrt::xaml_typename<NotePad::EmptyObjectToObjectConverter>(), PropertyMetadata(nullptr)); |
This file contains 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 <Unknwn.h> | |
#include <winrt/Windows.System.h> | |
#include <winrt/Windows.UI.Composition.Desktop.h> | |
#include <windows.ui.composition.interop.h> | |
#include <ShellScalingAPI.h> | |
#include <DispatcherQueue.h> | |
extern "C" IMAGE_DOS_HEADER __ImageBase; | |
using namespace winrt; |
This file contains 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
unit NVOS.JsonParser; | |
interface | |
uses System.JSON.Builders, | |
System.JSON.Types, | |
System.JSON.Writers, | |
System.JSON.Readers, | |
System.SysUtils, | |
System.StrUtils, |
This file contains 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
.header { | |
position: fixed; | |
background-color: #000; | |
width: 100%; | |
height: 80px; | |
max-width: 1230px; | |
left: 50%; | |
top: 0; | |
transform: translateX(-50%) translateX(-25px); | |
z-index: 7; |
This file contains 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
/* css prefix */ | |
/* | |
div { | |
@include css3-prefix(transform, scale3d(2.5, 2, 1.5)); | |
} | |
*/ | |
@mixin css3-prefix($prop, $value) { | |
-webkit-#{$prop}: #{$value}; | |
-moz-#{$prop}: #{$value}; | |
-ms-#{$prop}: #{$value}; |
This file contains 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
// example font-face file | |
/* ----------------------------------------- | |
Geometrica Font | |
------------------------------------------*/ | |
// Source: | |
// ------- | |
// DesignCuts: Exceptional Best-Selling Fonts Complete | |
// Latinotype |
This file contains 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
# | |
# Install the MYSQL driver | |
# gem install mysql2 | |
# | |
# Ensure the MySQL gem is defined in your Gemfile | |
# gem 'mysql2' | |
# | |
# And be sure to use new-style password hashing: | |
# http://dev.mysql.com/doc/refman/5.0/en/old-client.html | |
development: |
NewerOlder