Skip to content

Instantly share code, notes, and snippets.

@kensykora
kensykora / FFXIV-Automatic-OTP-Entry.md
Last active September 16, 2023 17:31
How to enable automatic OTP entry in FFXIV

How to enable automatic OTP Entry in FFXIV

Animation

This process will allow you to create a shortcut on your desktop that will enable automatic entry of your OTP code into FFXIV without having to open up the authenticator each time you log in.

It uses FFXIV QuickLauncher for doing its work.

Background

2020-07-16T15:01:49.4285879Z ##[section]Starting: Cache NuGet packages
2020-07-16T15:01:49.4292001Z ==============================================================================
2020-07-16T15:01:49.4292299Z Task : Cache
2020-07-16T15:01:49.4292523Z Description : Cache files between runs
2020-07-16T15:01:49.4292748Z Version : 2.0.1
2020-07-16T15:01:49.4292962Z Author : Microsoft Corporation
2020-07-16T15:01:49.4293259Z Help : https://aka.ms/pipeline-caching-docs
2020-07-16T15:01:49.4293562Z ==============================================================================
2020-07-16T15:01:49.7396079Z Resolving key:
2020-07-16T15:01:49.7544756Z - nuget [string]
### Keybase proof
I hereby claim:
* I am kensykora on github.
* I am kensykora (https://keybase.io/kensykora) on keybase.
* I have a public key ASChtiXL8BVkh1lYsUh_N5Rd3KmugBWdevQz2Uf4-KGaHgo
To claim this, I am signing this object:
@kensykora
kensykora / CodeChallenge_20150512.cs
Created May 12, 2015 13:51
Code Challenge for Nerdery .Net Newsletter #2
using System;
using Newtonsoft.Json;
using System.Linq;
using System.Text;
using System.Web;
using System.Security.Cryptography;
public class Program
{
static string INPUT = @"{
@kensykora
kensykora / test_gatherer_cleaned_up.py
Last active August 29, 2015 14:09
Selenium Test Script
# -*- coding: utf-8 -*-
from selenium.webdriver.support import expected_conditions as EC
from selenium.common.exceptions import NoSuchElementException
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.common.by import By
from selenium import webdriver
import unittest
class TestGatherer(unittest.TestCase):
def setUp(self):
@kensykora
kensykora / start.html
Created October 3, 2014 20:55
StartSSL "select your TLD" dropdown
<select name="ext">
<option value="2000.hu">2000.hu</option>
<option value="6bone.pl">6bone.pl</option>
<option value="aa.no">aa.no</option>
<option value="aarborte.no">aarborte.no</option>
<option value="ab.ca">ab.ca</option>
<option value="ab.se">ab.se</option>
<option value="abo.pa">abo.pa</option>
<option value="ac">ac</option>
<option value="ac.ae">ac.ae</option>
@kensykora
kensykora / Config.cs
Last active August 29, 2015 14:06
UI Unit Testing with SauceLabs while allowing local testing
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Linq;
using System.Net;
using System.Runtime.Remoting.Messaging;
namespace Website.Tests.UI
{
public static class Config
@kensykora
kensykora / Configure.ps1
Last active March 21, 2017 13:42
Getting Started with Vagrant and Windows Boxes
$windowsFeatures = @(
'Web-Server',
'Web-WebServer',
'Web-Mgmt-Console',
'Web-Mgmt-Tools'
);
Install-WindowsFeature -Name $windowsFeatures
#Workaround for IIS Permissions Issues
@kensykora
kensykora / Readme.md
Last active August 29, 2015 14:05
Running Puppet in Packer

By @dylanmei

This works for me. Maybe there's something here for you as well.

in template.json, simplified

  ...
  "provisioners": [{
      "type": "file",
 "source": "./puppet",