Skip to content

Instantly share code, notes, and snippets.

View acid-chicken's full-sized avatar

Acid Chicken (硫酸鶏) acid-chicken

View GitHub Profile
Sub Main()
Console.Title = "ACID CALC"
Dim Result As Decimal
Dim Count As Long
Parallel.For(1, CLng(Math.Pow(Decimal.MaxValue, 1D / 3D) - Math.Pow(Decimal.MaxValue, 1D / 9D)),
Sub(index)
Count += 1
Result += 2 / (index + index ^ 3)
Console.WriteLine("{0} Count:{1}", Result, Count)
End Sub)
@acid-chicken
acid-chicken / index.html
Last active January 21, 2017 01:22
例のアレ
<style>
@charset 'UTF-8';
@font-face {
font-family: 'Noto Sans Japanese';
font-style: normal;
font-weight: 100;
src: url(https://fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Thin.woff2) format('woff2'), url(https://fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Thin.woff) format('woff'), url(https://fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Thin.otf) format('opentype');
}
body {
background-color: #222426;
<!DOCTYPE html>
<meta charset="UTF-8" />
<style>
@charset 'UTF-8';
@font-face {
font-family: 'Noto Sans Japanese';
font-style: normal;
font-weight: 100;
src: local('Noto Sans CJK JP Thin'),
url(https://fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Thin.woff2) format('woff2'),
using System;
using System.Collections.Generic;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace ImageLoad
namespace ImageLoad
{
partial class MainForm
{
/// <summary>
/// 必要なデザイナー変数です。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
using System;
using System.Windows.Forms;
namespace ImageLoad
{
static class Program
{
/// <summary>
/// アプリケーションのメイン エントリ ポイントです。
/// </summary>
namespace ImageLoad
{
partial class MainForm
{
/// <summary>
/// 必要なデザイナー変数です。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
@acid-chicken
acid-chicken / index.html
Created July 17, 2017 06:26
Visual Studio
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Splash Screen</title>
<style>
body {
font-family: 'Segoe UI';
@acid-chicken
acid-chicken / 0.txt
Last active July 25, 2017 12:51
(5x10^n)!
720
/*
* F i r e f o x は い い ぞ
*/
:root {
-webkit-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}