View datetimeformatter.swift
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
import UIKit | |
/* | |
Date型から任意のフォーマットで文字列を生成する場合 | |
*/ | |
// Reference | |
// https://developer.apple.com/documentation/foundation/dateformatter | |
var date = Date() |
View ZoomReplication.ps1
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
# ライブラリ読み込み | |
[void][System.Reflection.Assembly]::LoadWithPartialName("System.Data") | |
# DB接続 | |
$connectionString = "DSN=CData API Zoom;" | |
$odbcCon = New-Object System.Data.Odbc.OdbcConnection($connectionString) | |
$odbcCon.Open() | |
# コマンドオブジェクト作成 | |
$odbcCmd = New-Object System.Data.Odbc.OdbcCommand |
View KING OF TIME.postman_collection.json
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
{ | |
"info": { | |
"_postman_id": "56c4abe2-794a-4136-bbe7-c6313f0c2140", | |
"name": "KING OF TIME", | |
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" | |
}, | |
"item": [ | |
{ | |
"name": "企業情報データを取得", | |
"request": { |
View SampleJRuby.rb
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
require 'java' | |
require 'rubygems' | |
# CData Salesforce JDBC Driver のjarファイルパスを指定 | |
require "C:/Program Files/CData/CData JDBC Driver for Salesforce 2019J/lib/cdata.jdbc.salesforce.jar" | |
# Salesforce への接続文字列を設定 | |
url = "jdbc:salesforce:User=XXXX;Password=XXXX;Security Token=XXXX;" | |
conn = java.sql.DriverManager.getConnection(url) | |
stmt = conn.createStatement |
View CDataAPIServerAutocomplete.js
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
(function () { | |
'use strict'; | |
// オートコンプリートの設定フィールド | |
const AutocompleteSetting = | |
{ | |
// 商品名:オートコンプリートの対象フィールド | |
InputName: 'fid12', | |
// 明細行数 |
View Issue.cs
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
using System; | |
using System.Collections.Generic; | |
using System.Text; | |
namespace BacklogAPI | |
{ | |
public class Issue | |
{ | |
public int id { get; set; } |
View BacklogAPIRequestSample.cs
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
using Newtonsoft.Json; | |
using RestSharp; | |
using System; | |
namespace BacklogAPI | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ |
View boardSampleConsoleApp.cs
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
using Newtonsoft.Json; | |
using RestSharp; | |
using System; | |
namespace boardSampleConsoleApp | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ |
View zaico.json
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
{ | |
"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": { |
View gist:951394752579c255f7ca7702f38ceeb5
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
{ | |
"text": "My added comments to this Tweet ---> https:\/\/t.co\/LinkToTweet", | |
"user": { | |
"screen_name": "TweetQuoter" | |
}, | |
"quoted_status": { | |
"text": "original message", | |
"user": { | |
"screen_name": "OriginalTweeter" | |
}, |
NewerOlder