Skip to content

Instantly share code, notes, and snippets.

View sitsh's full-sized avatar

wilsonjw sitsh

  • ebitoo
  • shagnhai
View GitHub Profile
using System;
using System.Collections.Generic;
using System.IO;
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Text;
using System.Threading.Tasks;
using System.Web.Http;
http://35.176.254.4:8000
http://btsha.com:41017
http://47.104.167.217

笔记记录下 swagger 配置过程 quote from

We migrated a project to ASP.NET Core 2 (preview) and needed to configure swagger.

In ASP.NET Core v1 we used this code to load the auto generated xml file into swagger:

services.ConfigureSwaggerGen(options =>
@sitsh
sitsh / generate_dto.sql
Last active July 12, 2018 02:20 — forked from gemyago/generate_dto.sql
TSQL script to generate POCO/DTO from database table
DECLARE @tableName NVARCHAR(MAX), @schemaName NVARCHAR(MAX), @className NVARCHAR(MAX)
--------------- Input arguments ---------------
SET @tableName = 'Incidents'
SET @schemaName = 'dbo'
SET @className = 'IncidentDto'
--------------- Input arguments end -----------
DECLARE tableColumns CURSOR LOCAL FOR
SELECT cols.name, cols.system_type_id, cols.is_nullable FROM sys.columns cols
@sitsh
sitsh / ContentType.cs
Created January 2, 2019 03:59 — forked from scottoffen/ContentType.cs
C# ContentType Enum full source code
using System;
using System.Reflection;
namespace Grapevine
{
public enum ContentType
{
[Metadata(Value = "application/x-authorware-bin", IsBinary = true)]
AAB,
wget -O- http://down.80host.com/iso/dd/WS2008R2Enterprise-Joodle-Template.gz |gunzip|dd of=/dev/vda
wget -O- http://down.80host.com/iso/dd/Windows2012R2-Joodle-Template.gz |gunzip|dd of=/dev/vda
Username: Administrator
Password: Password147
wget -O- http://down.80host.com/iso/dd/Windows7-Joodle-Template.gz |gunzip|dd of=/dev/vda
wget -O- http://down.80host.com/iso/dd/Windows8.1-Joodle-Template.gz |gunzip|dd of=/dev/vda
Username: Admin
# GLiNet MT300N-V2 安装 SSR plus 插件
GLiNet 是一家 生产 便携路由的国内厂商 好像外销为主。
最主要的是他家 路由系统采用的是开源 OpenWrt 系统 并在github 上开源 并提供sdk 和 很多插件
但是国内政策的关系 国内买到的路由器固件内 并没有提供直接安装 SS SSR V2ray 的方法。
经过在 恩三论坛 学习了下(www.right.com.cn) 已经成功把lean 开源的(https://github.com/coolsnowwolf/lede.git) SSR plus 插件 成功的安装到了 MT300N-V2 固件中,下面记录一些安装步骤。
# Caddy Server
> 官网 https://caddyserver.com/
## Caddy 是用Go 写的一个webServer
* 集成 Let's Encrypt 自动签发证书
* 内置 支持Http/2
* 内置 支持 TLS 1.3
* 配置简单容易上手
#Certify The Web 复制请求成功的证书 pfx 文件 到指定目录的 ps 脚本
param($result) # required to access the $result parameter
# object containing all information Certify has about the saved Site
$result.ManagedItem
# the path to the created/renewed certificate PFX file
#$result.ManagedItem.CertificatePath # ex: "C:\ProgramData\Certify\certes\assets\pfx\00f9e07e-83ca-4029-a173-4b704ee78996.pfx"
@sitsh
sitsh / gist:3300e36a5ddc6f78489ddf44f5a6d26d
Created August 22, 2021 17:09
MoeClub InstallNET.sh new
万能不更新了,今天更新了一下
1.新增对 Oracle AMD,Oracle ARM全面支持. 可支持从 Ubuntu, Oracle Linux 等系统网络重装.
2.更新 dd 镜像的基础系统版本.
3.移除对外部 wget 的依赖.
4.新增 -port 参数, 可更改默认SSH端口.
5.更新 内置的网络参数计算 逻辑.
6.更新 grub 配置文件定位逻辑, 可支持任意引导grub的系统.