Skip to content

Instantly share code, notes, and snippets.

View nuitsjp's full-sized avatar

Atsushi Nakamura nuitsjp

View GitHub Profile
@nuitsjp
nuitsjp / Multiple.yml
Created October 25, 2024 20:40
GistGet Multiple
-id: Multiple
@nuitsjp
nuitsjp / Multiple.yml
Created October 25, 2024 20:40
GistGet Multiple
- id: Multiple
@nuitsjp
nuitsjp / GistGet.yaml
Last active October 28, 2024 02:00
GistGet Test
7zip.7zip: {}
Microsoft.VisualStudioCode.Insiders:
override: /VERYSILENT /NORESTART /MERGETASKS=!runcode,addcontextmenufiles,addcontextmenufolders,associatewithfiles,addtopath
Zoom.Zoom:
uninstall: true
@nuitsjp
nuitsjp / GistGet Test-Set-Gist
Last active November 6, 2024 21:39
GistGet Test-Set-Gist
First Updated at 2024-10-28 16:09:44
@nuitsjp
nuitsjp / GistGet Test-Get-Gist
Last active October 21, 2024 08:10
GistGet Test-Get-Gist
First
@nuitsjp
nuitsjp / GistGet.yml
Last active November 16, 2024 02:27
GistGet
7zip.7zip:
Adobe.Acrobat.Reader.64-bit:
Amazon.Kindle:
AntibodySoftware.WizTree:
CoreyButler.NVMforWindows:
CubeSoft.CubePDF:
CubeSoft.CubePDFUtility:
DeepL.DeepL:
DimitriVanHeesch.Doxygen:
dotPDN.PaintDotNet:
@nuitsjp
nuitsjp / pre-configuration.ps1
Created August 12, 2020 21:28
Scoop-Playbookのインストール前に必要だったこと
scoop install 7zip
scoop install sudo
scoop install dark
scoop install innounp
sudo Add-MpPreference -ExclusionPath 'C:\ProgramData\scoop'
sudo Add-MpPreference -ExclusionPath $home\scoop
Set-ItemProperty 'HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem' -Name 'LongPathsEnabled' -Value 1
@nuitsjp
nuitsjp / GitHubCounter.cs
Last active October 18, 2024 03:35
Count download of GitHub release module.
using Newtonsoft.Json.Linq;
using System;
using System.Net.Http;
using System.Linq;
using System.Threading.Tasks;
public static class GitHubCounter
{
public static async Task CountDownload(string owner, string repository)
{
@nuitsjp
nuitsjp / GitHubCommitCounter.cs
Created March 21, 2019 14:29
Count commits to a specific owner's repository for a specific time period.
using Newtonsoft.Json.Linq;
using System;
using System.Net.Http;
using System.Linq;
using System.Threading.Tasks;
public static class GitHubCommitCounter
{
public static async Task Count(string owner, DateTime minDateTime)
{
@nuitsjp
nuitsjp / Enumに別名?をつけて表示する.cs
Last active March 13, 2020 21:45
Enumに別名?をつけて表示する
class Program
{
static void Main(string[] args)
{
Console.WriteLine(Gender.Female.ToJapanese());
Console.ReadLine();
}
}
public enum Gender