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
<?xml version="1.0"?> | |
<VAST version="3.0"> | |
<Ad> | |
<InLine> | |
<AdSystem>Test AdSystem</AdSystem> | |
<AdTitle>Test</AdTitle> | |
<Description>Hello</Description> | |
<Impression><![CDATA[https://localhost:3001/impression]]></Impression> | |
<Creatives> | |
<Creative> |
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
import _set from 'lodash/fp/set'; | |
import _get from 'lodash/fp/get'; | |
const LOCAL_STORAGE_WORKS = (() => { | |
const key = '__test_local_storage__'; | |
try { | |
localStorage.setItem(key, key); | |
localStorage.removeItem(key); |
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
#!/usr/bin/env bash | |
me=`basename $0` | |
lockfile="/tmp/$me.lock" | |
lock () { | |
if [ "$1" = "lock" ] | |
then | |
if [ -e "$lockfile" ] | |
then |
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
# Copyright 1999-2014 Gentoo Foundation | |
# Distributed under the terms of the GNU General Public License v2 | |
# $Header: /var/cvsroot/gentoo-x86/app-i18n/mozc/mozc-1.6.1187.102.ebuild,v 1.1 2012/10/02 02:47:18 naota Exp $ | |
EAPI="5" | |
PYTHON_COMPAT=( python{2_6,2_7} ) | |
inherit elisp-common eutils multilib multiprocessing python-single-r1 toolchain-funcs | |
DESCRIPTION="The Mozc engine for IBus Framework" | |
HOMEPAGE="http://code.google.com/p/mozc/" |
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
<!doctype html> | |
<html> | |
<head> | |
<title></title> | |
</head> | |
<body> | |
<script> | |
(function () { | |
if(/mobile/i.test(navigator.userAgent)) { | |
document.body.className += ' mobile'; |
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
-----BEGIN PUBLIC KEY----- | |
MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwVACPi9w23mF3tBkdZz+ | |
zwrzKOaaQdr01vAbU4E1pvkfj4sqDsm6lyDONS789sVoD/xCS9Y0hkkC3gtL1tSf | |
TlgCMOOul9lcixlEKzwKENj1Yz/s7daSan9tqw3bfUV/nqgbhGX81v/+7RFAEd+R | |
wFnK7a+XYl9sluzHRyVVaTTveB2GazTwEfzk2DWgkBluml8OREmvfraX3bkHZJTK | |
X4EQSjBbbdJ2ZXIsRrYOXfaA+xayEGB+8hdlLmAjbCVfaigxX0CDqWeR1yFL9kwd | |
9P0NsZRPsmoqVwMbMu7mStFai6aIhc3nSlv8kg9qv1m6XHVQY3PnEw+QQtqSIXkl | |
HwIDAQAB | |
-----END PUBLIC KEY----- |
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
<!doctype html> | |
<html> | |
<head> | |
<title>test</title> | |
<link rel='stylesheet' href='http://localhost:8088/assets/test.css'> | |
</head> | |
<body> | |
<div id='container'> | |
<div id='inner'> | |
<div id='spacer-before' class='spacer'></div> |
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
$ cat /usr/share/calendar/calendar.lotr | |
/* | |
* Lord Of The Rings | |
* | |
* $FreeBSD: src/usr.bin/calendar/calendars/calendar.lotr,v 1.2 2003/10/09 00:31:48 grog Exp $ | |
*/ | |
#ifndef _calendar_lotr_ | |
#define _calendar_lotr_ |
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
require 'ffi' | |
class ASS_Event < FFI::Struct | |
layout :start, :long_long, | |
:duration, :long_long, | |
:readOrder, :int, | |
:layer, :int, | |
:style, :int, | |
:name, :string, | |
:marginL, :int, |
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
body_click_handler = -> | |
(jQuery 'body').click (e) -> | |
switch e.target.getAttribute 'data-action' |
NewerOlder