This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- BigQueryのSQL | |
WITH moj_surface1 AS ( | |
SELECT * | |
FROM unnest([ | |
STRUCT('202404' AS var,'43443-3300-22.zip' AS `filename`,'F000000001' AS surface_id,'C000000199' AS curve_id,50 AS num), | |
('202404','43443-3300-22.zip','F000000001','C000000200',51), | |
('202404','43443-3300-22.zip','F000000001','C000000201',52), | |
('202404','43443-3300-22.zip','F000000001','C000000202',53), | |
('202404','43443-3300-22.zip','F000000001','C000000203',54), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from contextlib import contextmanager | |
@contextmanager | |
def hoge(): | |
try: | |
print("start") | |
yield "Hello, " | |
finally: | |
print("end") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aaaa=['あああああああああああああああああああああああああああ','あああああああああああああああああああああああああああ','あああああああああああああああああああああああああああ','あああああああああああああああああああああああああああ','あああああああああああああああああああああああああああ','あああああああああああああああああああああああああああ','あああああああああああああああああああああああああああ','あああああああああああああああああああああああああああ','あああああああああああああああああああああああああああ','あああああああああああああああああああああああああああ','あああああああああああああああああああああああああああ','あああああああああああああああああああああああああああ','あああああああああああああああああああああああああああ','あああああああああああああああああああああああああああ'] | |
print(aaaa) | |
#=> SyntaxError: Non-UTF-8 code starting with '\xe3' in file /Users/yancya/piyo.py on line 1, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<title>カレーのレシピ</title> | |
</head> | |
<body> | |
<article> | |
<h1>カレーのレシピ</h1> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WITH teams AS ( | |
SELECT 1 AS id | |
, 'yancya-club' AS name) | |
, members AS ( | |
SELECT 1 AS id | |
, 'yancya' AS name | |
, 1 AS team_id) | |
SELECT * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WITH a AS ( | |
SELECT 1 AS n UNION SELECT 2 AS n | |
), b AS ( | |
SELECT 2 AS n UNION SELECT 3 AS n | |
), t AS ( | |
SELECT a.n AS n, b.n AS b_n, COUNT(b.n) OVER() AS b_count | |
FROM a LEFT OUTER JOIN b USING(n) | |
) | |
SELECT n | |
FROM t |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TEMP FUNCTION safe_check(queens ARRAY<STRUCT<x INT64, y INT64>>) RETURNS BOOLEAN AS (( | |
SELECT COUNT(x) = COUNT(DISTINCT x) AND | |
COUNT(y) = COUNT(DISTINCT y) AND | |
COUNT(x+y) = COUNT(DISTINCT x+y) AND | |
COUNT(x-y) = COUNT(DISTINCT x-y) | |
FROM UNNEST(queens) | |
)); | |
CREATE TEMP FUNCTION print_queen(x INT64) RETURNS STRING AS ( | |
(SELECT COALESCE(STRING_AGG('.', ''), '') FROM UNNEST(GENERATE_ARRAY(1, x-1))) || |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Key = ['a','b','c'] | |
type Value = [string, number, boolean] | |
type Obj = {a: string, b: number, c: boolean}; | |
const keys: Key = ['a','b','c']; | |
const values: Value = ['a', 1, true]; | |
const object: Obj = keys.reduce((acc, key, index) => { | |
acc[key] = values[index]; | |
return acc; | |
}, {}) as Obj; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- psql -f create_db.sql postgres | |
CREATE DATABASE hogehoge; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "yancya/php_sandbox", | |
"authors": [ | |
{ | |
"name": "yancya", | |
"email": "[email protected]" | |
} | |
], | |
"require": { | |
"mthaml/mthaml": "*" |
NewerOlder