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 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
# | |
# File: Get-SqliteTableColumns.ps1 | |
# | |
# Author: Akira Sugiura ([email protected]) | |
# | |
# | |
# Copyright (c) 2024 Akira Sugiura | |
# | |
# This software is MIT License. | |
# |
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 () { | |
let user = 'urasandesu'; | |
let today = new Date(); | |
let lastMonth = new Date(); | |
lastMonth.setMonth(today.getMonth() - 1); | |
let since = lastMonth.toISOString().slice(0, 10); | |
let until = today.toISOString().slice(0, 10); | |
location.href = 'https://twitter.com/search?q=' + encodeURIComponent(`from:${user} include:nativeretweets since:${since} until:${until}`); | |
})(); |
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
[CmdletBinding()] | |
param ( | |
[Parameter(Mandatory = $True)] | |
[string] | |
$Workspace | |
) | |
Write-Verbose ('Workspace : {0}' -f $Workspace) | |
$psi = New-Object System.Diagnostics.ProcessStartInfo |
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 Alea; | |
using Alea.CSharp; | |
using System; | |
using System.Threading; | |
namespace AleaCheckKernelProgressSample | |
{ | |
class Program | |
{ | |
static void Main(string[] args) |
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 FSharp.Data; | |
using FSharp.Data.Runtime; | |
using FSharp.Data.Runtime.StructuralTypes; | |
using Microsoft.FSharp.Collections; | |
using System; | |
using System.Globalization; | |
using System.Linq; | |
class Program | |
{ |
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.Diagnostics; | |
using System.Threading; | |
using System.Threading.Tasks; | |
namespace Synq | |
{ | |
class Program | |
{ | |
static void Main(string[] args) |
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 NUnit.Framework; | |
using System.Diagnostics; | |
namespace RunSettings2017 | |
{ | |
[TestFixture] | |
public class Class1 | |
{ | |
[Test] | |
public void ProcessNameTest() |
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
[12d8:0001][2017-04-09T16:02:12] Error 0x80041643: | |
Package 'Win10SDK_10.0.15063.UWP,version=10.0.15063.15' failed to create layout cache. The return code of the layout creation is: 1. | |
[12d8:0001][2017-04-09T16:02:13] Error 0x80041643: | |
Package 'Win10SDK_10.0.15063.UWP.Native,version=10.0.15063.14' failed to create layout cache. The return code of the layout creation is: 1. | |
[12d8:0001][2017-04-09T16:02:14] Error 0x80041643: | |
Package 'Win10_Emulator_10.0.15063,version=10.0.15063.12,chip=x64' failed to create layout cache. The return code of the layout creation is: 1. | |
[12d8:0001][2017-04-09T16:02:15] Error 0x80041643: | |
Package 'Win10SDK_10.0.14393.795,version=10.0.14393.79504' failed to create layout cache. The return code of the layout creation is: 1. | |
[12d8:0001][2017-04-09T16:02:17] Error 0x80041643: | |
Package 'Win10SDK_10.0.10586.212,version=10.0.10586.21211' failed to create layout cache. The return code of the layout creation is: 1. |
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
// DbgHelp2013.cpp : Defines the entry point for the console application. | |
// | |
#include "stdafx.h" | |
#include <Dbghelp.h> | |
#include <iostream> | |
#include <string> | |
int _tmain(int argc, _TCHAR* argv[]) | |
{ |
NewerOlder