Skip to content

Instantly share code, notes, and snippets.

View yoshiiz's full-sized avatar

よしいず yoshiiz

View GitHub Profile
@yoshiiz
yoshiiz / play_audio_cont_loop.html
Last active August 11, 2023 07:04
[JavaScript] 複数の音楽ファイルを連続で再生しループする。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>連続再生ループ</title>
</head>
<body>
<audio id='audio'></audio>
<script type="text/javascript">
'use strict';
@yoshiiz
yoshiiz / singlylinkedlist.c
Last active October 23, 2017 14:30
[C言語] 単方向リスト
#include <stdio.h>
#include <stdlib.h>
/* ノード */
typedef struct Node_tag {
int data;
struct Node_tag *next;
} Node;
/* 単方向リスト */