This file contains hidden or 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.Linq; | |
using System.Net.Http; | |
using System.Net.Http.Headers; | |
using System.Text; | |
using System.Text.RegularExpressions; | |
using System.Threading.Tasks; | |
using HtmlAgilityPack; | |
using ResetWlan.Properties; |
This file contains hidden or 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.Linq; | |
using System.Windows; | |
using System.Windows.Input; | |
using System.Windows.Media; | |
using System.Windows.Media.Imaging; | |
namespace CapyPuzzleSolver | |
{ |
This file contains hidden or 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
#include <IRremote.h> | |
int RECV_PIN = 11; | |
IRrecv irrecv(RECV_PIN); | |
decode_results results; | |
void setup() | |
{ |
This file contains hidden or 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
#include <IRremote.h> | |
IRsend irsend; | |
int zentouPin = 2; | |
int syoutouPin = 4; | |
unsigned int zentouRaw[131] = { | |
4100, 1600, 650, 250, 600, 1200, 600, 250, 650, 1200, | |
650, 250, 600, 1200, 650, 250, 600, 1250, 600, 250, | |
600, 1250, 600, 250, 600, 1200, 650, 1200, 600, 300, | |
600, 1200, 600, 300, 600, 1250, 550, 1250, 600, 1200, | |
600, 1250, 600, 300, 550, 300, 600, 1250, 600, 1250, |
This file contains hidden or 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
// | |
// Qiita2Crowi.cs | |
// | |
// Created by YDKK on 2017/12/14. | |
// Copyright © 2017 YDKK. Licensed under MIT. | |
// | |
using System; | |
using System.Collections.Generic; | |
using System.Globalization; | |
using System.IO; |
This file contains hidden or 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
// | |
// QiitaLinkFixer.cs | |
// | |
// Created by YDKK on 2017/12/14. | |
// Copyright © 2017 YDKK. Licensed under MIT. | |
// | |
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; |