{ "url": "http://www.facebook-japan.com/weblog/test.html", "title": "test" } Tweet aaaaaaaaaaaa コメント
{ "url": "http://www.facebook-japan.com/weblog/test.html", "title": "test" } Tweet aaaaaaaaaaaa コメント
電子メールが送受信される際には、ドメインやIPアドレス、電子署名を認証することで、なりすましやスパムメールを防いでいます。そのようなメール認証の仕組みについて、メールを受信してからどのような認証が行われているのか視覚化したウェブサイトが「Learn and Test DMARC」です。 Learn and Test DMARC https://www.dmarctester.com/ Learn and Test DMARCにアクセスすると表示されるメールアドレス宛にメールを送信することで、DMARCテスターを起動することができます。このメールアドレスはサイトにアクセスする度に変更されます。なお、受信したデータはDMARCのテストのみに使用され、保存されることはありません。 Gmailからメールを送信してみます。メールアドレスを入力したら「送信」をクリック。件名、本文は必要ありません。 メ
この記事はPerl Advent Calendar 2013の16日目の記事です。 Test::Synopsis::Expectation Perlのモジュールを作る際に便利そうな少し変わったモジュール、Test::Synopsis::Expectationを使ってみます。 その前にテスト対象のモジュールを作ります。ひな形作成に便利なMinillaを使ってスケルトンを作成します。 $ minil new AwesomeTargetそこで出来たAwesomeTarget/lib/AwesomeTarget.pmを以下のようにいじります。 package AwesomeTarget; use strict; use warnings; sub plusplus { my ($class, $num) = @_; return ++$num; } 1; なんのことはない、ただ++するだけのクラス
about Test::More::done_testing Test::More::done_testing が導入されているわけですが、みなさんつかってますか? Test::More の 0.87_01 から導入されてる新機能なんですが 0.87_01 Sun Mar 29 09:56:52 BST 2009 New Features * done_testing() allows you to declare that you have finished running tests, and how many you ran. It is a safer no_plan and effectively replaces it. というわけで、無計画な人でも安全な感じになります。 具体的には以下のような感じ。 15:24 tokuhirom: plan の逆っていうか 15:25 to
ということで、今回はJavaScriptのパターンマッチネタです。 比較するメソッドとしてmatch、search、test、exec、の4つを取り上げます。 それぞれ性質が異なるので、使う場合は注意が必要です。 比較のために、以下のようなサンプルを作ってみました。 <script type="text/javascript"> <!-- // match()の場合 function hoge1() { base_str = "オッス。おら Tawabagani。" + "友人の Abeshiganiと間違えないでくれよな。"; match_pattern = /\w+?gani/g; r = base_str.match(match_pattern); if (r) { for(var i=0; i<r.length; i++) { alert(r[i]); } } else { ale
このところ、各所で話題になっている Nightly Tester Tools という拡張機能はナイトリーはもちろん、ベータ版をテストしようという人にとって必須の拡張機能です。以下、何が便利かというと Firefox/Thunderbird アップデート時に、バージョン不一致で無効化された拡張機能を個別または一括で強制的に有効化できます。個別に有効にするには拡張マネージャのコンテキストニューから "Make compatible" で、一括で有効にするには拡張マネージャに現れる "Make all compatible" というボタンをクリックで可能になります。 通常は、バージョン不一致の拡張をインストールすることは出来ないのですが、強制的にインストールすることが出来ます。拡張インストールダイアログで "Install using Nightly Tester Tools to overri
The TestRail Quality OS is the only centralized QA platform that gives you the power to build, connect, and optimize all of your testing processes. Test more efficiently, get real-time visibility at scale, and build confidence in QA. It’s time to transform your dreams of faster, frictionless releases into reality. Orchestrate your testing in a way that works for your team. With the Quality OS, you
テストは実行する前にも数えられるはず 前回、前々回と見てきたように、Test Anything Protocolでは本来ひとつひとつのテストに連番が割り振られます。新しいテストを追加したければ、テストファイルの末尾に移動して、テスト番号をひとつずつ増やしながらテストを書き進め、終わったら先頭に戻って宣言部を更新する。先頭に戻るのが面倒であれば宣言部を末尾に移してもよいですが、いずれにしてもテストを追加し終わった時点でテストの件数はわかっているのですから、更新に困ることはないはずでした。 ところが、Perl 5の時代に入ってテスト用のモジュールが連番を振ってくれるようになった結果、テストの件数がわかりづらくなったため、no_planやdone_testingのように実際にテストを実行した回数をテストの総数とみなす手法が登場した――というのが前回の話でしたが、そういった妥協案は、Test An
/*======================================== ※このページに直にリンクしている方々へ ここは,"test production download area"(試作品公開ページ)のため, いつ移動するかわかりません.↓ http://www.yomogi.sakura.ne.jp/~si/SolidImage/ からダウンロードしていただく形にしたいと思っています. お手数ですが,リンク先の変更をよろしくお願いいたします. ========================================*/ tcpv080_bugful_source.zip(199kB) TSS Clipboard Player v0.8.0 Alpha bugful source (BSD Style license) tcpv0711.zip(
米Googleは9月29日、JavaScriptユニットテストフレームワーク「Google JS Test」を発表した。元々はGoogle社内のプロジェクトで利用されていたもので、ライセンスはApache License 2.0。 JS Testは同じくGoogleが公開しているC++向けのユニットテストフレームワーク「Google Test」に着想を得たJavaScript向けユニットテストフレームワーク。Google Chromeでも採用されているJavaScriptエンジン「V8」上で動作するのが特徴。Google Testに似たスタイルと文法を採用し、Webブラウザを立ち上げることなしに高速に起動・実行でき、出力結果はクリーンで読みやすいという。Webブラウザベースのテストランナーや、短く定型的なコードだけで利用できるモック作成フレームワークも統合されている。 ただし、Webブラウ
本サイトはSureServer EV [SHA-2] のテストサイトです。 本サイトの証明書は失効されています。
Runs test suites in parallel/serial mode Supports all widely used HTTP methods Supports x-www-form-urlencoded requests, Multipart requests, File uploads Built-in Response Validation Constructs(Headers, Cookies, Status code, JSON body, JSON schema) Custom Response validator functions Supports running custom inline or module javascript sync/async functions Supports Hooks (Before All, After All, Befo
Credit: https://provalisresearch.com/blog/machine-learning/Edit: The popularity of this post has inspired me to write a machine learning test library. Go check it out! Second Edit: The Github user suriyadeepan made a PyTorch port as well! Over the past year, I’ve spent most of my working time doing deep learning research and internships. And a lot of that year was making very big mistakes that hel
mocha.opts ユースケース ブラウザとNode.jsで同じテストを使いたい mocha.opts で global. に値をいれてしまう e.g.) promises-book/test/mocha.opts global.XMLHttpRequest = require('w3c-xmlhttprequest').XMLHttpRequest; global.Promise = require("ypromise"); グローバル拡張をして、ブラウザとNode.jsで同じコードを使える
大事ににしている教材!英語で学ぶトリビア:知識の素地は楽しく、興味を大切に 「へぇ!」の感情が子供の知識欲を生み出す 日本人英語講師のBossです。 前回の記事から興味を持ち 教材を購入して頂いた皆さん →ありがとうございます! 私の恩返しは 「ピクチャーディクショナリー」 「トリビアの補足事項」 ※特別使用:ピクチャーディクショナリーをプレゼント! 初めに 使用教材 オススメの楽しみ方 前回からの改善点 ①1記事1トリビア ② ピクチャーディクショナリーの増量 実践編 A:コウモリの生態(bat ecology)(P.7) ピクチャーディクショナリー 準1級以上を目指す場合 最後に 初めに 今回は少し英語に特化します! 前回から当ブログでシリーズ化した 「英語で学ぶトリビアの泉:知識の素地」 ① 増え続ける小学生での英検2級試験対策 →追いつかない知識はトリビア(雑学、豆知識)から広げる
このページは ユニットテスタ使用 の例 1クリックでテストする グループテスト テストを楽にし、より強固な動作をさせるための モックオブジェクトの使用 ブラウザレベルでの ウェブページのテスト News: 初めての安定版のリリース作業が終了しました。22ヶ月しかかかりませんでした。 SimpleTest v1.0 は Sourceforge でリリースされています。 SimpleTest. これから記述することは次のことを仮定します。 あなたが、PHP ウェブ開発言語に精通しているのと同様にユニットテストの概念に ついても精通しているということ。 SimpleTest についての短気な新規ユーザ用のガイドがあります。 より完全なドキュメントについては、特にあなたがユニットテストについて 初心者であるなら、現在進行中のドキュメント を見てください。 テストケースのサンプルについては、 ユニッ
最近Pythonの並列処理をよく使うのでまとめておく。 基本形 並列処理したいメソッドを別に書いてPoolから呼び出す。 multiprocessing.cpu_count()はシステムのCPU数を返す。 僕の環境では4。デュアルコアなのでスレッド数だと思う。 import multiprocessing def f(x): return x*x n = multiprocessing.cpu_count() p = multiprocessing.Pool(n) params = range(1,4) result = p.map(f, params) 1から3までを二乗しているので、次のような結果になる。 >>> print result [1, 4, 9] 複数の引数を渡す Pool().map()には引数は1つしか渡せない。 しかし、これは複数の引数を1つの引数にまとめることで解決
これまでVagrantやChefをつかってインフラのコード化を勉強してきましたが、今回はさらに一歩進めてServerspecを使ったインフラのテストと、『test-kitchen』を使ったTDDにチャレンしてみました! 慣れてくるとtest-kitchenのコマンドで設定をやり直し => インフラのテストがソースコードを書くような感覚で、インフラを構築できるのがすごく心地良かったです。 ようやくですが、localのvagrantと『AWS EC2』、『Digital Ocean』に対応しました。コマンドひとつでChefを適用したり、Serverspecでリモートの環境をテストできます! (05-02 08:35) Rubyサーバ・デプロイまでのチェックリストを追加 🐝 今回のソースコードVagrant/Digital Ocean/AWS EC2上にnginx/MySQL/rbenv/Ru
皆さん,こんにちは!機械学習エンジニアの柏木(@asteriam)です. コネヒトでは,テクノロジー推進部に所属し,組織横断的に機械学習(ML)施策の実施・推進を通してサービスグロースする役割を担っています. はじめに MLチームでは,少人数ながらレコメンドエンジンの開発*1やカテゴリ類推*2などの機械学習を用いたサービス開発を実施しています.一方でプロダクション環境に投入するMLシステムの数が増えると,それら1つ1つが属人的になったり,テストが不十分だったり,運用が疎かになったり,それ以外に技術的にも負債が蓄積するケースがあります.私たちのチームでもこれらが課題の1つとなっています. 上図はよく目にするMLシステムの技術的負債の図*3ですが,MLシステムはモデル開発だけでなく,MLシステムを支える周辺のインフラや各種メトリクスのモニタリングなど考慮すべき項目が多くあります.加えてMLシス
これは便利! 本番環境でテーマのテストができるWordPressのプラグイン Theme Test Drive 先日、当ブログのモバイルテーマ(iPhone・Androidなどから見たときのデザイン)を作ったときにめちゃくちゃ役立ったWordPressのプラグイン「Theme Test Drive」を紹介したいと思います。 このプラグインを使うと、WordPressにログインしている人だけ、別のテーマで表示することができるので、表では通常通りブログを公開しつつ、裏では新しいテーマをテストする、なんてことが可能になります! まずは「Theme Test Drive」をインストール まずは管理画面のプラグイン画面にて「Theme Test Drive」で検索して、プラグインをインストールします。 「Theme Test Drive」の設定は「外観」メニューから 設定を行うには、WordPres
Less Code, Less Maintenance, More Acceptance Testing Gauge is a free and open source test automation framework that takes the pain out of acceptance testing Gauge + Taiko = Reliable browser automation for your JavaScript tests! Create readable and maintainable tests Gauge tests are in Markdown which makes writing and maintaining tests easier. Reuse specifications and robust refactoring to reduce d
Koala is a Facebook library for Ruby, supporting the Graph API (including the batch requests and photo uploads), the Marketing API, the Atlas API, realtime updates, test users, and OAuth validation. We wrote Koala with four goals: Lightweight: Koala should be as light and simple as Facebook’s own libraries, providing API accessors and returning simple JSON. Fast: Koala should, out of the box, be q
Updated Trend Micro is on the defensive after it was accused of engineering its software to cheat Microsoft's QA testing, branding the allegation "misleading." Bill Demirkapi, an 18-year-old computer security student at the Rochester Institute of Technology in the US, told The Register on Tuesday he was researching methods for detecting rootkits when he came across Trend's Rootkit Buster for Windo
最近ミクシイアプリ作ってます。(むだづかい告白帳、マイミクイズ) agoです。 このたびjavascript test framework Sweets.jsを作成したのでご紹介したいと思います。 Documents Download JSのtest frameworkはすでに各種ありますが、以下の点を満たすものがなかったので自作しました。 無名関数のテスト callback関数のテスト エラー発生時の行番号取得 以下の形でテストを記述できます。 /*###=> var func = __CODE__ $_$(func(1) === 1); $_$(func(2) === 4); $_$(func(2) === 5); // -> console.warnに行番号を出力 */ var result = (function (arg) { return arg * arg; })(1); 内
The book has now been published and the content of this chapter has likely changed substanstially. Please see page 522 of xUnit Test Patterns for the latest information. Also known as: Imposter How can we verify logic independently when code it depends on is unusable? How can we avoid Slow Tests? We replace a component on which the SUT depends with a "test-specific equivalent." Sketch Test Double
「パソコンの調子が悪くて、どうもハードディスクがあやしいんだけど。」 という人にぴったりの、ハードディスク診断ツールです。 「Drive Fitness Test」は、ハードディスク自体にエラーがあるかどうかをテストすることができます。 フリーソフトです。 ちなみに上の画像は、実際に実行中のものです。 「Drive Fitness Test」は、フロッピーディスクやCDから起動できるので、 Windowsを起動できなくても、ハードディスクをテストすることができます。 「Drive Fitness Test」は日立(HGST)製ですが、 日立・IBM以外のハードディスクでも、テストはできます。 私の試した範囲では、問題なく動作しました。 ただし、各ハードディスクメーカーごとに専用のツールがありますので、 同一メーカーのものが推奨であることは言うまでもありません。 実は、他の診断ツールでは全く
Given a module name, this service will show you its dependencies along with a summary of their test results from the CPAN testers. The idea is that if you have a choice of several modules to use, this will show you which is the most reliable. Search Module Please note: this site is a tool to analyse the dependencies of modules written in the Perl programming language. I can not help you with any p
Flaptter 19-2 of LAPUTA (Hayao Miyazaki 's animation) The name "LAPUTA" came from an island flying in the sky "en:Laputa" in Gulliver's Travels wrote by Jonathan Swift. Laputa --Castle in the Sky is Hayao Miyazaki 's animation. https://en.wikipedia.org/wiki/Castle_in_the_Sky Camera: Syu Kakura. This is in making. まだ製作中です。 Third test Flight. 3回目の試験飛行。 A thrust is not yet enough. 推力がまだ足りない。 A l
PackerBuild and manage images as code
This page is used to test the proper operation of the Apache HTTP server after it has been installed. If you can read this page, it means that the web server installed at this site is working properly, but has not yet been configured. If you are a member of the general public: The fact that you are seeing this page indicates that the website you just visited is either experiencing problems, or is
Welcome to the very first post in a new blog! Here I will discuss software development, SRE work, and other fun stuff. Sometimes an idea is just too good to pass up. I hope this blog will motivate me to turn sparks and little pieces into general knowledge in writing the words down. The other day I was discussing Tabby with a coworker. We talked about whether we should consider AI-autocompleted cod
stripe-mock is a mock HTTP server based on the real Stripe API. It accepts the same requests and parameters that the Stripe API accepts, and rejects requests whose parameters are not recognized or have incorrect types. Its responses resemble the responses of the real Stripe API in terms of data type; however, stripe-mock does not attempt to reproduce the behavior of the real Stripe API at all. It
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く