Skip to content

Instantly share code, notes, and snippets.

@h2ospace
h2ospace / db.php
Created October 15, 2012 20:22
FuelPHP config/db.php on MAMP
<?php
/**
* The development database settings.
*/
return array(
'default' => array(
'type' => 'mysql',
'connection' => array(
'hostname' => ':/Applications/MAMP/tmp/mysql/mysql.sock',
@h2ospace
h2ospace / .htaccess
Created February 10, 2022 01:52
IP address guard for WordPress
<FilesMatch "wp-login.php|wp-admin">
order deny,allow
deny from all
allow from xxx.xxx.xxx.xxx
</FilesMatch>
@h2ospace
h2ospace / head.html
Last active January 30, 2022 09:25
赤文字の大見出し
<h1>見出し1</h1>`
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
@h2ospace
h2ospace / index.html
Created February 25, 2020 07:51
Ajax by Vue.js with axios
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
@h2ospace
h2ospace / index.html
Created February 25, 2020 07:45
Ajax by Vue.js with jQuery
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
@h2ospace
h2ospace / index.html
Created February 25, 2020 07:27
Ajax by jQuery
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div id="news"></div>
@h2ospace
h2ospace / index.html
Created February 6, 2020 08:09
jQuery slide menu
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>首相官邸</title>
<link href="https://unpkg.com/sanitize.css" rel="stylesheet" />
@h2ospace
h2ospace / bmi.py
Last active September 9, 2019 04:35
BMI計算ツール(Python)
# 身長
height = input('身長(cm) >> ')
# 体重
weight = input('体重(kg) >> ')
height = float(height)
weight = float(weight)
# BMIを計算
@h2ospace
h2ospace / index.html
Created February 16, 2019 15:01
Vue.jsと Bootstrapで小銭計算プログラム
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>小銭の計算</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>