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
javascript:(function(){var%20s=document.querySelector(".media-img");if(!s){s=document.querySelector(".media-image");}s=s.src.replace(":small",":large");window.open(s);})(); |
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
from NDCore import ConnectLib, SMSLib | |
def main(): | |
# ネットワークに接続する | |
print 'Connecting...', | |
ConnectLib.connect() | |
print 'OK' | |
# SMSを送信する | |
phone_number = 'xxxxxxxxxxx' |
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
from NDCore import ConnectLib, SMSLib | |
def main(): | |
# ネットワークに接続する | |
print 'Connecting...', | |
ConnectLib.connect() | |
print 'OK' | |
# SMSを送信する | |
phone_number = 'xxxxxxxxxxx' |
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
import time | |
import NDSPI | |
from NDCore import ConnectLib, NDHTTPLib, PowerLib | |
def main(): | |
try: | |
now = PowerLib.get_time() | |
timestamp = '{0:04d}{1:02d}{2:02d}{3:02d}{4:02d}{5:02d}'.format( | |
now['year']+2000, | |
now['month'], |
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
Install-Package System.Linq.Queryable -Version 4.3.0 | |
Install-Package WindowsAzure.Storage -Version 8.4.0 |
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.Text; | |
using System.Windows.Forms; | |
using System.IO; | |
using System.IO.MemoryMappedFiles; | |
namespace MAHMTest { | |
public partial class Form1 : Form { | |
public Form1() { | |
InitializeComponent(); |
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
Windows Registry Editor Version 5.00 | |
[HKEY_CLASSES_ROOT\Directory\shell\runas] | |
"Extended"="" | |
"NoWorkingDirectory"="" | |
@="PowerShell(管理者)ウィンドウをここに開く(&A)" | |
[HKEY_CLASSES_ROOT\Directory\shell\runas\command] | |
@="powershell.exe -noexit -command Set-Location -literalPath '%V'" |
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 <Adafruit_ZeroDMA.h> | |
#include <TFT_eSPI.h> | |
#include "AtWiFi.h" | |
#include"Free_Fonts.h" | |
TFT_eSPI tft; | |
const char* ssid = "******"; | |
const char* password = "*******"; |
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
//#define NO_WIFI | |
#ifndef NO_WIFI | |
#include <AtWiFi.h> | |
#endif | |
#include <TFT_eSPI.h> | |
TFT_eSPI tft; | |
const char* ssid = "***********"; |
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 "SAMD51_TC.h" | |
bool isLEDOn = false; | |
char time = 0; | |
void setup() | |
{ | |
//SerialUSB.begin(115200); | |
//while(!SerialUSB); | |