Skip to content

Instantly share code, notes, and snippets.

View qyen's full-sized avatar
🎯
Focusing

qyen

🎯
Focusing
View GitHub Profile
#slackLogContainer {
margin: 0 auto;
}
#slackLogContainer .message {
padding: 11px;
border-radius: 8px;
border: 1px #ddd solid;
display: flex;
}
#slackLogContainer .message .icon {
@qyen
qyen / rdp-jp109.json
Last active March 30, 2019 08:25
JISキーボードのMacからRDPでWindowsに接続するとき109キーみたいにするやつ
{
"title": "RDP Keyboard modification from JP_mac to 109JP",
"rules": [
{
"description": "Rotate Left Command(Caps) Alt(Option) Windows(LeftCommand) key .",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "left_gui",
@qyen
qyen / ExtensionForDataTable.cs
Created June 4, 2018 01:29
Convert IEnumerable<T> to DataTable
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
namespace qyen.toos {
public static class ExtensionForDataTable {
private const string FieldConnectorChar = "_";
@qyen
qyen / MetDateTimePicker.cs
Created May 26, 2018 08:05 — forked from takiru/MetDateTimePicker.cs
Nullable, ReadOnly, Changeable ForeColor, Changeable BackColor DateTimePicker
using System;
using System.ComponentModel;
using System.Diagnostics;
using System.Drawing;
using System.Runtime.InteropServices;
using System.Windows.Forms;
namespace Metroit.Windows.Forms
{
/// <summary>