Skip to content

Instantly share code, notes, and snippets.

View sugimomoto's full-sized avatar

Kazuya Sugimoto sugimomoto

View GitHub Profile
@sugimomoto
sugimomoto / Index.razor
Created December 17, 2019 14:44
key directive test
@page "/"
@using System.Collections.Generic;
<h1>Hello, world!</h1>
Welcome to your new app.
<table>
<thead>
<tr>
@sugimomoto
sugimomoto / TeslaAPIList.html
Last active January 21, 2020 00:29
Tesla API List (Unofficial)
<a>Hello</a>
@sugimomoto
sugimomoto / SqlKata.cs
Created February 5, 2020 08:36
SqlKata by CData Sansan ADO.NET Provider
using System;
using SqlKata.Compilers;
using SqlKata.Execution;
using System.Data.CData.Sansan;
namespace CData.SqlKata.SampleProject
{
class Program
{
static void Main(string[] args)
@sugimomoto
sugimomoto / SQLServerSample.cs
Last active February 7, 2020 01:47
CData.SqlKata.SQLServerSample
using System;
using SqlKata;
using SqlKata.Execution;
using SqlKata.Compilers;
using System.Data.SqlClient;
namespace CData.SqlKata.CDataSampleProject
{
class Program
{
@sugimomoto
sugimomoto / SqlKata.cs
Last active February 7, 2020 02:15
SqlKata by CData Kintone ADO.NET Provider
using System;
using SqlKata;
using SqlKata.Execution;
using SqlKata.Compilers;
using System.Data.SqlClient;
using System.Data.CData.Kintone;
namespace CData.SqlKata.CDataSampleProject
{
class Program
{
"text": "My added comments to this Tweet ---> https:\/\/t.co\/LinkToTweet",
"user": {
"screen_name": "TweetQuoter"
},
"quoted_status": {
"text": "original message",
"user": {
"screen_name": "OriginalTweeter"
},
@sugimomoto
sugimomoto / zaico.json
Created April 3, 2020 13:34
ZAICO API Postman Collection
{
"info": {
"_postman_id": "a49944d1-5a6c-4017-9e8b-0f8b09d48eb0",
"name": "ZAICO",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "在庫データ一覧取得",
"request": {
@sugimomoto
sugimomoto / boardSampleConsoleApp.cs
Created May 3, 2020 08:19
board API SampleConsoleApp
using Newtonsoft.Json;
using RestSharp;
using System;
namespace boardSampleConsoleApp
{
class Program
{
static void Main(string[] args)
{
@sugimomoto
sugimomoto / BacklogAPIRequestSample.cs
Created May 10, 2020 02:30
BacklogAPIRequestSample.cs
using Newtonsoft.Json;
using RestSharp;
using System;
namespace BacklogAPI
{
class Program
{
static void Main(string[] args)
{