- npm v5.2以上
- それ以前のバージョンはnpxのパッケージをグローバルにインストール
- Vue 2
$ npm install vue-cli
// 気象庁防災情報XMLフォーマット形式電文の公開(PULL型)の高頻度フィード(随時)を取得 | |
// see: http://www.data.jma.go.jp/developer/xmlpull.html | |
function pullMeteoHeadline() { | |
var url = 'http://www.data.jma.go.jp/developer/xml/feed/extra.xml'; | |
var xml = UrlFetchApp.fetch(url).getContentText(); | |
var xmlDoc = XmlService.parse(xml); | |
var rootDoc = xmlDoc.getRootElement(); | |
var nsDefault = XmlService.getNamespace("", 'http://www.w3.org/2005/Atom'); | |
private readonly List<char> newlineChar = Environment.NewLine.ToCharArray().ToList(); | |
/// <summary> | |
/// CSVファイルを読込、Listに変換する。 | |
/// | |
/// 改行文字やカンマを含む値は | |
/// ダブルクォーテーションで囲んであるものとする。 | |
/// </summary> | |
/// <param name="filepath">CSVファイルのパス</param> | |
/// <returns></returns> |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>DomParser innerHtml Test</title> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> | |
</head> | |
<body> |
Public Sub SelectA1() | |
'描画停止 | |
Application.ScreenUpdating = False | |
Dim firstIndex As Integer | |
firstIndex = 0 | |
Dim Target As Worksheet | |
For Each Target In Worksheets | |
'Debug.Print target.Name |
Add-Type -Assembly System.Windows.Forms | |
function Format-Time | |
{ | |
Param([int]$value) | |
<# | |
.description | |
計測時間(秒)を時分秒に変換します | |
#> |
using System; | |
using System.Diagnostics; | |
using System.Threading; | |
using System.Windows.Automation; | |
namespace ConsoleApplication1 | |
{ | |
class Program | |
{ | |
static AutomationFocusChangedEventHandler focusHandler = null; |