Skip to content

Instantly share code, notes, and snippets.

View tkoyama010's full-sized avatar
:shipit:
Working from future

Tetsuo Koyama tkoyama010

:shipit:
Working from future
View GitHub Profile
@akaszynski
akaszynski / lego.py
Created October 10, 2022 15:42
gmsh + pymapdl + cadquery
#!/usr/bin/env python
# coding: utf-8
# In[12]:
import cadquery as cq
import pyvista as pv
from ansys.mapdl.reader import save_as_archive
@tkoyama010
tkoyama010 / techbookfest7-manual
Last active September 20, 2019 07:33 — forked from yagitch/techbookfest7-manual
技術書典7売り子マニュアル
これはyagitch.com独自のマニュアルを元にサークルGetFEM++用に修正したものです
更新履歴
2019/4/11 初版作成
2019/9/20 サークルGetFEM++用に修正
持ち物
* 連絡用携帯電話(サークル入場者はQRコードを表示できるようにすること)
* 昼食
* 飲み物(蓋付きのもの)
@vimyum
vimyum / markdown.js
Last active December 8, 2020 10:47
extended markdown plugin for Reveal.js
/**
* The reveal.js markdown plugin. Handles parsing of
* markdown inside of presentations as well as loading
* of external markdown documents.
*/
(function( root, factory ) {
if (typeof define === 'function' && define.amd) {
root.marked = require( './marked' );
root.RevealMarkdown = factory( root.marked );
root.RevealMarkdown.initialize();
@onotchi
onotchi / BlendShapeValueChangerYuno.cs
Created May 11, 2017 13:56
高崎柚乃ちゃんの表情を変化させる
using System;
using System.Collections.Generic;
using System.Linq;
using UnityEngine;
namespace Onoty3D
{
public class BlendShapeValueChangerYuno : MonoBehaviour
{
/// <summary>
@PurpleBooth
PurpleBooth / README-Template.md
Last active April 29, 2025 02:22
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

"""
Animation of a head slicing.
Based on a BSD-like licenced code by Gael Varoquaux
http://docs.enthought.com/mayavi/mayavi/auto/example_mri.html
Result:
http://i.imgur.com/EJZELfi.gif
"""
@sunnyone
sunnyone / psxaml.ps1
Created June 11, 2012 04:53
PowerShell XAML Example
Add-Type -AssemblyName presentationframework
[xml]$XAML = @'
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="100" Width="20">
<StackPanel>
<TextBox Name="textWeather" />
<Button Name="buttonGet" Content="Get"/>