| Author: | draftcode |
|---|---|
| Date: | 2011-11-11T13:18:07+09:00 |
| ID: | 289a0136-0c1c-11e1-a06b-040ccee352e6 |
This file contains hidden or 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
| var fs = require('fs'); | |
| var json = JSON.parse(fs.readFileSync('./test.json', 'utf8')); | |
| console.log(json.marker[0].name); |
This file contains hidden or 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
| using System; | |
| using System.Linq; | |
| using System.Collections; | |
| using System.Collections.Generic; | |
| using static System.Console; | |
| using static System.Math; | |
| using static NotFounds.MyMath; | |
| using static NotFounds.MyUtility; | |
| namespace NotFounds |
This file contains hidden or 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
| using System; | |
| using System.Collections.Generic; | |
| using System.Drawing; | |
| using System.Drawing.Imaging; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Runtime.InteropServices; | |
| using System.Text; | |
| using System.Threading.Tasks; |
- CARTA HOLDINGS(旧VOYAGE GROUP)
- 技術広報が新卒研修<Open AIハッカソン>をスパイしてみた - (2023/04/11)
- @t_wadaに学ぶテスト駆動開発【CARTA 23新卒研修】 - (2023/04/19)
- 【新卒研修】監修者@t_wadaと読む!プログラマが知るべき97のこと読書会 - (2024/04/09)
- Classi
- 当たり前にリリースしていく ~ 新卒研修編 - (2021/05/20)
- リモートワークのための質問力向上研修を実施しました - (2021/12/07)
- Classi 2025年新卒エンジニア研修「そーだい塾」を開催しました - (2025/06/18)
- CyberZ
This file contains hidden or 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
| #!/bin/sh | |
| mcs -r:System.Numerics $1 -out:out.exe | |
| if [ "$?" -eq 1 ]; then | |
| exit 1 | |
| fi | |
| shift | |
| if [ "$1" == "" ]; then | |
| { time mono out.exe ; } | |
| if [ "$?" -eq 1 ]; then | |
| rm out.exe |
テトリス Advent Calendar 2017 3日目の記事になります。
こんにちは。newjade と申します。普段はパフェ用のツールを作りつつ、理論値を調べているパフェ屋さんです。だいたい twitter に出没しています。
今回の記事は、連パフェについてです。ワールドルールを基準に書いています。 パフェ自体、これまではまとまった資料がほとんどありませんでした(テト界隈だとあまり人気がなさげ)。
ただ最近になり、harddropのwikiに開幕パフェの記事が掲載されました。
This file contains hidden or 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
| defmodule RtgWeb.Js.Canvas do | |
| @moduledoc """ | |
| HTMLCanvasElement context. | |
| """ | |
| alias ElixirScript.Core.Store | |
| alias ElixirScript.JS | |
| alias ElixirScript.Web | |
| @dialyzer [:no_fail_call, :no_return, :no_unused] |
Pre-hijacking Attacksについてのメモ書きです。 元の論文と記事は次のページを読んでください。
- [2205.10174] Pre-hijacked accounts: An Empirical Study of Security Failures in User Account Creation on the Web
- New Research Paper: Pre-hijacking Attacks on Web User Accounts – Microsoft Security Response Center
Pre-hijacking Attacks はメールアドレスの確認をしないでアカウントを作れるサービスという前提があります。
アカウント作成からそのまま機能を利用できるようにすることで、利用体験をよくするための施策として、メールアドレスの確認のステップを後回し またはしないサービスがあります。
This file contains hidden or 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
| AWSTemplateFormatVersion: 2010-09-09 | |
| Description: >- | |
| AWS CloudFormation for Carefully start ISUCON from the beginning | |
| Parameters: | |
| GitHubID: | |
| Type: String | |
| Description: Your GitHub ID (use for getting public key) | |
| Resources: | |
| GetAvailabilityZoneFunctionExecutionRole: | |
| Type: AWS::IAM::Role |
OlderNewer