各種SNSにおいて何か問題があったとき、他のサービスにいるのが本人であるかを証明するためのポータルとしてGistを用意しました。必要なときにご参照ください。少なくともここにいます。
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
CREATE TABLE `ExpressWay` ( | |
gid serial, | |
`road_id` varchar(10), | |
`prefecture_id` varchar(10), | |
`prefecture` varchar(20), | |
`road_name` varchar(128), | |
`road_num` varchar(32), | |
`popular_road_name` varchar(128)); | |
ALTER TABLE `ExpressWay` ADD PRIMARY KEY (gid); | |
ALTER TABLE `ExpressWay` ADD COLUMN geom MULTIPOLYGON REF_SYSTEM_ID=0; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
graph TD;
A[hey jude]-->B[don't]-->C[be afraid];
B-->E[make it bad];
B-->F[let me down];
C-->G[you were made to go out and get her];
E-->H[take a sad song and make it better];
F-->I[you habe found her, now go and get her];
G-->J[remember to];
H-->J;
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
public class MyMediaPlayer | |
{ | |
private Android.Media.MediaPlayer MediaPlayerInstance { get; set; } | |
public void CreateMediaPlayer() | |
{ | |
this.MediaPlayerInstance = new Android.Media.MediaPlayer(); | |
} | |
public void Play(System.IO.Stream stream) |
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
<Page | |
x:Class="App1.MainPage" | |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:notv1709="http://schemas.microsoft.com/winfx/2006/xaml/presentation?IsApiContractNotPresent(Windows.Foundation.UniversalApiContract, 5)" | |
xmlns:v1709="http://schemas.microsoft.com/winfx/2006/xaml/presentation?IsApiContractPresent(Windows.Foundation.UniversalApiContract, 5)" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | |
mc:Ignorable="d" | |
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"> |
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
public sealed partial class MainPage : Page | |
{ | |
public MainPage() | |
{ | |
this.InitializeComponent(); | |
} | |
protected override void OnNavigatedTo(NavigationEventArgs e) | |
{ | |
this.Map.Loaded += Map_Loaded; |
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.Diagnostics; | |
using System.IO; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using Windows.Devices.Enumeration; | |
using Windows.Devices.Geolocation; | |
using Windows.Devices.SerialCommunication; |
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
private string text = | |
"<Canvas xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\" Height=\"99.681\" Width=\"111.169\">\r\n" + | |
"</Canvas>"; |
NewerOlder