AppCmd.exe
IIS 7 command-line tool used to perform common IIS administrative tasks such as creating new sites, stopping/starting services, and viewing status of the site.
appcmd (command) (object-type) <identifier> </parameter1:value1 ...>
options hid_apple fnmode=2 | |
options hid_apple swap_opt_cmd=1 |
// | |
// main.cpp | |
// LuaTests | |
// | |
// Created by Marco Mastropaolo on 08/06/16. | |
// Copyright © 2016 Marco Mastropaolo. All rights reserved. | |
// | |
#include <iostream> | |
#include "../include/lua.hpp" |
using System; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public struct StateAnimatorData<T> | |
{ | |
public StateAnimator<T> Animator { get; internal set; } | |
public StateAnimatorHandler<T> AnimatorState { get; internal set; } | |
public T State { get; internal set; } | |
public float StateTime { get; internal set; } |
// doesn't necessary compile, nor it is necessarily comprehensive but seems a good start ;) | |
public enum ReflectionSpecialNameType | |
{ | |
IndexGetter, | |
IndexSetter, | |
ImplicitCast, | |
ExplicitCast, | |
BinaryOperator, |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using MoonSharp.Interpreter; | |
namespace PerformanceComparison | |
{ | |
class Sample |
There are two ways of installing meld on osx (May 2023), using brew
and .dmg
package (from @yousseb). Since I found https://yousseb.github.io/meld/, I've installed it with .dmg
package, but having macOS Ventura Version 13.4 (22F66)
in place, it's not even starting for me. So I tried brew
installation, and the application is working as expected, including symlink to start it from the terminal.
brew install --cask meld
# set meld as your default git mergetool
This re-styles your sublime text sidebar to be dark, it fits default Monokai theme.
Save the Default.sublime-theme file into packages/Theme - Default, make a backup of your original if you want to be able to go back easily.
Based on:
{ "keys": ["home"], "command": "move_to", "args": {"to": "bol"} }, | |
{ "keys": ["end"], "command": "move_to", "args": {"to": "eol"} } |