Skip to content

Instantly share code, notes, and snippets.

@feo52
feo52 / makepostpy.py
Created May 6, 2023 22:00
Python pywin32(win32com) : Excel Pivot Table
# coding:utf-8
def main():
o = []
with open("sample.py", mode="rt", encoding="utf-8") as f:
for line in f:
if "# NO POST #" in line:
continue
@feo52
feo52 / index.html
Created November 30, 2021 15:10
Embedding YouTube video fullscreen background
<!doctype html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>youtube-fullscreen-background</title>
<style>
:root {
--youtube-aspect-ratio: (9 / 16);
}
.video-background-fixed-contain {
@feo52
feo52 / index.html
Created November 30, 2021 15:10
::-ms-clear & ::-ms-reveal & -ms-high-contrast-adjust on Edge(Chromium) of Windows
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>-ms-vendor-prefix</title>
<style>
body { font-family: monospace; }
input:nth-of-type( 1)[type="text"]::-ms-clear { display: initial; }
input:nth-of-type( 2)[type="text"]::-ms-clear { display: none; }
@feo52
feo52 / script.cs
Created May 30, 2021 04:00
Hadoken Code HP
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Profiling;
public class script : MonoBehaviour
{
/// <summary>指の状態</summary>
private enum Finger
@feo52
feo52 / script.cs
Created May 30, 2021 04:00
Hadoken Code
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using UnityEngine;
using UnityEngine.Profiling;
public class script : MonoBehaviour
{
This file has been truncated, but you can view the full file.
@feo52
feo52 / makepostpy.py
Last active April 12, 2024 20:53
Python pywin32(win32com) : Excel
# coding:utf-8
def main():
o = []
with open("sample.py", mode="rt", encoding="utf-8") as f:
for line in f:
if "# NO POST #" in line:
continue
@feo52
feo52 / index.html
Last active October 2, 2023 07:05
css hacks 2022
<!doctype html>
<html lang="ja">
<head>
<meta charset="utf-8">
<!-- <meta name="viewport" content="width=device-width, initial-scale=1"> -->
<title>css hack</title>
<style>
body { font-family: monospace; }
summary { list-style: none; }
summary::-webkit-details-marker { display:none; }
@feo52
feo52 / index.html
Last active April 19, 2022 11:52
css hacks test
<!doctype html>
<html lang="ja">
<head>
<meta charset="utf-8">
<!-- <meta name="viewport" content="width=device-width, initial-scale=1"> -->
<title>css hack</title>
<style>
body { font-family: monospace; }
/* IE11 */ _:lang(x)::-ms-backdrop, .selector-0000 { color: blue; }
@feo52
feo52 / index.html
Last active July 19, 2017 15:00
css hacks for IE11 ( & Edge )
<!doctype html>
<html lang="ja">
<head>
<meta charset="utf-8">
<!-- <meta name="viewport" content="width=device-width, initial-scale=1"> -->
<title>css hack for IE11</title>
<style>
@media all and (-ms-high-contrast:none) {
*::-ms-backdrop, .selector-media-01 {
color: blue;