text
stringlengths 2
1.05M
| repo_name
stringlengths 5
101
| path
stringlengths 4
991
| language
stringclasses 3
values | license
stringclasses 5
values | size
int64 2
1.05M
|
---|---|---|---|---|---|
<!DOCTYPE HTML>
<html lang="de">
<head>
<!-- Generated by javadoc (17) -->
<title>Source code</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="source: package: com.restfb.types.send, class: ListViewElement">
<meta name="generator" content="javadoc/SourceToHTMLConverter">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body class="source-page">
<main role="main">
<div class="source-container">
<pre><span class="source-line-no">001</span><span id="line-1">// Generated by delombok at Mon Feb 14 17:40:58 CET 2022</span>
<span class="source-line-no">002</span><span id="line-2">/*</span>
<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2010-2022 Mark Allen, Norbert Bartels.</span>
<span class="source-line-no">004</span><span id="line-4"> *</span>
<span class="source-line-no">005</span><span id="line-5"> * Permission is hereby granted, free of charge, to any person obtaining a copy</span>
<span class="source-line-no">006</span><span id="line-6"> * of this software and associated documentation files (the "Software"), to deal</span>
<span class="source-line-no">007</span><span id="line-7"> * in the Software without restriction, including without limitation the rights</span>
<span class="source-line-no">008</span><span id="line-8"> * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell</span>
<span class="source-line-no">009</span><span id="line-9"> * copies of the Software, and to permit persons to whom the Software is</span>
<span class="source-line-no">010</span><span id="line-10"> * furnished to do so, subject to the following conditions:</span>
<span class="source-line-no">011</span><span id="line-11"> *</span>
<span class="source-line-no">012</span><span id="line-12"> * The above copyright notice and this permission notice shall be included in</span>
<span class="source-line-no">013</span><span id="line-13"> * all copies or substantial portions of the Software.</span>
<span class="source-line-no">014</span><span id="line-14"> *</span>
<span class="source-line-no">015</span><span id="line-15"> * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR</span>
<span class="source-line-no">016</span><span id="line-16"> * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,</span>
<span class="source-line-no">017</span><span id="line-17"> * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE</span>
<span class="source-line-no">018</span><span id="line-18"> * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER</span>
<span class="source-line-no">019</span><span id="line-19"> * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,</span>
<span class="source-line-no">020</span><span id="line-20"> * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN</span>
<span class="source-line-no">021</span><span id="line-21"> * THE SOFTWARE.</span>
<span class="source-line-no">022</span><span id="line-22"> */</span>
<span class="source-line-no">023</span><span id="line-23">package com.restfb.types.send;</span>
<span class="source-line-no">024</span><span id="line-24"></span>
<span class="source-line-no">025</span><span id="line-25">import java.util.ArrayList;</span>
<span class="source-line-no">026</span><span id="line-26">import java.util.Collections;</span>
<span class="source-line-no">027</span><span id="line-27">import java.util.List;</span>
<span class="source-line-no">028</span><span id="line-28">import com.restfb.Facebook;</span>
<span class="source-line-no">029</span><span id="line-29">import com.restfb.exception.FacebookPreconditionException;</span>
<span class="source-line-no">030</span><span id="line-30">import com.restfb.types.AbstractFacebookType;</span>
<span class="source-line-no">031</span><span id="line-31"></span>
<span class="source-line-no">032</span><span id="line-32">public class ListViewElement extends AbstractFacebookType {</span>
<span class="source-line-no">033</span><span id="line-33"> @Facebook</span>
<span class="source-line-no">034</span><span id="line-34"> private String title;</span>
<span class="source-line-no">035</span><span id="line-35"> @Facebook</span>
<span class="source-line-no">036</span><span id="line-36"> private String subtitle;</span>
<span class="source-line-no">037</span><span id="line-37"> @Facebook("image_url")</span>
<span class="source-line-no">038</span><span id="line-38"> private String imageUrl;</span>
<span class="source-line-no">039</span><span id="line-39"> @Facebook("default_action")</span>
<span class="source-line-no">040</span><span id="line-40"> private DefaultAction defaultAction;</span>
<span class="source-line-no">041</span><span id="line-41"> @Facebook</span>
<span class="source-line-no">042</span><span id="line-42"> private List<AbstractButton> buttons;</span>
<span class="source-line-no">043</span><span id="line-43"></span>
<span class="source-line-no">044</span><span id="line-44"> public ListViewElement(String title) {</span>
<span class="source-line-no">045</span><span id="line-45"> this.title = title;</span>
<span class="source-line-no">046</span><span id="line-46"> }</span>
<span class="source-line-no">047</span><span id="line-47"></span>
<span class="source-line-no">048</span><span id="line-48"> public boolean addButton(AbstractButton button) {</span>
<span class="source-line-no">049</span><span id="line-49"> if (buttons == null) {</span>
<span class="source-line-no">050</span><span id="line-50"> buttons = new ArrayList<>();</span>
<span class="source-line-no">051</span><span id="line-51"> }</span>
<span class="source-line-no">052</span><span id="line-52"> if (buttons.size() == 1) {</span>
<span class="source-line-no">053</span><span id="line-53"> throw new FacebookPreconditionException("maximum of associated buttons is 1");</span>
<span class="source-line-no">054</span><span id="line-54"> }</span>
<span class="source-line-no">055</span><span id="line-55"> return buttons.add(button);</span>
<span class="source-line-no">056</span><span id="line-56"> }</span>
<span class="source-line-no">057</span><span id="line-57"></span>
<span class="source-line-no">058</span><span id="line-58"> public List<AbstractButton> getButtons() {</span>
<span class="source-line-no">059</span><span id="line-59"> if (buttons == null) {</span>
<span class="source-line-no">060</span><span id="line-60"> return Collections.emptyList();</span>
<span class="source-line-no">061</span><span id="line-61"> }</span>
<span class="source-line-no">062</span><span id="line-62"> return Collections.unmodifiableList(buttons);</span>
<span class="source-line-no">063</span><span id="line-63"> }</span>
<span class="source-line-no">064</span><span id="line-64"></span>
<span class="source-line-no">065</span><span id="line-65"> @java.lang.SuppressWarnings("all")</span>
<span class="source-line-no">066</span><span id="line-66"> public String getTitle() {</span>
<span class="source-line-no">067</span><span id="line-67"> return this.title;</span>
<span class="source-line-no">068</span><span id="line-68"> }</span>
<span class="source-line-no">069</span><span id="line-69"></span>
<span class="source-line-no">070</span><span id="line-70"> @java.lang.SuppressWarnings("all")</span>
<span class="source-line-no">071</span><span id="line-71"> public String getSubtitle() {</span>
<span class="source-line-no">072</span><span id="line-72"> return this.subtitle;</span>
<span class="source-line-no">073</span><span id="line-73"> }</span>
<span class="source-line-no">074</span><span id="line-74"></span>
<span class="source-line-no">075</span><span id="line-75"> @java.lang.SuppressWarnings("all")</span>
<span class="source-line-no">076</span><span id="line-76"> public void setSubtitle(final String subtitle) {</span>
<span class="source-line-no">077</span><span id="line-77"> this.subtitle = subtitle;</span>
<span class="source-line-no">078</span><span id="line-78"> }</span>
<span class="source-line-no">079</span><span id="line-79"></span>
<span class="source-line-no">080</span><span id="line-80"> @java.lang.SuppressWarnings("all")</span>
<span class="source-line-no">081</span><span id="line-81"> public String getImageUrl() {</span>
<span class="source-line-no">082</span><span id="line-82"> return this.imageUrl;</span>
<span class="source-line-no">083</span><span id="line-83"> }</span>
<span class="source-line-no">084</span><span id="line-84"></span>
<span class="source-line-no">085</span><span id="line-85"> @java.lang.SuppressWarnings("all")</span>
<span class="source-line-no">086</span><span id="line-86"> public void setImageUrl(final String imageUrl) {</span>
<span class="source-line-no">087</span><span id="line-87"> this.imageUrl = imageUrl;</span>
<span class="source-line-no">088</span><span id="line-88"> }</span>
<span class="source-line-no">089</span><span id="line-89"></span>
<span class="source-line-no">090</span><span id="line-90"> @java.lang.SuppressWarnings("all")</span>
<span class="source-line-no">091</span><span id="line-91"> public DefaultAction getDefaultAction() {</span>
<span class="source-line-no">092</span><span id="line-92"> return this.defaultAction;</span>
<span class="source-line-no">093</span><span id="line-93"> }</span>
<span class="source-line-no">094</span><span id="line-94"></span>
<span class="source-line-no">095</span><span id="line-95"> @java.lang.SuppressWarnings("all")</span>
<span class="source-line-no">096</span><span id="line-96"> public void setDefaultAction(final DefaultAction defaultAction) {</span>
<span class="source-line-no">097</span><span id="line-97"> this.defaultAction = defaultAction;</span>
<span class="source-line-no">098</span><span id="line-98"> }</span>
<span class="source-line-no">099</span><span id="line-99">}</span>
</pre>
</div>
</main>
</body>
</html>
| restfb/restfb.github.io | javadoc/src-html/com/restfb/types/send/ListViewElement.html | HTML | mit | 10,136 |
---
layout: page_home
title: Home
headerline: Design Club at IIIT-Delhi
headerlinelink: /about/
newslink: /news/
projectslink: /projects/
---
| ink-iiitd/ink-iiitd.github.io | index.html | HTML | mit | 142 |
<a href="/article/{{post.pk}}">
<div class="search-result post {{post.primary_section}}">
<span class="primary">{{ post.title }}</span>
<div class="metadata">
<span class="date">{{post.published | date:"F j, Y"}}</span>
{% for author in post.creators %}
{% if author.name %}
<span class="author">{{ author.name }}</span>
{% endif %}
{% endfor %}
</div>
<span class="excerpt">{{ post.excerpt|truncatewords:50 }}</span>
</div>
</a> | BowdoinOrient/bongo | bongo/apps/search/templates/search/post.html | HTML | mit | 557 |
<table width="90%" border="0"><tr><td><script>function openfile(url) {fullwin = window.open(url, "fulltext", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes");}</script><div class="flayoutclass"><div class="flayoutclass_first"><table class="tableoutfmt2"><tr><th class="std1"><b>條目 </b></th><td class="std2">鳥獸和蝙蝠The Birds, the Beasts, and the Bat</td></tr>
<tr><th class="std1"><b>釋義 </b></th><td class="std2">童話故事。出自於《伊索寓言》。蝙蝠在鳥和獸發生戰爭時,隨著哪方得勝,一會兒說自己是鳥類,一會兒又說自己是獸類。等到鳥、獸談和後,雙方都拒絕牠加入,並定牠叛逆之罪。從此蝙蝠只敢出現在夜裡,不敢在白天活動。這個故事比喻牆頭草的下場往往很淒慘的。後來多單用「蝙蝠」來比喻立場騎牆的人。而牠這種作風稱為「蝙蝠作風」。如:「他的政治立場一下子偏這個黨,一下子偏那個黨,蝙蝠作風,標準的投機分子。」 </td></tr>
<tr><th class="std1"><b><font class="fltypefont">附錄</font> </b></th><td class="std2">電影小說類參考語料</td></tr>
</td></tr></table></div> <!-- flayoutclass_first --><div class="flayoutclass_second"></div> <!-- flayoutclass_second --></div> <!-- flayoutclass --></td></tr></table>
| BuzzAcademy/idioms-moe-unformatted-data | all-data/29000-29999/29890-22.html | HTML | mit | 1,372 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="blog,python,django,developer">
<meta name="author" content="Derek Stegelman">
<title>Derek.Stegelman.Com | Tags</title>
<link rel="stylesheet" href='http://derek.stegelman.com/assets/bootstrap/css/bootstrap.min.css'>
<link rel="stylesheet" href='http://derek.stegelman.com/assets/css/main.min.css'>
<link href='https://fonts.googleapis.com/css?family=Raleway:200italic,200' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href='http://derek.stegelman.com/assets/font-awesome/css/font-awesome.min.css'>
<link href='assets/css/prisim.min.css' rel='stylesheet' />
<link href="http://derek.stegelman.com/tags/index.xml" rel="alternate" type="application/rss+xml" title="Derek.Stegelman.Com" />
<link href="http://derek.stegelman.com/tags/index.xml" rel="feed" type="application/rss+xml" title="Derek.Stegelman.Com" />
<meta property="og:title" content="Tags" />
<meta property="og:description" content="" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://derek.stegelman.com/tags/" />
<meta itemprop="name" content="Tags">
<meta itemprop="description" content="">
<meta name="twitter:card" content="summary"/><meta name="twitter:title" content="Tags"/>
<meta name="twitter:description" content=""/>
</head>
<body>
<header class="">
<div class='color-overlay'>
</div>
<h1><a href="/">Derek Stegelman</a></h1>
<nav>
<ul>
<li>
<a href="/posts/">Writing</a>
</li>
<li>
<a href="/tech/">Technical Writing</a>
</li>
<li>
<a href="/thoughts/">Thoughts</a>
</li>
<li>
<a href="/about/">About</a>
</li>
</ul>
</nav>
</header>
<div class="container-fluid">
<article class="cf pa3 pa4-m pa4-l">
<div class="measure-wide-l center f4 lh-copy nested-copy-line-height nested-links nested-img mid-gray">
</div>
</article>
<div class="mw8 center">
<section class="ph4">
</section>
</div>
</div>
<footer>
<div class='container-fluid'>
<div class='row'>
<div class='col-md-8 col-md-offset-2'>
<nav>
<ul>
<li>
<a href="/colophon/">Colophon</a>
</li>
<li>
<a href="/talks/">Talks</a>
</li>
<li>
<a href="/hire/">Hire</a>
</li>
<li>
<a href="/rocketry/">Rocketry</a>
</li>
<li>
<a href="/essays/">Essays</a>
</li>
<li>
<a href="mailto:email@stegelman.com">Contact</a>
</li>
</ul>
</nav>
<nav class='pull-right'>
<ul>
<li>
<a href="https://github.com/dstegelman/" target="_blank"><i class="fa fa-github fa-inverse" aria-hidden="true"></i></a>
</li>
<li>
<a href="https://twitter.com/dstegelman" target="_blank"><i class="fa fa-twitter fa-inverse" aria-hidden="true"></i></a>
</li>
<li>
<a href="https://www.instagram.com/dstegelman/" target="_blank"><i class="fa fa-instagram fa-inverse" aria-hidden="true"></i></a>
</li>
<li>
<a href="https://www.linkedin.com/in/derek-stegelman-22570813/" target="_blank"><i class="fa fa-linkedin fa-inverse" aria-hidden="true"></i></a>
</li>
<li>
<a href="mailto:email@stegelman.com"><i class="fa fa-envelope fa-inverse" aria-hidden="true"></i></a>
</li>
<li>
<a href="/atom.xml"><i class="fa fa-rss fa-inverse" aria-hidden="true"></i></a>
</li>
</ul>
</nav>
</div>
</div>
</div>
</footer>
<script src='http://derek.stegelman.com/assets/js/prisim.js'></script>
<script src='http://derek.stegelman.com/assets/js/jquery.min.js'></script>
<script src='http://derek.stegelman.com/assets/bootstrap/js/bootstrap.min.js'></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-4439935-7', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>
| dstegelman/derek.stegelman.com | public/tags/index.html | HTML | mit | 5,880 |
<html>
<head>
</head>
<body>
<h2>
But Honour Them As They Honour Men
</h2>
Thirdly,
<span class="oldenglish">
for
</span>
<span class="oldenglish">
the
</span>
worship
<span class="oldenglish">
which
</span>
naturally men exhibite
<span class="oldenglish">
to
</span>
Powers invisible,
<span class="oldenglish">
it
</span>
<span class="oldenglish">
can
</span>
<span class="oldenglish">
be
</span>
<span class="oldenglish">
no
</span>
other,
<span class="oldenglish">
but
</span>
<span class="oldenglish">
such
</span>
<span class="french">
expressions
</span>
<span class="oldenglish">
of
</span>
<span class="oldnorse">
their
</span>
reverence,
<span class="oldenglish">
as
</span>
<span class="oldnorse">
they
</span>
<span class="oldenglish">
would
</span>
<span class="oldfrench">
use
</span>
<span class="oldenglish">
towards
</span>
men; Gifts, Petitions, Thanks,
<span class="oldfrench">
Submission
</span>
<span class="oldenglish">
of
</span>
Body,
<span class="latin">
Considerate
</span>
Addresses, sober Behaviour,
<span class="latin">
premeditated
</span>
Words, Swearing (that is,
<span class="oldfrench">
assuring
</span>
<span class="oldenglish">
one
</span>
<span class="oldenglish">
another
</span>
<span class="oldenglish">
of
</span>
<span class="oldnorse">
their
</span>
promises,)
<span class="oldenglish">
by
</span>
<span class="french">
invoking
</span>
them.
<span class="oldenglish">
Beyond
</span>
<span class="oldenglish">
that
</span>
<span class="oldfrench">
reason
</span>
suggesteth nothing;
<span class="oldenglish">
but
</span>
<span class="oldenglish">
leaves
</span>
<span class="oldnorse">
them
</span>
<span class="oldenglish">
either
</span>
<span class="oldenglish">
to
</span>
<span class="oldenglish">
rest
</span>
there;
<span class="oldenglish">
or
</span>
<span class="oldenglish">
for
</span>
<span class="oldenglish">
further
</span>
ceremonies,
<span class="oldenglish">
to
</span>
<span class="oldfrench">
rely
</span>
<span class="oldenglish">
on
</span>
<span class="oldenglish">
those
</span>
<span class="oldnorse">
they
</span>
<span class="oldenglish">
believe
</span>
<span class="oldenglish">
to
</span>
<span class="oldenglish">
be
</span>
<span class="oldenglish">
wiser
</span>
<span class="oldenglish">
than
</span>
themselves.
</body>
</html> | charlesreid1/wordswordswords | etymology/html/leviathan103.html | HTML | mit | 2,705 |
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>File: calculations.rb</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<link rel="stylesheet" href="../../../../../../../../../../../.././rdoc-style.css" type="text/css" media="screen" />
<script type="text/javascript">
// <![CDATA[
function popupCode( url ) {
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
}
function toggleCode( id ) {
if ( document.getElementById )
elem = document.getElementById( id );
else if ( document.all )
elem = eval( "document.all." + id );
else
return false;
elemStyle = elem.style;
if ( elemStyle.display != "block" ) {
elemStyle.display = "block"
} else {
elemStyle.display = "none"
}
return true;
}
// Make codeblocks hidden by default
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
// ]]>
</script>
</head>
<body>
<div id="fileHeader">
<h1>calculations.rb</h1>
<table class="header-table">
<tr class="top-aligned-row">
<td><strong>Path:</strong></td>
<td>/usr/lib/ruby/gems/1.8/gems/activesupport-3.0.0.beta4/lib/active_support/core_ext/time/calculations.rb
</td>
</tr>
<tr class="top-aligned-row">
<td><strong>Last Update:</strong></td>
<td>Sun Jun 20 17:19:12 -0600 2010</td>
</tr>
</table>
</div>
<!-- banner header -->
<div id="bodyContent">
<div id="contextContent">
<div id="requires-list">
<h3 class="section-bar">Required files</h3>
<div class="name-list">
active_support/duration
active_support/core_ext/date/acts_like
active_support/core_ext/date/calculations
active_support/core_ext/date_time/conversions
</div>
</div>
</div>
</div>
<!-- if includes -->
<div id="section">
<!-- if method_list -->
</div>
<div id="validator-badges">
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
</div>
</body>
</html> | ecoulthard/summitsearch | doc/api/files/usr/lib/ruby/gems/1_8/gems/activesupport-3_0_0_beta4/lib/active_support/core_ext/time/calculations_rb.html | HTML | mit | 2,478 |
{% extends "base.html" %}
{% block content %}
<div class="container">
<form action="" method="POST" enctype="multipart/form-data">
{{ form.hidden_tag() }}
<p>
Descriptive Name:
{{ form.descriptive_name(size = 50) }}
{% for error in form.descriptive_name.errors %}
<span style="color: red;">[{{error}}]</span>
{% endfor %}
</p>
<p>
Table Name:
{{ form.table_name(size = 30) }}
{% for error in form.table_name.errors %}
<span style="color: red;">[{{error}}]</span>
{% endfor %}
</p>
<p>
<input type="submit" value="Create Table"> | <input type="reset" value="Clear"> | <a href="{{ url_for('admin') }}">
<input type="button" value="Cancel" /></a>
</p>
</form>
</div>
{% endblock %}
| okyere/excel-data-collection | app/templates/add_tableinfo.html | HTML | mit | 820 |
<!DOCTYPE html>
<html lang="en" ng-app="App">
<head>
<meta charset="UTF-8">
<title>form</title>
<link rel="stylesheet" href="../../js/lib/bootstrap/dist/css/bootstrap.min.css">
<style>
.container {
margin-top: 30px;
}
</style>
</head>
<body ng-controller="MyCtrl">
<div class="container">
<div class="row">
<div class="col-md-12">
<form class="form-horizontal" role="form">
<div class="form-group">
<div class="col-sm-2">honors</div>
<div class="col-sm-8">
<!-- 从默认数据 model.setting.honors 里面读值 -->
<div ng-repeat="honor in model.setting.honors"
class="checkbox">
<label>
<!-- 被选中的复选框的值(boolean)会直接赋给 model.postData.honors -->
<input ng-model="model.postData.honors[$index].value"
ng-checked="model.postData.honors[$index].value"
ng-value="honor.value"
type="checkbox">{{ honor.name }}
</label>
</div>
<p class="small">{{ model.postData.honors }}</p>
</div>
</div>
</form>
</div>
</div>
</div>
<script src="../../js/lib/jquery/dist/jquery.min.js"></script>
<script src="../../js/lib/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="../../js/lib/angular-v1.4.8/angular.min.js"></script>
<script>
var app = angular.module('App', []);
app
.controller('MyCtrl', function($scope){
var vm = $scope;
vm.model = {
setting: {
honors: [
{
name: 'AllStar',
value: 0
},{
name: 'Champion',
value: 1
},{
name: 'FMVP',
value: 2
}
]
},
postData: {
// honors: null,
honors: [
{value: false},
{value: true},
{value: true}
]
}
};
});
</script>
</body>
</html> | GreenMelon/Angular-Notes | app/html/Form/checkbox-001.html | HTML | mit | 2,186 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Ginolhac">
<meta name="generator" content="Hugo 0.42.1" />
<title>Posts · Aurélien' blog</title>
<link rel="shortcut icon" href="//ginolhac.github.io/images/favicon.ico">
<link rel="stylesheet" href="//ginolhac.github.io/css/style.css">
<link rel="stylesheet" href="//ginolhac.github.io/css/highlight.css">
<link href="//ginolhac.github.io/styles/github.min.css" rel="stylesheet">
<link rel="stylesheet" href="//ginolhac.github.io/css/font-awesome.min.css">
</head>
<body>
<nav class="main-nav">
<a href='//ginolhac.github.io/'> <span class="arrow">←</span>Home</a>
<a href='//ginolhac.github.io/posts'>Archive</a>
<a href='//ginolhac.github.io/karate'>Karate</a>
<a href='//ginolhac.github.io/tags'>Tags</a>
<a href='//ginolhac.github.io/about'>About</a>
</nav>
<div class="profile">
<section id="wrapper">
<header id="header">
<a href='//ginolhac.github.io/about'>
<img id="avatar" class="2x" src="//ginolhac.github.io/images/avatar.png"/>
</a>
<h1>Aurélien' blog</h1>
<h2>bioinformatic and data science</h2>
</header>
</section>
</div>
<section id="wrapper" class="home">
<div class="archive">
<h3>2018</h3>
<ul>
<div class="post-item">
<div class="post-time">Mar 26</div>
<a href="//ginolhac.github.io/posts/latex-modern-cv/" class="post-link">
LaTex modern CV
</a>
</div>
<div class="post-item">
<div class="post-time">Jan 27</div>
<a href="//ginolhac.github.io/posts/diy-raspberry-monitored-via-telegram/" class="post-link">
home surveillance monitored via telegram
</a>
</div>
</ul>
</div>
<div class="archive">
<h3>2016</h3>
<ul>
<div class="post-item">
<div class="post-time">Dec 8</div>
<a href="//ginolhac.github.io/posts/tweening-a-poisson-distribution/" class="post-link">
tweening a Poisson distribution
</a>
</div>
<div class="post-item">
<div class="post-time">Jul 31</div>
<a href="//ginolhac.github.io/posts/teething-process/" class="post-link">
teething
</a>
</div>
</ul>
</div>
<div class="archive">
<h3>2015</h3>
<ul>
<div class="post-item">
<div class="post-time">Jan 25</div>
<a href="//ginolhac.github.io/posts/winter-is-coming/" class="post-link">
winter is coming
</a>
</div>
</ul>
</div>
<footer id="footer">
<div id="social">
<a class="symbol" href="https://github.com/ginolhac">
<i class="fa fa-github-square"></i>
</a>
<a class="symbol" href="https://www.linkedin.com/in/aur%c3%a9lien-ginolhac-07b33b92/">
<i class="fa fa-linkedin-square"></i>
</a>
<a class="symbol" href="https://twitter.com/kingsushigino">
<i class="fa fa-twitter-square"></i>
</a>
</div>
<p class="small">
© Copyright 2021 <i class="fa fa-heart" aria-hidden="true"></i> Ginolhac
</p>
<p class="small">
Powered by <a href="//www.gohugo.io/">Hugo</a> Theme By <a href="https://github.com/nodejh/hugo-theme-cactus-plus">nodejh</a>
</p>
<script src="//yihui.name/js/math-code.js"></script>
<script async
src="//cdn.bootcss.com/mathjax/2.7.1/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<script src="//ginolhac.github.io/highlight.min.js"></script>
<script src="//ginolhac.github.io/languages/r.min.js"></script>
<script>
hljs.configure({languages: []});
hljs.initHighlightingOnLoad();
</script>
</footer>
</section>
<div class="dd">
</div>
<script src="//ginolhac.github.io/js/jquery-3.3.1.min.js"></script>
<script src="//ginolhac.github.io/js/main.js"></script>
<script src="//ginolhac.github.io/js/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<script>
var doNotTrack = false;
if (!doNotTrack) {
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-29962051-1', 'auto');
ga('send', 'pageview');
}
</script>
</body>
</html>
| ginolhac/ginolhac.github.com | posts/index.html | HTML | mit | 4,782 |
{% from "components/table.html" import list_table, field, right_aligned_field_heading, row_heading, notification_status_field %}
{% from "components/page-footer.html" import page_footer %}
<div class="ajax-block-container" aria-labelledby='pill-selected-item'>
<div class="dashboard-table bottom-gutter-3-2">
{% call(item, row_number) list_table(
[notification],
caption=None,
caption_visible=False,
empty_message=None,
field_headings=[
'Recipient',
'Status'
],
field_headings_visible=False
) %}
{% call row_heading() %}
<p class="govuk-body">{{ item.to }}</p>
{% endcall %}
{{ notification_status_field(item) }}
{% endcall %}
{% if more_than_one_page %}
<p class="table-show-more-link">
Only showing the first 50 rows
</p>
{% endif %}
</div>
</div>
| alphagov/notifications-admin | app/templates/partials/notifications/notifications.html | HTML | mit | 840 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<meta name="collection" content="api">
<!-- Generated by javadoc (build 1.5.0-rc) on Wed Aug 11 07:27:53 PDT 2004 -->
<TITLE>
Binding (Java 2 Platform SE 5.0)
</TITLE>
<META NAME="keywords" CONTENT="org.omg.CosNaming.Binding class">
<META NAME="keywords" CONTENT="binding_name">
<META NAME="keywords" CONTENT="binding_type">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
parent.document.title="Binding (Java 2 Platform SE 5.0)";
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/Binding.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Java<sup><font size=-2>TM</font></sup> 2 Platform<br>Standard Ed. 5.0</b></EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../org/omg/CosNaming/_NamingContextStub.html" title="class in org.omg.CosNaming"><B>PREV CLASS</B></A>
<A HREF="../../../org/omg/CosNaming/BindingHelper.html" title="class in org.omg.CosNaming"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?org/omg/CosNaming/Binding.html" target="_top"><B>FRAMES</B></A>
<A HREF="Binding.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#methods_inherited_from_class_java.lang.Object">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | METHOD</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
org.omg.CosNaming</FONT>
<BR>
Class Binding</H2>
<PRE>
<A HREF="../../../java/lang/Object.html" title="class in java.lang">java.lang.Object</A>
<IMG SRC="../../../resources/inherit.gif" ALT="extended by "><B>org.omg.CosNaming.Binding</B>
</PRE>
<DL>
<DT><B>All Implemented Interfaces:</B> <DD><A HREF="../../../java/io/Serializable.html" title="interface in java.io">Serializable</A>, <A HREF="../../../org/omg/CORBA/portable/IDLEntity.html" title="interface in org.omg.CORBA.portable">IDLEntity</A></DD>
</DL>
<HR>
<DL>
<DT><PRE>public final class <B>Binding</B><DT>extends <A HREF="../../../java/lang/Object.html" title="class in java.lang">Object</A><DT>implements <A HREF="../../../org/omg/CORBA/portable/IDLEntity.html" title="interface in org.omg.CORBA.portable">IDLEntity</A></DL>
</PRE>
<P>
org/omg/CosNaming/Binding.java .
Generated by the IDL-to-Java compiler (portable), version "3.2"
from ../../../../src/share/classes/org/omg/CosNaming/nameservice.idl
Wednesday, August 11, 2004 5:04:12 AM GMT-08:00
<P>
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../serialized-form.html#org.omg.CosNaming.Binding">Serialized Form</A></DL>
<HR>
<P>
<!-- =========== FIELD SUMMARY =========== -->
<A NAME="field_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Field Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../org/omg/CosNaming/NameComponent.html" title="class in org.omg.CosNaming">NameComponent</A>[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/omg/CosNaming/Binding.html#binding_name">binding_name</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../org/omg/CosNaming/BindingType.html" title="class in org.omg.CosNaming">BindingType</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/omg/CosNaming/Binding.html#binding_type">binding_type</A></B></CODE>
<BR>
</TD>
</TR>
</TABLE>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<A NAME="constructor_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Constructor Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../org/omg/CosNaming/Binding.html#Binding()">Binding</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../org/omg/CosNaming/Binding.html#Binding(org.omg.CosNaming.NameComponent[], org.omg.CosNaming.BindingType)">Binding</A></B>(<A HREF="../../../org/omg/CosNaming/NameComponent.html" title="class in org.omg.CosNaming">NameComponent</A>[] _binding_name,
<A HREF="../../../org/omg/CosNaming/BindingType.html" title="class in org.omg.CosNaming">BindingType</A> _binding_type)</CODE>
<BR>
</TD>
</TR>
</TABLE>
<!-- ========== METHOD SUMMARY =========== -->
<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Method Summary</B></FONT></TH>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class java.lang.<A HREF="../../../java/lang/Object.html" title="class in java.lang">Object</A></B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="../../../java/lang/Object.html#clone()">clone</A>, <A HREF="../../../java/lang/Object.html#equals(java.lang.Object)">equals</A>, <A HREF="../../../java/lang/Object.html#finalize()">finalize</A>, <A HREF="../../../java/lang/Object.html#getClass()">getClass</A>, <A HREF="../../../java/lang/Object.html#hashCode()">hashCode</A>, <A HREF="../../../java/lang/Object.html#notify()">notify</A>, <A HREF="../../../java/lang/Object.html#notifyAll()">notifyAll</A>, <A HREF="../../../java/lang/Object.html#toString()">toString</A>, <A HREF="../../../java/lang/Object.html#wait()">wait</A>, <A HREF="../../../java/lang/Object.html#wait(long)">wait</A>, <A HREF="../../../java/lang/Object.html#wait(long, int)">wait</A></CODE></TD>
</TR>
</TABLE>
<P>
<!-- ============ FIELD DETAIL =========== -->
<A NAME="field_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Field Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="binding_name"><!-- --></A><H3>
binding_name</H3>
<PRE>
public <A HREF="../../../org/omg/CosNaming/NameComponent.html" title="class in org.omg.CosNaming">NameComponent</A>[] <B>binding_name</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<A NAME="binding_type"><!-- --></A><H3>
binding_type</H3>
<PRE>
public <A HREF="../../../org/omg/CosNaming/BindingType.html" title="class in org.omg.CosNaming">BindingType</A> <B>binding_type</B></PRE>
<DL>
<DL>
</DL>
</DL>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<A NAME="constructor_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Constructor Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="Binding()"><!-- --></A><H3>
Binding</H3>
<PRE>
public <B>Binding</B>()</PRE>
<DL>
</DL>
<HR>
<A NAME="Binding(org.omg.CosNaming.NameComponent[], org.omg.CosNaming.BindingType)"><!-- --></A><H3>
Binding</H3>
<PRE>
public <B>Binding</B>(<A HREF="../../../org/omg/CosNaming/NameComponent.html" title="class in org.omg.CosNaming">NameComponent</A>[] _binding_name,
<A HREF="../../../org/omg/CosNaming/BindingType.html" title="class in org.omg.CosNaming">BindingType</A> _binding_type)</PRE>
<DL>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/Binding.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Java<sup><font size=-2>TM</font></sup> 2 Platform<br>Standard Ed. 5.0</b></EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../org/omg/CosNaming/_NamingContextStub.html" title="class in org.omg.CosNaming"><B>PREV CLASS</B></A>
<A HREF="../../../org/omg/CosNaming/BindingHelper.html" title="class in org.omg.CosNaming"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?org/omg/CosNaming/Binding.html" target="_top"><B>FRAMES</B></A>
<A HREF="Binding.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#methods_inherited_from_class_java.lang.Object">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | METHOD</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<font size="-1"><a href="http://java.sun.com/cgi-bin/bugreport.cgi">Submit a bug or feature</a><br>For further API reference and developer documentation, see <a href="../../../../relnotes/devdocs-vs-specs.html">Java 2 SDK SE Developer Documentation</a>. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples. <p>Copyright © 2004, 2010 Oracle and/or its affiliates. All rights reserved. Use is subject to <a href="../../../../relnotes/license.html">license terms</a>. Also see the <a href="http://java.sun.com/docs/redist.html">documentation redistribution policy</a>.</font>
<!-- Start SiteCatalyst code -->
<script language="JavaScript" src="http://www.oracle.com/ocom/groups/systemobject/@mktg_admin/documents/systemobject/s_code_download.js"></script>
<script language="JavaScript" src="http://www.oracle.com/ocom/groups/systemobject/@mktg_admin/documents/systemobject/s_code.js"></script>
<!-- ********** DO NOT ALTER ANYTHING BELOW THIS LINE ! *********** -->
<!-- Below code will send the info to Omniture server -->
<script language="javascript">var s_code=s.t();if(s_code)document.write(s_code)</script>
<!-- End SiteCatalyst code -->
</body>
</HTML>
| Smolations/more-dash-docsets | docsets/Java 5.docset/Contents/Resources/Documents/org/omg/CosNaming/Binding.html | HTML | mit | 14,943 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.11"/>
<title>V8 API Reference Guide for node.js v8.10.0: Class Members</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">V8 API Reference Guide for node.js v8.10.0
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.11 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="inherits.html"><span>Class Hierarchy</span></a></li>
<li class="current"><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div id="navrow3" class="tabs2">
<ul class="tablist">
<li class="current"><a href="functions.html"><span>All</span></a></li>
<li><a href="functions_func.html"><span>Functions</span></a></li>
<li><a href="functions_vars.html"><span>Variables</span></a></li>
<li><a href="functions_type.html"><span>Typedefs</span></a></li>
<li><a href="functions_enum.html"><span>Enumerations</span></a></li>
</ul>
</div>
<div id="navrow4" class="tabs3">
<ul class="tablist">
<li><a href="functions.html#index_a"><span>a</span></a></li>
<li><a href="functions_b.html#index_b"><span>b</span></a></li>
<li><a href="functions_c.html#index_c"><span>c</span></a></li>
<li><a href="functions_d.html#index_d"><span>d</span></a></li>
<li><a href="functions_e.html#index_e"><span>e</span></a></li>
<li class="current"><a href="functions_f.html#index_f"><span>f</span></a></li>
<li><a href="functions_g.html#index_g"><span>g</span></a></li>
<li><a href="functions_h.html#index_h"><span>h</span></a></li>
<li><a href="functions_i.html#index_i"><span>i</span></a></li>
<li><a href="functions_j.html#index_j"><span>j</span></a></li>
<li><a href="functions_k.html#index_k"><span>k</span></a></li>
<li><a href="functions_l.html#index_l"><span>l</span></a></li>
<li><a href="functions_m.html#index_m"><span>m</span></a></li>
<li><a href="functions_n.html#index_n"><span>n</span></a></li>
<li><a href="functions_o.html#index_o"><span>o</span></a></li>
<li><a href="functions_p.html#index_p"><span>p</span></a></li>
<li><a href="functions_r.html#index_r"><span>r</span></a></li>
<li><a href="functions_s.html#index_s"><span>s</span></a></li>
<li><a href="functions_t.html#index_t"><span>t</span></a></li>
<li><a href="functions_u.html#index_u"><span>u</span></a></li>
<li><a href="functions_v.html#index_v"><span>v</span></a></li>
<li><a href="functions_w.html#index_w"><span>w</span></a></li>
<li><a href="functions_0x7e.html#index_0x7e"><span>~</span></a></li>
</ul>
</div>
</div><!-- top -->
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="contents">
<div class="textblock">Here is a list of all documented class members with links to the class documentation for each member:</div>
<h3><a class="anchor" id="index_f"></a>- f -</h3><ul>
<li>FindInstanceInPrototypeChain()
: <a class="el" href="classv8_1_1Object.html#ae2ad9fee9db6e0e5da56973ebb8ea2bc">v8::Object</a>
</li>
<li>FindObjectById()
: <a class="el" href="classv8_1_1HeapProfiler.html#ace729f9b7dbb2ca8b2fd67551bf5aae8">v8::HeapProfiler</a>
</li>
<li>Flags
: <a class="el" href="classv8_1_1RegExp.html#aa4718a5c1f18472aff3bf51ed694fc5a">v8::RegExp</a>
</li>
<li>For()
: <a class="el" href="classv8_1_1Symbol.html#a8a4a6bdc7d3e31c71cf48fa5cb811fc8">v8::Symbol</a>
</li>
<li>ForApi()
: <a class="el" href="classv8_1_1Private.html#a0ab8628387166b8a8abc6e9b6f40ad55">v8::Private</a>
, <a class="el" href="classv8_1_1Symbol.html#ac3937f0b0b831c4be495a399f26d7301">v8::Symbol</a>
</li>
<li>Free()
: <a class="el" href="classv8_1_1ArrayBuffer_1_1Allocator.html#acaf1ec8820d5b994eb5a11f2c0ee38e0">v8::ArrayBuffer::Allocator</a>
</li>
<li>FreeBufferMemory()
: <a class="el" href="classv8_1_1ValueSerializer_1_1Delegate.html#a6cea3e757221e6e15b0fdb708482a176">v8::ValueSerializer::Delegate</a>
</li>
<li>FromJust()
: <a class="el" href="classv8_1_1Maybe.html#a02b19d7fcb7744d8dba3530ef8e14c8c">v8::Maybe< T ></a>
</li>
<li>FromMaybe()
: <a class="el" href="classv8_1_1Maybe.html#a0bcb5fb0d0e92a3f0cc546f11068a8df">v8::Maybe< T ></a>
, <a class="el" href="classv8_1_1MaybeLocal.html#afe1aea162c64385160cc1c83df859eaf">v8::MaybeLocal< T ></a>
</li>
<li>FromSnapshot()
: <a class="el" href="classv8_1_1Context.html#a49a8fb02c04b6ebf4e532755d50d2ff9">v8::Context</a>
, <a class="el" href="classv8_1_1FunctionTemplate.html#acd9eaca4c7d6de89949b8e1c41f4ba46">v8::FunctionTemplate</a>
, <a class="el" href="classv8_1_1ObjectTemplate.html#a7899f31276e3ca69358005e360e3bc27">v8::ObjectTemplate</a>
</li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.11
</small></address>
</body>
</html>
| v8-dox/v8-dox.github.io | 2a2c881/html/functions_f.html | HTML | mit | 8,002 |
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>readlines (Buffering)</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
</head>
<body class="standalone-code">
<pre><span class="ruby-comment cmt"># File lib/openssl/buffering.rb, line 124</span>
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">readlines</span>(<span class="ruby-identifier">eol</span>=<span class="ruby-identifier">$/</span>)
<span class="ruby-identifier">ary</span> = []
<span class="ruby-keyword kw">while</span> <span class="ruby-identifier">line</span> = <span class="ruby-keyword kw">self</span>.<span class="ruby-identifier">gets</span>(<span class="ruby-identifier">eol</span>)
<span class="ruby-identifier">ary</span> <span class="ruby-operator"><<</span> <span class="ruby-identifier">line</span>
<span class="ruby-keyword kw">end</span>
<span class="ruby-identifier">ary</span>
<span class="ruby-keyword kw">end</span></pre>
</body>
</html> | enzor/jror-example | doc/jruby-openssl-0.7/rdoc/classes/Buffering.src/M000045.html | HTML | mit | 1,249 |
<!doctype html>
<html>
<title>commands</title>
<meta http-equiv="content-type" value="text/html;utf-8">
<link rel="stylesheet" type="text/css" href="../static/style.css">
<body>
<div id="wrapper">
<h1><a href="../api/commands.html">commands</a></h1> <p>npm commands</p>
<h2 id="SYNOPSIS">SYNOPSIS</h2>
<pre><code>npm.commands[<command>](args, callback)</code></pre>
<h2 id="DESCRIPTION">DESCRIPTION</h2>
<p>npm comes with a full set of commands, and each of the commands takes a
similar set of arguments.</p>
<p>In general, all commands on the command object take an <strong>array</strong> of positional
argument <strong>strings</strong>. The last argument to any function is a callback. Some
commands are special and take other optional arguments.</p>
<p>All commands have their own man page. See <code>man npm-<command></code> for command-line
usage, or <code>man 3 npm-<command></code> for programmatic usage.</p>
<h2 id="SEE-ALSO">SEE ALSO</h2>
<ul><li><a href="../doc/index.html">index(1)</a></li></ul>
</div>
<p id="footer">commands — npm@1.2.23</p>
<script>
;(function () {
var wrapper = document.getElementById("wrapper")
var els = Array.prototype.slice.call(wrapper.getElementsByTagName("*"), 0)
.filter(function (el) {
return el.parentNode === wrapper
&& el.tagName.match(/H[1-6]/)
&& el.id
})
var l = 2
, toc = document.createElement("ul")
toc.innerHTML = els.map(function (el) {
var i = el.tagName.charAt(1)
, out = ""
while (i > l) {
out += "<ul>"
l ++
}
while (i < l) {
out += "</ul>"
l --
}
out += "<li><a href='#" + el.id + "'>" +
( el.innerText || el.text || el.innerHTML)
+ "</a>"
return out
}).join("\n")
toc.id = "toc"
document.body.appendChild(toc)
})()
</script>
</body></html>
| fschwiet/letscodejavascript | node_modules/npm/html/api/commands.html | HTML | mit | 1,813 |
{% extends "layout.html" %}
{% block body %}
<title>All Events - Media Services</title>
<form id="adminForm" action="" method=post>
<div class="container">
<table class="table">
<thead>
<td>
<ul class="nav nav-pills">
<li class="nav-item">
<a class="nav-link active" href="#">Upcoming Events</a>
</li>
<li class="nav-item">
<a class="nav-link" href="{{ url_for('past') }}">Past Events</a>
</li>
</ul>
</td>
<td>
<button type="button" class="btn btn-outline-secondary" onclick="toggleSignUps()">
<span id="signUpText" class="text-muted"> Please Wait...</span>
</button>
</td>
<td style="text-align:right">
<a href="{{ url_for('new') }}" class="btn btn-success">
<i class="fa fa-plus" aria-hidden="true"></i> New Event
</a>
</td>
</thead>
</table>
<table class="table table-hover">
{% block events %}{% endblock %}
</table>
<!-- bottom buttons -->
</div>
</form>
<script>
currentPage = "edit";
$(window).on('load', function(){ socket.emit("getSignUps") })
function lockEvent(event) {
socket.emit("lockEvent", String(event));
document.getElementById("lock_"+event).innerHTML = "Please Wait...";
}
function toggleSignUps() {
socket.emit("toggleSignUps");
document.getElementById("signUpText").innerHTML = "Please Wait...";
}
socket.on('eventLock', function(data) {
if (data.locked) {
document.getElementById("lock_"+data.event).setAttribute("class", "btn btn-sm btn-danger");
document.getElementById("lock_"+data.event).innerHTML = "<i class=\"fa fa-lock\"> </i> Locked";
}
else {
document.getElementById("lock_"+data.event).setAttribute("class", "btn btn-sm btn-default");
document.getElementById("lock_"+data.event).innerHTML = "<i class=\"fa fa-unlock\"> </i> Unlocked";
}
});
socket.on('signUpsAvailable', function(data) {
if (data.available) {
document.getElementById("signUpText").setAttribute("class", "text-success");
document.getElementById("signUpText").innerHTML = "<i id=\"signUpIcon\" class=\"fa fa-toggle-on\" aria-hidden=\"true\"></i> Sign-Ups Open";
}
else {
document.getElementById("signUpText").setAttribute("class", "text-danger");
document.getElementById("signUpText").innerHTML = "<i id=\"signUpIcon\" class=\"fa fa-toggle-off\" aria-hidden=\"true\"></i> Sign-Ups Closed";
}
});
</script>
{% endblock %}
| theapricot/oppapp2 | templates/admin.html | HTML | mit | 2,480 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>
Sebastian Daza
| R package to compute statistics from the American Community Survey (ACS) and Decennial US Census
</title>
<meta name="description" content="A simple, whitespace theme for academics. Based on [*folio](https://github.com/bogoli/-folio) design.
">
<!-- Open Graph -->
<!-- Bootstrap & MDB -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet" integrity="sha512-MoRNloxbStBcD8z3M/2BmnT+rg4IsMxPkXaGh2zD6LGNNFE80W3onsAhRcMAMrSoyWL9xD7Ert0men7vR8LUZg==" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.19.1/css/mdb.min.css" integrity="sha512-RO38pBRxYH3SoOprtPTD86JFOclM51/XTIdEPh5j8sj4tp8jmQIx26twG52UaLi//hQldfrh7e51WzP9wuP32Q==" crossorigin="anonymous" />
<!-- Fonts & Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css" integrity="sha512-1PKOgIY59xJ8Co8+NE6FZ+LOAZKjy+KY8iq0G4B3CyeY6wYHN3yt9PW0XpSriVlkMXe40PTKnXrLnZ9+fkDaog==" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/academicons/1.9.0/css/academicons.min.css" integrity="sha512-W4yqoT1+8NLkinBLBZko+dFB2ZbHsYLDdr50VElllRcNt2Q4/GSs6u71UHKxB7S6JEMCp5Ve4xjh3eGQl/HRvg==" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Roboto+Slab:100,300,400,500,700|Material+Icons">
<!-- Code Syntax Highlighting -->
<link rel="stylesheet" href="https://gitcdn.xyz/repo/jwarby/jekyll-pygments-themes/master/github.css" />
<!-- Styles -->
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🎯</text></svg>">
<link rel="stylesheet" href="/assets/css/main.css">
<link rel="canonical" href="/blog/2016/acsr/">
<!-- JQuery -->
<!-- jQuery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js" integrity="sha512-bLT0Qm9VnAYZDflyKcBaQ2gg0hSYNQrJ8RilYldYQ1FxQYoCLtUjuuRuZo+fjqhx/qtq/1itJ0C2ejDxltZVFg==" crossorigin="anonymous"></script>
<!-- Theming-->
<script src="/assets/js/theme.js"></script>
<script src="/assets/js/dark_mode.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-34554402-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-34554402-2');
</script>
<!-- MathJax -->
<script type="text/javascript">
window.MathJax = {
tex: {
tags: 'ams'
}
};
</script>
<script defer type="text/javascript" id="MathJax-script" src="https://cdn.jsdelivr.net/npm/mathjax@3.2.0/es5/tex-mml-chtml.js"></script>
<script defer src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
</head>
<body class="fixed-top-nav ">
<!-- Header -->
<header>
<!-- Nav Bar -->
<nav id="navbar" class="navbar navbar-light navbar-expand-sm fixed-top">
<div class="container">
<a class="navbar-brand title font-weight-lighter" href="https://sdaza.com/">
<span class="font-weight-bold">Sebastian</span> Daza
</a>
<!-- Navbar Toggle -->
<button class="navbar-toggler collapsed ml-auto" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar top-bar"></span>
<span class="icon-bar middle-bar"></span>
<span class="icon-bar bottom-bar"></span>
</button>
<div class="collapse navbar-collapse text-right" id="navbarNav">
<ul class="navbar-nav ml-auto flex-nowrap">
<!-- About -->
<li class="nav-item ">
<a class="nav-link" href="/">
about
</a>
</li>
<!-- Blog -->
<li class="nav-item active">
<a class="nav-link" href="/blog/">
blog
</a>
</li>
<!-- Other pages -->
<li class="nav-item ">
<a class="nav-link" href="/cv/">
cv
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="/projects/">
projects
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="/publications/">
publications
</a>
</li>
<div class = "toggle-container">
<a id = "light-toggle">
<i class="fas fa-moon"></i>
<i class="fas fa-sun"></i>
</a>
</div>
</ul>
</div>
</div>
</nav>
</header>
<!-- Content -->
<div class="container mt-5">
<div class="post">
<header class="post-header">
<h1 class="post-title">R package to compute statistics from the American Community Survey (ACS) and Decennial US Census</h1>
<p class="post-meta">July 6, 2016 • Sebastian Daza</p>
</header>
<article class="post-content">
<p>The <code class="language-plaintext highlighter-rouge">acsr</code> package helps extracting variables and computing statistics using the America Community Survey and Decennial US Census. It was created for the <a href="http://www.apl.wisc.edu/">Applied Population Laboratory</a> (APL) at the University of Wisconsin-Madison.</p>
<h2 class="section-heading">Installation</h2>
<p>The functions depend on the <code class="language-plaintext highlighter-rouge">acs</code> and <code class="language-plaintext highlighter-rouge">data.table</code> packages, so it is necessary to install then before using <code class="language-plaintext highlighter-rouge">acsr</code>. The <code class="language-plaintext highlighter-rouge">acsr</code> package is hosted on a github repository and can be installed using <code class="language-plaintext highlighter-rouge">devtools</code>:</p>
<figure class="highlight"><pre><code class="language-r" data-lang="r"><span class="n">devtools</span><span class="o">::</span><span class="n">install_github</span><span class="p">(</span><span class="s2">"sdaza/acsr"</span><span class="p">)</span><span class="w">
</span><span class="n">library</span><span class="p">(</span><span class="n">acsr</span><span class="p">)</span></code></pre></figure>
<p>Remember to set the ACS API key, to check the help documentation and the default values of the <code class="language-plaintext highlighter-rouge">acsr</code> functions.</p>
<figure class="highlight"><pre><code class="language-r" data-lang="r"><span class="n">api.key.install</span><span class="p">(</span><span class="n">key</span><span class="o">=</span><span class="s2">"*"</span><span class="p">)</span><span class="w">
</span><span class="o">?</span><span class="n">sumacs</span><span class="w">
</span><span class="o">?</span><span class="n">acsdata</span></code></pre></figure>
<p>The default dataset is <code class="language-plaintext highlighter-rouge">acs</code>, the level is <code class="language-plaintext highlighter-rouge">state</code> (Wisconsin, <code class="language-plaintext highlighter-rouge">state = "WI"</code>), the <code class="language-plaintext highlighter-rouge">endyear</code> is 2014, and the confidence level to compute margins of error (MOEs) is 90%.</p>
<h2 class="section-heading">Levels</h2>
<p>The <code class="language-plaintext highlighter-rouge">acsr</code> functions can extract all the levels available in the <code class="language-plaintext highlighter-rouge">acs</code> package. The table below shows the summary and required levels when using the <code class="language-plaintext highlighter-rouge">acsdata</code> and <code class="language-plaintext highlighter-rouge">sumacs</code> functions:</p>
<table>
<thead>
<tr>
<th>summary number</th>
<th>levels</th>
</tr>
</thead>
<tbody>
<tr>
<td>010</td>
<td>us</td>
</tr>
<tr>
<td>020</td>
<td>region</td>
</tr>
<tr>
<td>030</td>
<td>division</td>
</tr>
<tr>
<td>040</td>
<td>state</td>
</tr>
<tr>
<td>050</td>
<td>state, county</td>
</tr>
<tr>
<td>060</td>
<td>state, county, county.subdivision</td>
</tr>
<tr>
<td>140</td>
<td>state, county, tract</td>
</tr>
<tr>
<td>150</td>
<td>state, county, tract, block.group</td>
</tr>
<tr>
<td>160</td>
<td>state, place</td>
</tr>
<tr>
<td>250</td>
<td>american.indian.area</td>
</tr>
<tr>
<td>320</td>
<td>state, msa</td>
</tr>
<tr>
<td>340</td>
<td>state, csa</td>
</tr>
<tr>
<td>350</td>
<td>necta</td>
</tr>
<tr>
<td>400</td>
<td>urban.area</td>
</tr>
<tr>
<td>500</td>
<td>state, congressional.district</td>
</tr>
<tr>
<td>610</td>
<td>state, state.legislative.district.upper</td>
</tr>
<tr>
<td>620</td>
<td>state, state.legislative.district.lower</td>
</tr>
<tr>
<td>795</td>
<td>state, puma</td>
</tr>
<tr>
<td>860</td>
<td>zip.code</td>
</tr>
<tr>
<td>950</td>
<td>state, school.district.elementary</td>
</tr>
<tr>
<td>960</td>
<td>state, school.district.secondary</td>
</tr>
<tr>
<td>970</td>
<td>state, school.district.unified</td>
</tr>
</tbody>
</table>
<h2 class="section-heading">Getting variables and statistics</h2>
<p>We can use the <code class="language-plaintext highlighter-rouge">sumacs</code> function to extract variable and statistics. We have to specify the corresponding method (e.g., <em>proportion</em> or just <em>variable</em>), and the name of the statistic or variable to be included in the output.</p>
<figure class="highlight"><pre><code class="language-r" data-lang="r"><span class="n">sumacs</span><span class="p">(</span><span class="n">formula</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="nf">c</span><span class="p">(</span><span class="s2">"(b16004_004 + b16004_026 + b16004_048 / b16004_001)"</span><span class="p">,</span><span class="w"> </span><span class="s2">"b16004_026"</span><span class="p">),</span><span class="w">
</span><span class="n">varname</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="nf">c</span><span class="p">(</span><span class="s2">"mynewvar"</span><span class="p">,</span><span class="w"> </span><span class="s2">"myvar"</span><span class="p">),</span><span class="w">
</span><span class="n">method</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="nf">c</span><span class="p">(</span><span class="s2">"prop"</span><span class="p">,</span><span class="w"> </span><span class="s2">"variable"</span><span class="p">),</span><span class="w">
</span><span class="n">level</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="nf">c</span><span class="p">(</span><span class="s2">"division"</span><span class="p">))</span></code></pre></figure>
<figure class="highlight"><pre><code class="language-text" data-lang="text">## [1] "Extracting data from: acs 2014"
## [1] ". . . . . . ACS/Census variables : 4"
## [1] ". . . . . . Levels : 1"
## [1] ". . . . . . New variables : 2"
## [1] ". . . . . . Getting division data"
## [1] ". . . . . . Creating variables"
## [1] ". . . . . . 50%"
## [1] ". . . . . . 100%"
## [1] ". . . . . . Formatting output"</code></pre></figure>
<figure class="highlight"><pre><code class="language-text" data-lang="text">## sumlevel geoid division mynewvar_est mynewvar_moe myvar_est myvar_moe
## 1: 030 NA 1 0.0762 0.000347 770306 3490
## 2: 030 NA 2 0.1182 0.000278 3332150 9171
## 3: 030 NA 3 0.0599 0.000196 1819417 7209
## 4: 030 NA 4 0.0411 0.000277 547577 4461
## 5: 030 NA 5 0.1108 0.000246 4526480 11869
## 6: 030 NA 6 0.0320 0.000265 402475 3781
## 7: 030 NA 7 0.2203 0.000469 5318126 13044
## 8: 030 NA 8 0.1582 0.000602 2279303 10746
## 9: 030 NA 9 0.2335 0.000501 7765838 20289</code></pre></figure>
<p>To download the data can be slow, especially when many levels are being used (e.g., blockgroup). A better approach in those cases is, first, download the data using the function <code class="language-plaintext highlighter-rouge">acsdata</code> , and then use them as input.</p>
<figure class="highlight"><pre><code class="language-r" data-lang="r"><span class="n">mydata</span><span class="w"> </span><span class="o"><-</span><span class="w"> </span><span class="n">acsdata</span><span class="p">(</span><span class="n">formula</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="nf">c</span><span class="p">(</span><span class="s2">"(b16004_004 + b16004_026 + b16004_048 / b16004_001)"</span><span class="p">,</span><span class="w">
</span><span class="s2">"b16004_026"</span><span class="p">),</span><span class="w">
</span><span class="n">level</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="nf">c</span><span class="p">(</span><span class="s2">"division"</span><span class="p">))</span></code></pre></figure>
<figure class="highlight"><pre><code class="language-text" data-lang="text">## [1] ". . . . . . Getting division data"</code></pre></figure>
<figure class="highlight"><pre><code class="language-r" data-lang="r"><span class="n">sumacs</span><span class="p">(</span><span class="n">formula</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="nf">c</span><span class="p">(</span><span class="s2">"(b16004_004 + b16004_026 + b16004_048 / b16004_001)"</span><span class="p">,</span><span class="w"> </span><span class="s2">"b16004_026"</span><span class="p">),</span><span class="w">
</span><span class="n">varname</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="nf">c</span><span class="p">(</span><span class="s2">"mynewvar"</span><span class="p">,</span><span class="w"> </span><span class="s2">"myvar"</span><span class="p">),</span><span class="w">
</span><span class="n">method</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="nf">c</span><span class="p">(</span><span class="s2">"prop"</span><span class="p">,</span><span class="w"> </span><span class="s2">"variable"</span><span class="p">),</span><span class="w">
</span><span class="n">level</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="nf">c</span><span class="p">(</span><span class="s2">"division"</span><span class="p">),</span><span class="w">
</span><span class="n">data</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="n">mydata</span><span class="p">)</span></code></pre></figure>
<figure class="highlight"><pre><code class="language-text" data-lang="text">## [1] "Extracting data from: acs 2014"
## [1] ". . . . . . ACS/Census variables : 4"
## [1] ". . . . . . Levels : 1"
## [1] ". . . . . . New variables : 2"
## [1] ". . . . . . Creating variables"
## [1] ". . . . . . 50%"
## [1] ". . . . . . 100%"
## [1] ". . . . . . Formatting output"</code></pre></figure>
<figure class="highlight"><pre><code class="language-text" data-lang="text">## sumlevel geoid division mynewvar_est mynewvar_moe myvar_est myvar_moe
## 1: 030 NA 1 0.0762 0.000347 770306 3490
## 2: 030 NA 2 0.1182 0.000278 3332150 9171
## 3: 030 NA 3 0.0599 0.000196 1819417 7209
## 4: 030 NA 4 0.0411 0.000277 547577 4461
## 5: 030 NA 5 0.1108 0.000246 4526480 11869
## 6: 030 NA 6 0.0320 0.000265 402475 3781
## 7: 030 NA 7 0.2203 0.000469 5318126 13044
## 8: 030 NA 8 0.1582 0.000602 2279303 10746
## 9: 030 NA 9 0.2335 0.000501 7765838 20289</code></pre></figure>
<h2 class="section-heading">Standard errors</h2>
<p>When computing statistics there are two ways to define the standard errors:</p>
<ul>
<li>Including all standard errors of the variables used to compute a statistic (<code class="language-plaintext highlighter-rouge">one.zero = FALSE</code>)</li>
<li>Include all standard errors except those of variables that are equal to zero. Only the maximum standard error of the variables equal to zero is included (<code class="language-plaintext highlighter-rouge">one.zero = TRUE</code>)</li>
<li>The default value is <code class="language-plaintext highlighter-rouge">one.zero = TRUE</code></li>
</ul>
<p>For more details about how standard errors are computed for proportions, ratios and aggregations look at <a href="https://www.census.gov/content/dam/Census/library/publications/2008/acs/ACSGeneralHandbook.pdf">A Compass for Understanding and Using American Community Survey Data</a>.</p>
<p>Below an example when estimating proportions and using <code class="language-plaintext highlighter-rouge">one.zero = FALSE</code>:</p>
<figure class="highlight"><pre><code class="language-r" data-lang="r"><span class="n">sumacs</span><span class="p">(</span><span class="n">formula</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s2">"(b16004_004 + b16004_026 + b16004_048) / b16004_001"</span><span class="p">,</span><span class="w">
</span><span class="n">varname</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s2">"mynewvar"</span><span class="p">,</span><span class="w">
</span><span class="n">method</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s2">"prop"</span><span class="p">,</span><span class="w">
</span><span class="n">level</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s2">"tract"</span><span class="p">,</span><span class="w">
</span><span class="n">county</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="m">1</span><span class="p">,</span><span class="w">
</span><span class="n">tract</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="m">950501</span><span class="p">,</span><span class="w">
</span><span class="n">endyear</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="m">2013</span><span class="p">,</span><span class="w">
</span><span class="n">one.zero</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="kc">FALSE</span><span class="p">)</span></code></pre></figure>
<figure class="highlight"><pre><code class="language-text" data-lang="text">## [1] "Extracting data from: acs 2013"
## [1] ". . . . . . ACS/Census variables : 4"
## [1] ". . . . . . Levels : 1"
## [1] ". . . . . . New variables : 1"
## [1] ". . . . . . Getting tract data"
## [1] ". . . . . . Creating variables"
## [1] ". . . . . . 100%"
## [1] ". . . . . . Formatting output"</code></pre></figure>
<figure class="highlight"><pre><code class="language-text" data-lang="text">## sumlevel geoid st_fips cnty_fips tract_fips mynewvar_est mynewvar_moe
## 1: 140 55001950501 55 1 950501 0.0226 0.0252</code></pre></figure>
\[SE = \sqrt{ \frac{(5.47 ^ 2 + 22.49 ^ 2 + 5.47 ^ 2) - ( 0.02 ^ 2 \times 102.13 ^ 2)}{1546} } \times 1.645 = 0.0252\]
<p>When <code class="language-plaintext highlighter-rouge">one.zero = TRUE</code>:</p>
<figure class="highlight"><pre><code class="language-r" data-lang="r"><span class="n">sumacs</span><span class="p">(</span><span class="n">formula</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s2">"(b16004_004 + b16004_026 + b16004_048) / b16004_001"</span><span class="p">,</span><span class="w">
</span><span class="n">varname</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s2">"mynewvar"</span><span class="p">,</span><span class="w">
</span><span class="n">method</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s2">"prop"</span><span class="p">,</span><span class="w">
</span><span class="n">level</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s2">"tract"</span><span class="p">,</span><span class="w">
</span><span class="n">county</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="m">1</span><span class="p">,</span><span class="w">
</span><span class="n">tract</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="m">950501</span><span class="p">,</span><span class="w">
</span><span class="n">endyear</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="m">2013</span><span class="p">,</span><span class="w">
</span><span class="n">one.zero</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="kc">TRUE</span><span class="p">)</span></code></pre></figure>
<figure class="highlight"><pre><code class="language-text" data-lang="text">## [1] "Extracting data from: acs 2013"
## [1] ". . . . . . ACS/Census variables : 4"
## [1] ". . . . . . Levels : 1"
## [1] ". . . . . . New variables : 1"
## [1] ". . . . . . Getting tract data"
## [1] ". . . . . . Creating variables"
## [1] ". . . . . . 100%"
## [1] ". . . . . . Formatting output"</code></pre></figure>
<figure class="highlight"><pre><code class="language-text" data-lang="text">## sumlevel geoid st_fips cnty_fips tract_fips mynewvar_est mynewvar_moe
## 1: 140 55001950501 55 1 950501 0.0226 0.0245</code></pre></figure>
\[SE_{\text{ one.zero}} \sqrt{ \frac{(5.47 ^ 2 + 22.49 ^ 2) - ( 0.02 ^ 2 \times 102.13 ^ 2)}{1546} } \times 1.645 = 0.0245\]
<p>When the square root value in the standard error formula doesn’t exist (e.g., the square root of a negative number), the ratio formula is instead used. The ratio adjustment is done <strong>variable by variable</strong> .</p>
<p>It can also be that the <code class="language-plaintext highlighter-rouge">one.zero</code> option makes the square root undefinable. In those cases, the function uses again the <strong>ratio</strong> formula to compute standard errors. There is also a possibility that the standard error estimates using the <strong>ratio</strong> formula are higher than the <strong>proportion</strong> estimates without the <code class="language-plaintext highlighter-rouge">one.zero</code> option.</p>
<h2 class="section-heading">Decennial Data from the US Census</h2>
<p>Let’s get the African American and Hispanic population by state. In this case, we don’t have any estimation of margin of error.</p>
<figure class="highlight"><pre><code class="language-r" data-lang="r"><span class="n">sumacs</span><span class="p">(</span><span class="n">formula</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="nf">c</span><span class="p">(</span><span class="s2">"p0080004"</span><span class="p">,</span><span class="w"> </span><span class="s2">"p0090002"</span><span class="p">),</span><span class="w">
</span><span class="n">method</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s2">"variable"</span><span class="p">,</span><span class="w">
</span><span class="n">dataset</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s2">"sf1"</span><span class="p">,</span><span class="w">
</span><span class="n">level</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s2">"state"</span><span class="p">,</span><span class="w">
</span><span class="n">state</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s2">"*"</span><span class="p">,</span><span class="w">
</span><span class="n">endyear</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="m">2010</span><span class="p">)</span></code></pre></figure>
<figure class="highlight"><pre><code class="language-text" data-lang="text">## [1] "Extracting data from: sf1 2010"
## [1] ". . . . . . ACS/Census variables : 2"
## [1] ". . . . . . Levels : 1"
## [1] ". . . . . . New variables : 2"
## [1] ". . . . . . Getting state data"
## [1] ". . . . . . Creating variables"
## [1] ". . . . . . 50%"
## [1] ". . . . . . 100%"
## [1] ". . . . . . Formatting output"</code></pre></figure>
<figure class="highlight"><pre><code class="language-text" data-lang="text">## sumlevel geoid st_fips p0080004 p0090002
## 1: 040 01 01 1251311 185602
## 2: 040 02 02 23263 39249
## 3: 040 04 04 259008 1895149
## 4: 040 05 05 449895 186050
## 5: 040 06 06 2299072 14013719
## 6: 040 08 08 201737 1038687
## 7: 040 09 09 362296 479087
## 8: 040 10 10 191814 73221
## 9: 040 11 11 305125 54749
## 10: 040 12 12 2999862 4223806
## 11: 040 13 13 2950435 853689
## 12: 040 15 15 21424 120842
## 13: 040 16 16 9810 175901
## 14: 040 17 17 1866414 2027578
## 15: 040 18 18 591397 389707
## 16: 040 19 19 89148 151544
## 17: 040 20 20 167864 300042
## 18: 040 21 21 337520 132836
## 19: 040 22 22 1452396 192560
## 20: 040 23 23 15707 16935
## 21: 040 24 24 1700298 470632
## 22: 040 25 25 434398 627654
## 23: 040 26 26 1400362 436358
## 24: 040 27 27 274412 250258
## 25: 040 28 28 1098385 81481
## 26: 040 29 29 693391 212470
## 27: 040 30 30 4027 28565
## 28: 040 31 31 82885 167405
## 29: 040 32 32 218626 716501
## 30: 040 33 33 15035 36704
## 31: 040 34 34 1204826 1555144
## 32: 040 35 35 42550 953403
## 33: 040 36 36 3073800 3416922
## 34: 040 37 37 2048628 800120
## 35: 040 38 38 7960 13467
## 36: 040 39 39 1407681 354674
## 37: 040 40 40 277644 332007
## 38: 040 41 41 69206 450062
## 39: 040 42 42 1377689 719660
## 40: 040 44 44 60189 130655
## 41: 040 45 45 1290684 235682
## 42: 040 46 46 10207 22119
## 43: 040 47 47 1057315 290059
## 44: 040 48 48 2979598 9460921
## 45: 040 49 49 29287 358340
## 46: 040 50 50 6277 9208
## 47: 040 51 51 1551399 631825
## 48: 040 53 53 240042 755790
## 49: 040 54 54 63124 22268
## 50: 040 55 55 359148 336056
## 51: 040 56 56 4748 50231
## 52: 040 72 72 461498 3688455
## sumlevel geoid st_fips p0080004 p0090002</code></pre></figure>
<h2 class="section-heading">Output</h2>
<p>The output can be formatted using a wide or long format:</p>
<figure class="highlight"><pre><code class="language-r" data-lang="r"><span class="n">sumacs</span><span class="p">(</span><span class="n">formula</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s2">"(b16004_004 + b16004_026 + b16004_048 / b16004_001)"</span><span class="p">,</span><span class="w">
</span><span class="n">varname</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s2">"mynewvar"</span><span class="p">,</span><span class="w">
</span><span class="n">method</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s2">"prop"</span><span class="p">,</span><span class="w">
</span><span class="n">level</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s2">"division"</span><span class="p">,</span><span class="w">
</span><span class="n">format.out</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s2">"long"</span><span class="p">)</span></code></pre></figure>
<figure class="highlight"><pre><code class="language-text" data-lang="text">## [1] "Extracting data from: acs 2014"
## [1] ". . . . . . ACS/Census variables : 4"
## [1] ". . . . . . Levels : 1"
## [1] ". . . . . . New variables : 1"
## [1] ". . . . . . Getting division data"
## [1] ". . . . . . Creating variables"
## [1] ". . . . . . 100%"
## [1] ". . . . . . Formatting output"</code></pre></figure>
<figure class="highlight"><pre><code class="language-text" data-lang="text">## geoid sumlevel division var_name est moe
## 1: NA 030 1 mynewvar 0.0762 0.000347
## 2: NA 030 2 mynewvar 0.1182 0.000278
## 3: NA 030 3 mynewvar 0.0599 0.000196
## 4: NA 030 4 mynewvar 0.0411 0.000277
## 5: NA 030 5 mynewvar 0.1108 0.000246
## 6: NA 030 6 mynewvar 0.0320 0.000265
## 7: NA 030 7 mynewvar 0.2203 0.000469
## 8: NA 030 8 mynewvar 0.1582 0.000602
## 9: NA 030 9 mynewvar 0.2335 0.000501</code></pre></figure>
<p>And it can also be exported to a csv file:</p>
<figure class="highlight"><pre><code class="language-r" data-lang="r"><span class="n">sumacs</span><span class="p">(</span><span class="n">formula</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s2">"(b16004_004 + b16004_026 + b16004_048 / b16004_001)"</span><span class="p">,</span><span class="w">
</span><span class="n">varname</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s2">"mynewvar"</span><span class="p">,</span><span class="w">
</span><span class="n">method</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s2">"prop"</span><span class="p">,</span><span class="w">
</span><span class="n">level</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s2">"division"</span><span class="p">,</span><span class="w">
</span><span class="n">file</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s2">"myfile.out"</span><span class="p">)</span></code></pre></figure>
<figure class="highlight"><pre><code class="language-text" data-lang="text">## [1] "Extracting data from: acs 2014"
## [1] ". . . . . . ACS/Census variables : 4"
## [1] ". . . . . . Levels : 1"
## [1] ". . . . . . New variables : 1"
## [1] ". . . . . . Getting division data"
## [1] ". . . . . . Creating variables"
## [1] ". . . . . . 100%"
## [1] ". . . . . . Formatting output"
## [1] "Data exported to a CSV file! "</code></pre></figure>
<h2 class="section-heading">Combining geographic levels</h2>
<p>We can combine geographic levels using two methods: (1) <code class="language-plaintext highlighter-rouge">sumacs</code> and (2) <code class="language-plaintext highlighter-rouge">combine.output</code>. The first one allows only single combinations, the second multiple ones.</p>
<p>If I want to combine two states (e.g., Wisconsin and Minnesota) I can use:</p>
<figure class="highlight"><pre><code class="language-r" data-lang="r"><span class="n">sumacs</span><span class="p">(</span><span class="s2">"(b16004_004 + b16004_026 + b16004_048 / b16004_001)"</span><span class="p">,</span><span class="w">
</span><span class="n">varname</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s2">"mynewvar"</span><span class="p">,</span><span class="w">
</span><span class="n">method</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s2">"prop"</span><span class="p">,</span><span class="w">
</span><span class="n">level</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s2">"state"</span><span class="p">,</span><span class="w">
</span><span class="n">state</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="nf">list</span><span class="p">(</span><span class="s2">"WI"</span><span class="p">,</span><span class="w"> </span><span class="s2">"MN"</span><span class="p">),</span><span class="w">
</span><span class="n">combine</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="kc">TRUE</span><span class="p">,</span><span class="w">
</span><span class="n">print.levels</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="kc">FALSE</span><span class="p">)</span></code></pre></figure>
<figure class="highlight"><pre><code class="language-text" data-lang="text">## [1] "Extracting data from: acs 2014"
## [1] ". . . . . . ACS/Census variables : 4"
## [1] ". . . . . . Levels : 1"
## [1] ". . . . . . New variables : 1"
## [1] ". . . . . . Getting combined data"
## [1] ". . . . . . Creating variables"
## [1] ". . . . . . 100%"
## [1] ". . . . . . Formatting output"</code></pre></figure>
<figure class="highlight"><pre><code class="language-text" data-lang="text">## geoid combined_group mynewvar_est mynewvar_moe
## 1: NA aggregate 0.042 0.000331</code></pre></figure>
<p>If I want to put together multiple combinations (e.g., groups of states):</p>
<figure class="highlight"><pre><code class="language-r" data-lang="r"><span class="n">combine.output</span><span class="p">(</span><span class="s2">"(b16004_004 + b16004_026 + b16004_048 / b16004_001)"</span><span class="p">,</span><span class="w">
</span><span class="n">varname</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s2">"mynewvar"</span><span class="p">,</span><span class="w">
</span><span class="n">method</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s2">"prop"</span><span class="p">,</span><span class="w">
</span><span class="n">level</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="nf">list</span><span class="p">(</span><span class="s2">"state"</span><span class="p">,</span><span class="w"> </span><span class="s2">"state"</span><span class="p">),</span><span class="w">
</span><span class="n">state</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="nf">list</span><span class="p">(</span><span class="w"> </span><span class="nf">list</span><span class="p">(</span><span class="s2">"WI"</span><span class="p">,</span><span class="w"> </span><span class="s2">"MN"</span><span class="p">),</span><span class="w"> </span><span class="nf">list</span><span class="p">(</span><span class="s2">"CA"</span><span class="p">,</span><span class="w"> </span><span class="s2">"OR"</span><span class="p">)),</span><span class="w"> </span><span class="c1"># nested list</span><span class="w">
</span><span class="n">combine.names</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="nf">c</span><span class="p">(</span><span class="s2">"WI+MN"</span><span class="p">,</span><span class="w"> </span><span class="s2">"CA+OR"</span><span class="p">),</span><span class="w">
</span><span class="n">print.levels</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="kc">FALSE</span><span class="p">)</span></code></pre></figure>
<figure class="highlight"><pre><code class="language-text" data-lang="text">## [1] ". . . . . . Defining WI+MN"
## [1] "Extracting data from: acs 2014"
## [1] ". . . . . . ACS/Census variables : 4"
## [1] ". . . . . . Levels : 1"
## [1] ". . . . . . New variables : 1"
## [1] ". . . . . . Getting combined data"
## [1] ". . . . . . Creating variables"
## [1] ". . . . . . 100%"
## [1] ". . . . . . Formatting output"
## [1] ". . . . . . Defining CA+OR"
## [1] "Extracting data from: acs 2014"
## [1] ". . . . . . ACS/Census variables : 4"
## [1] ". . . . . . Levels : 1"
## [1] ". . . . . . New variables : 1"
## [1] ". . . . . . Getting combined data"
## [1] ". . . . . . Creating variables"
## [1] ". . . . . . 100%"
## [1] ". . . . . . Formatting output"</code></pre></figure>
<figure class="highlight"><pre><code class="language-text" data-lang="text">## combined_group mynewvar_est mynewvar_moe
## 1: WI+MN 0.042 0.000331
## 2: CA+OR 0.269 0.000565</code></pre></figure>
<h2 class="section-heading">A map?</h2>
<p>Let’s color a map using poverty by county:</p>
<figure class="highlight"><pre><code class="language-r" data-lang="r"><span class="n">pov</span><span class="w"> </span><span class="o"><-</span><span class="w"> </span><span class="n">sumacs</span><span class="p">(</span><span class="n">formula</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s2">"b17001_002 / b17001_001 * 100"</span><span class="p">,</span><span class="w">
</span><span class="n">varname</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="nf">c</span><span class="p">(</span><span class="s2">"pov"</span><span class="p">),</span><span class="w">
</span><span class="n">method</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="nf">c</span><span class="p">(</span><span class="s2">"prop"</span><span class="p">),</span><span class="w">
</span><span class="n">level</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="nf">c</span><span class="p">(</span><span class="s2">"county"</span><span class="p">),</span><span class="w">
</span><span class="n">state</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s2">"*"</span><span class="p">)</span></code></pre></figure>
<figure class="highlight"><pre><code class="language-text" data-lang="text">## [1] "Extracting data from: acs 2014"
## [1] ". . . . . . ACS/Census variables : 2"
## [1] ". . . . . . Levels : 1"
## [1] ". . . . . . New variables : 1"
## [1] ". . . . . . Getting county data"
## [1] ". . . . . . Creating variables"
## [1] ". . . . . . 100%"
## [1] ". . . . . . Formatting output"</code></pre></figure>
<figure class="highlight"><pre><code class="language-r" data-lang="r"><span class="n">library</span><span class="p">(</span><span class="n">choroplethr</span><span class="p">)</span><span class="w">
</span><span class="n">library</span><span class="p">(</span><span class="n">choroplethrMaps</span><span class="p">)</span><span class="w">
</span><span class="n">pov</span><span class="p">[,</span><span class="w"> </span><span class="n">region</span><span class="w"> </span><span class="o">:=</span><span class="w"> </span><span class="nf">as.numeric</span><span class="p">(</span><span class="n">geoid</span><span class="p">)]</span><span class="w">
</span><span class="n">setnames</span><span class="p">(</span><span class="n">pov</span><span class="p">,</span><span class="w"> </span><span class="s2">"pov_est"</span><span class="p">,</span><span class="w"> </span><span class="s2">"value"</span><span class="p">)</span><span class="w">
</span><span class="n">county_choropleth</span><span class="p">(</span><span class="n">pov</span><span class="p">,</span><span class="w"> </span><span class="n">num_colors</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="m">5</span><span class="p">)</span></code></pre></figure>
<p><img src="/assets/img/2016-07-06-acsr/unnamed-chunk-15-1.png" alt="center" /></p>
<p>In sum, the <code class="language-plaintext highlighter-rouge">acsr</code> package:</p>
<ul>
<li>Reads formulas directly and extracts any ACS/Census variable</li>
<li>Provides an automatized and tailored way to obtain indicators and MOEs</li>
<li>Allows different outputs’ formats (wide and long, csv)</li>
<li>Provides an easy way to adjust MOEs to different confidence levels</li>
<li>Includes a variable-by-variable ratio adjustment of standard errors</li>
<li>Includes the zero-option when computing standard errors for proportions, ratios, and aggregations</li>
<li>Combines geographic levels flexibly</li>
</ul>
<p><strong>Last Update: 02/07/2016</strong></p>
</article>
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_shortname = 'sdaza';
var disqus_identifier = '/blog/2016/acsr';
var disqus_title = "R package to compute statistics from the American Community Survey (ACS) and Decennial US Census";
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
</div>
</div>
<!-- Footer -->
<footer class="fixed-bottom">
<div class="container mt-0">
© Copyright 2021 Sebastian Daza.
Powered by <a href="http://jekyllrb.com/" target="_blank">Jekyll</a> with <a href="https://github.com/alshedivat/al-folio">al-folio</a> theme. Hosted by <a href="https://pages.github.com/" target="_blank">GitHub Pages</a>.
Last updated: August 28, 2021.
</div>
</footer>
</body>
<!-- Bootsrap & MDB scripts -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/2.4.4/umd/popper.min.js" integrity="sha512-eUQ9hGdLjBjY3F41CScH3UX+4JDSI9zXeroz7hJ+RteoCaY+GP/LDoM8AO+Pt+DRFw3nXqsjh9Zsts8hnYv8/A==" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha512-M5KW3ztuIICmVIhjSqXe01oV2bpe248gOxqmlcYrEzAvws7Pw3z6BK0iGbrwvdrUQUhi3eXgtxp5I8PDo9YfjQ==" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.19.1/js/mdb.min.js" integrity="sha512-Mug9KHKmroQFMLm93zGrjhibM2z2Obg9l6qFG2qKjXEXkMp/VDkI4uju9m4QKPjWSwQ6O2qzZEnJDEeCw0Blcw==" crossorigin="anonymous"></script>
<!-- Mansory & imagesLoaded -->
<script defer src="https://unpkg.com/masonry-layout@4/dist/masonry.pkgd.min.js"></script>
<script defer src="https://unpkg.com/imagesloaded@4/imagesloaded.pkgd.min.js"></script>
<script defer src="/assets/js/mansory.js" type="text/javascript"></script>
<!-- Enable Tooltips -->
<script type="text/javascript">
$(function () {$('[data-toggle="tooltip"]').tooltip()})
</script>
<!-- Medium Zoom JS -->
<script src="https://cdn.jsdelivr.net/npm/medium-zoom@1.0.6/dist/medium-zoom.min.js" integrity="sha256-EdPgYcPk/IIrw7FYeuJQexva49pVRZNmt3LculEr7zM=" crossorigin="anonymous"></script>
<script src="/assets/js/zoom.js"></script>
<!-- Load Common JS -->
<script src="/assets/js/common.js"></script>
</html>
| sdaza/sdaza.github.com | blog/2016/acsr/index.html | HTML | mit | 45,371 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>circuits: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.5.0~camlp4 / circuits - 8.10.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
circuits
<small>
8.10.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-12-23 07:49:00 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-23 07:49:00 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp4 4.03+1 Camlp4 is a system for writing extensible parsers for programming languages
conf-findutils 1 Virtual package relying on findutils
conf-which 1 Virtual package relying on which
coq 8.5.0~camlp4 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.03.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.03.0 Official 4.03.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlbuild 0.14.0 OCamlbuild is a build system with builtin rules to easily build most OCaml projects.
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/circuits"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Circuits"]
depends: [
"ocaml"
"coq" {>= "8.10" & < "8.11~"}
]
tags: [
"keyword: hardware verification"
"category: Computer Science/Architecture"
]
authors: [
"Laurent Arditi"
]
bug-reports: "https://github.com/coq-contribs/circuits/issues"
dev-repo: "git+https://github.com/coq-contribs/circuits.git"
synopsis: "Some proofs of hardware (adder, multiplier, memory block instruction)"
description: """
definition and proof of a combinatorial adder, a
sequential multiplier, a memory block instruction"""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/circuits/archive/v8.10.0.tar.gz"
checksum: "md5=791bf534085120bc18d58db26e1123f4"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-circuits.8.10.0 coq.8.5.0~camlp4</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.5.0~camlp4).
The following dependencies couldn't be met:
- coq-circuits -> coq >= 8.10 -> ocaml >= 4.05.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-circuits.8.10.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.03.0-2.0.5/released/8.5.0~camlp4/circuits/8.10.0.html | HTML | mit | 7,038 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>zchinese: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.7.1+1 / zchinese - 8.9.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
zchinese
<small>
8.9.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-15 19:37:57 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-15 19:37:57 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 2 Virtual package relying on perl
coq 8.7.1+1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.06.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.06.1 Official 4.06.1 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.3 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/zchinese"
license: "Unknown"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/ZChinese"]
depends: [
"ocaml"
"coq" {>= "8.9" & < "8.10~"}
]
tags: [
"keyword: number theory"
"keyword: chinese remainder"
"keyword: primality"
"keyword: prime numbers"
"category: Mathematics/Arithmetic and Number Theory/Number theory"
"category: Miscellaneous/Extracted Programs/Arithmetic"
]
authors: [
"Valérie Ménissier-Morain"
]
bug-reports: "https://github.com/coq-contribs/zchinese/issues"
dev-repo: "git+https://github.com/coq-contribs/zchinese.git"
synopsis: "A proof of the Chinese Remainder Lemma"
description: """
This is a rewriting of the contribution chinese-lemma using Zarith"""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/zchinese/archive/v8.9.0.tar.gz"
checksum: "md5=a5fddf5409ff7b7053a84bbf9491b8fc"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-zchinese.8.9.0 coq.8.7.1+1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.7.1+1).
The following dependencies couldn't be met:
- coq-zchinese -> coq >= 8.9
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-zchinese.8.9.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.06.1-2.0.5/released/8.7.1+1/zchinese/8.9.0.html | HTML | mit | 6,988 |
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>jsGrid - Data Manipulation</title>
<link rel="stylesheet" type="text/css" href="demos.css" />
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300,600,400' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="../css/jsgrid.css" />
<link rel="stylesheet" type="text/css" href="../css/theme.css" />
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.2/themes/cupertino/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.2/jquery-ui.js"></script>
<script src="db.js"></script>
<script src="../src/jsgrid.core.js"></script>
<script src="../src/jsgrid.load-indicator.js"></script>
<script src="../src/jsgrid.load-strategies.js"></script>
<script src="../src/jsgrid.sort-strategies.js"></script>
<script src="../src/jsgrid.field.js"></script>
<script src="../src/jsgrid.field.text.js"></script>
<script src="../src/jsgrid.field.number.js"></script>
<script src="../src/jsgrid.field.select.js"></script>
<script src="../src/jsgrid.field.checkbox.js"></script>
<script src="../src/jsgrid.field.control.js"></script>
<style>
.details-form-field input,
.details-form-field select {
width: 250px;
float: right;
}
.details-form-field {
margin: 15px 0;
}
.ui-widget *, .ui-widget input, .ui-widget select, .ui-widget button {
font-family: 'Helvetica Neue Light', 'Open Sans', Helvetica;
font-size: 14px;
font-weight: 300 !important;
}
</style>
</head>
<body>
<h1>Data Manipulation</h1>
<div id="jsGrid"></div>
<div id="detailsForm">
<div class="details-form-field">
<label>Name: <input id="name" type="text" /></label>
</div>
<div class="details-form-field">
<label>Age: <input id="age" type="number" /></label>
</div>
<div class="details-form-field">
<label>Address: <input id="address" type="text" /></label>
</div>
<div class="details-form-field">
<label>Country:
<select id="country">
<option value="0">(Select)</option>
<option value="1">United States</option>
<option value="2">Canada</option>
<option value="3">United Kingdom</option>
<option value="4">France</option>
<option value="5">Brazil</option>
<option value="6">China</option>
<option value="7">Russia</option>
</select>
</label>
</div>
<div class="details-form-field">
<label>Is Married: <input id="married" type="checkbox" /></label>
</div>
<div class="details-form-field">
<button type="button" id="save">Save</button>
</div>
</div>
<script>
$(function() {
$("#jsGrid").jsGrid({
height: "70%",
width: "100%",
editing: true,
autoload: true,
paging: true,
deleteConfirm: function(item) {
return "The client \"" + item.Name + "\" will be removed. Are you sure?";
},
rowClick: function(args) {
showDetailsDialog("Edit", args.item);
},
controller: db,
fields: [
{ name: "Name", type: "text", width: 150 },
{ name: "Age", type: "number", width: 50 },
{ name: "Address", type: "text", width: 200 },
{ name: "Country", type: "select", items: db.countries, valueField: "Id", textField: "Name" },
{ name: "Married", type: "checkbox", title: "Is Married", sorting: false },
{
type: "control",
modeSwitchButton: false,
editButton: false,
headerTemplate: function() {
return $("<button>").attr("type", "button").text("Add")
.on("click", function () {
showDetailsDialog("Add", {});
});
}
}
]
});
$("#detailsForm").dialog({
autoOpen: false,
width: 400
});
var showDetailsDialog = function(dialogType, client) {
$("#name").val(client.Name);
$("#age").val(client.Age);
$("#address").val(client.Address);
$("#country").val(client.Country);
$("#married").prop("checked", client.Married);
$("#save").off("click").on("click", function() {
saveClient(client, dialogType === "Add");
});
$("#detailsForm").dialog("option", "title", dialogType + " Client")
.dialog("open");
};
var saveClient = function(client, isNew) {
$.extend(client, {
Name: $("#name").val(),
Age: parseInt($("#age").val(), 10),
Address: $("#address").val(),
Country: parseInt($("#country").val(), 10),
Married: $("#married").is(":checked")
});
$("#jsGrid").jsGrid(isNew ? "insertItem" : "updateItem", client);
$("#detailsForm").dialog("close");
};
});
</script>
</body>
</html>
| afzalbk/Dynamic_Table | demos/data-manipulation.html | HTML | mit | 5,917 |
<!DOCTYPE html>
<html class="theme-next mist use-motion" lang="zh-Hans">
<head>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
<meta name="theme-color" content="#222">
<meta http-equiv="Cache-Control" content="no-transform" />
<meta http-equiv="Cache-Control" content="no-siteapp" />
<link href="/lib/fancybox/source/jquery.fancybox.css?v=2.1.5" rel="stylesheet" type="text/css" />
<link href="/lib/font-awesome/css/font-awesome.min.css?v=4.6.2" rel="stylesheet" type="text/css" />
<link href="/css/main.css?v=5.1.4" rel="stylesheet" type="text/css" />
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png?v=5.1.4">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png?v=5.1.4">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png?v=5.1.4">
<link rel="mask-icon" href="/images/logo.svg?v=5.1.4" color="#222">
<meta name="keywords" content="Hexo, NexT" />
<meta name="description" content="About technology and about life.">
<meta property="og:type" content="website">
<meta property="og:title" content="Ice summer bug's notes">
<meta property="og:url" content="https://summerbuger.github.io/archives/2016/index.html">
<meta property="og:site_name" content="Ice summer bug's notes">
<meta property="og:description" content="About technology and about life.">
<meta property="og:locale" content="zh-Hans">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Ice summer bug's notes">
<meta name="twitter:description" content="About technology and about life.">
<script type="text/javascript" id="hexo.configurations">
var NexT = window.NexT || {};
var CONFIG = {
root: '/',
scheme: 'Mist',
version: '5.1.4',
sidebar: {"position":"left","display":"post","offset":12,"b2t":false,"scrollpercent":false,"onmobile":false},
fancybox: true,
tabs: true,
motion: {"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},
duoshuo: {
userId: '0',
author: '博主'
},
algolia: {
applicationID: '',
apiKey: '',
indexName: '',
hits: {"per_page":10},
labels: {"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}
}
};
</script>
<link rel="canonical" href="https://summerbuger.github.io/archives/2016/"/>
<title>归档 | Ice summer bug's notes</title>
</head>
<body itemscope itemtype="http://schema.org/WebPage" lang="zh-Hans">
<div class="container sidebar-position-left page-archive">
<div class="headband"></div>
<header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-brand-wrapper">
<div class="site-meta ">
<div class="custom-logo-site-title">
<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<span class="site-title">Ice summer bug's notes</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<p class="site-subtitle"></p>
</div>
<div class="site-nav-toggle">
<button>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
</button>
</div>
</div>
<nav class="site-nav">
<ul id="menu" class="menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section">
<i class="menu-item-icon fa fa-fw fa-home"></i> <br />
首页
</a>
</li>
<li class="menu-item menu-item-tags">
<a href="/tags/" rel="section">
<i class="menu-item-icon fa fa-fw fa-tags"></i> <br />
标签
</a>
</li>
<li class="menu-item menu-item-categories">
<a href="/categories/" rel="section">
<i class="menu-item-icon fa fa-fw fa-th"></i> <br />
分类
</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives/" rel="section">
<i class="menu-item-icon fa fa-fw fa-archive"></i> <br />
归档
</a>
</li>
</ul>
</nav>
</div>
</header>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<div class="post-block archive">
<div id="posts" class="posts-collapse">
<span class="archive-move-on"></span>
<span class="archive-page-counter">
好! 目前共计 55 篇日志。 继续努力。
</span>
<div class="collection-title">
<h1 class="archive-year" id="archive-year-2016">2016</h1>
</div>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h2 class="post-title">
<a class="post-title-link" href="/2016/12/10/技术/spring/2016-12-10-SpringMvc-@ControllerAdvice/" itemprop="url">
<span itemprop="name">SpringMVC 中的 @ControllerAdvice</span>
</a>
</h2>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2016-12-10T21:00:00+08:00"
content="2016-12-10" >
12-10
</time>
</div>
</header>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h2 class="post-title">
<a class="post-title-link" href="/2016/12/01/技术/spring/2016-12-01-SpringMVC源码学习-mvc加载过程/" itemprop="url">
<span itemprop="name">SpringMVC源码学习 —— MVC 配置加载过程</span>
</a>
</h2>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2016-12-01T21:00:00+08:00"
content="2016-12-01" >
12-01
</time>
</div>
</header>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h2 class="post-title">
<a class="post-title-link" href="/2016/10/26/技术/java/2016-10-26-分布式锁/" itemprop="url">
<span itemprop="name">几种分布式锁的实现方式</span>
</a>
</h2>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2016-10-26T21:00:00+08:00"
content="2016-10-26" >
10-26
</time>
</div>
</header>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h2 class="post-title">
<a class="post-title-link" href="/2016/10/16/技术/mybatis/2016-10-16-mybatis-XMLMapperBuilder/" itemprop="url">
<span itemprop="name">mybatis 中的 Configuration</span>
</a>
</h2>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2016-10-16T21:00:00+08:00"
content="2016-10-16" >
10-16
</time>
</div>
</header>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h2 class="post-title">
<a class="post-title-link" href="/2016/10/16/技术/mybatis/2016-10-16-mybatis-MapperBuilderAssistant/" itemprop="url">
<span itemprop="name">mybatis 中的 MapperBuilderAssistant</span>
</a>
</h2>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2016-10-16T21:00:00+08:00"
content="2016-10-16" >
10-16
</time>
</div>
</header>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h2 class="post-title">
<a class="post-title-link" href="/2016/10/16/技术/mybatis/2016-10-16-mybatis-Configuration/" itemprop="url">
<span itemprop="name">mybatis 中的 Configuration</span>
</a>
</h2>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2016-10-16T21:00:00+08:00"
content="2016-10-16" >
10-16
</time>
</div>
</header>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h2 class="post-title">
<a class="post-title-link" href="/2016/10/16/技术/mybatis/2016-10-16-mybatis-MapperAnnotationBuilder/" itemprop="url">
<span itemprop="name">mybatis 中的 MapperAnnotationBuilder</span>
</a>
</h2>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2016-10-16T21:00:00+08:00"
content="2016-10-16" >
10-16
</time>
</div>
</header>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h2 class="post-title">
<a class="post-title-link" href="/2016/10/16/技术/mybatis/2016-10-16-mybatis-MapperMethod/" itemprop="url">
<span itemprop="name">mybatis 中的 MapperMethod</span>
</a>
</h2>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2016-10-16T21:00:00+08:00"
content="2016-10-16" >
10-16
</time>
</div>
</header>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h2 class="post-title">
<a class="post-title-link" href="/2016/09/20/技术/mybatis/2016-09-20-mybatis源码阅读/" itemprop="url">
<span itemprop="name">mybatis 源码阅读(一)</span>
</a>
</h2>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2016-09-20T21:00:00+08:00"
content="2016-09-20" >
09-20
</time>
</div>
</header>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h2 class="post-title">
<a class="post-title-link" href="/2016/09/13/技术/java/2016-09-13-CPU占用过高处理过程/" itemprop="url">
<span itemprop="name">线上应用故障排查</span>
</a>
</h2>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2016-09-13T21:00:00+08:00"
content="2016-09-13" >
09-13
</time>
</div>
</header>
</article>
</div>
</div>
<nav class="pagination">
<span class="page-number current">1</span><a class="page-number" href="/archives/2016/page/2/">2</a><a class="extend next" rel="next" href="/archives/2016/page/2/"><i class="fa fa-angle-right"></i></a>
</nav>
</div>
</div>
<div class="sidebar-toggle">
<div class="sidebar-toggle-line-wrap">
<span class="sidebar-toggle-line sidebar-toggle-line-first"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-middle"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-last"></span>
</div>
</div>
<aside id="sidebar" class="sidebar">
<div class="sidebar-inner">
<section class="site-overview-wrap sidebar-panel sidebar-panel-active">
<div class="site-overview">
<div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person">
<img class="site-author-image" itemprop="image"
src="/images/headPicture.png"
alt="Liam Chen" />
<p class="site-author-name" itemprop="name">Liam Chen</p>
<p class="site-description motion-element" itemprop="description">About technology and about life.</p>
</div>
<nav class="site-state motion-element">
<div class="site-state-item site-state-posts">
<a href="/archives/">
<span class="site-state-item-count">55</span>
<span class="site-state-item-name">日志</span>
</a>
</div>
<div class="site-state-item site-state-categories">
<a href="/categories/index.html">
<span class="site-state-item-count">21</span>
<span class="site-state-item-name">分类</span>
</a>
</div>
<div class="site-state-item site-state-tags">
<a href="/tags/index.html">
<span class="site-state-item-count">41</span>
<span class="site-state-item-name">标签</span>
</a>
</div>
</nav>
</div>
</section>
</div>
</aside>
</div>
</main>
<footer id="footer" class="footer">
<div class="footer-inner">
<div class="copyright">© <span itemprop="copyrightYear">2019</span>
<span class="with-love">
<i class="fa fa-user"></i>
</span>
<span class="author" itemprop="copyrightHolder">Liam Chen</span>
</div>
<div class="powered-by">由 <a class="theme-link" target="_blank" href="https://hexo.io">Hexo</a> 强力驱动</div>
<span class="post-meta-divider">|</span>
<div class="theme-info">主题 — <a class="theme-link" target="_blank" href="https://github.com/iissnan/hexo-theme-next">NexT.Mist</a> v5.1.4</div>
</div>
</footer>
<div class="back-to-top">
<i class="fa fa-arrow-up"></i>
</div>
</div>
<script type="text/javascript">
if (Object.prototype.toString.call(window.Promise) !== '[object Function]') {
window.Promise = null;
}
</script>
<script type="text/javascript" src="/lib/jquery/index.js?v=2.1.3"></script>
<script type="text/javascript" src="/lib/fastclick/lib/fastclick.min.js?v=1.0.6"></script>
<script type="text/javascript" src="/lib/jquery_lazyload/jquery.lazyload.js?v=1.9.7"></script>
<script type="text/javascript" src="/lib/velocity/velocity.min.js?v=1.2.1"></script>
<script type="text/javascript" src="/lib/velocity/velocity.ui.min.js?v=1.2.1"></script>
<script type="text/javascript" src="/lib/fancybox/source/jquery.fancybox.pack.js?v=2.1.5"></script>
<script type="text/javascript" src="/js/src/utils.js?v=5.1.4"></script>
<script type="text/javascript" src="/js/src/motion.js?v=5.1.4"></script>
<script type="text/javascript" src="/js/src/bootstrap.js?v=5.1.4"></script>
</body>
</html>
| SummerBuger/summerbuger.github.io | archives/2016/index.html | HTML | mit | 17,538 |
<!DOCTYPE HTML>
<html>
<head>
<title>Gamecraft CI</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" href="/webjars/bootstrap/3.3.7-1/css/bootstrap.min.css"/>
<link rel="stylesheet" href="/css/dashboard.css"/>
<script src="/webjars/jquery/1.11.1/jquery.min.js"></script>
<script src="/webjars/bootstrap/3.3.7-1/js/bootstrap.min.js"></script>
<script src="/js/account_operations.js"></script>
<script src="/js/ui_operations.js"></script>
<script src="/js/validator.min.js"></script>
<script src="/js/lang_operations.js"></script>
<script>
checkAuthState();
setDefaultLanguage();
loadNavbar();
</script>
</head>
<body>
<div class="navbar-frame"></div>
<div class="container">
<!-- Main component for a primary marketing message or call to action -->
<div class="jumbotron">
<h1>Welcome to Gamecraft!</h1>
<div class="alert alert-success" role="alert">You are logged in as user "<script> document.write(getUsername())</script>".</div>
<p>If you have any question on Gamecraft:</p>
<ul>
<li><a href="https://github.com/iMartinezMateu/gamecraft/issues?state=open" target="_blank" rel="noopener" >Gamecraft bug tracker</a></li>
<li><a href="https://github.com/iMartinezMateu/gamecraft/wiki" target="_blank" rel="noopener" >Gamecraft wiki</a></li>
</ul>
<p>
<span jhiTranslate="home.like">If you like Gamecraft, don't forget to give us a star on</span> <a href="https://github.com/iMartinezMateu/gamecraft" target="_blank" rel="noopener" >GitHub</a>!
</p>
<img src="/img/gamecraft.png" alt="Gamecraft" class="center-block" />
</div>
</div> <!-- /container -->
</body>
</html> | iMartinezMateu/gamecraft | gamecraft-ui/src/main/resources/templates/dashboard.html | HTML | mit | 1,885 |
<!DOCTYPE HTML>
<html>
<head>
<title>Arbiter - Decisions Simplified</title>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.3.10/angular.min.js"></script>
<script src="app.js"></script>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!--[if lte IE 8]><script src="assets/js/ie/html5shiv.js"></script><![endif]-->
<link rel="stylesheet" href="assets/css/main.css" />
<!--[if lte IE 9]><link rel="stylesheet" href="assets/css/ie9.css" /><![endif]-->
<!--[if lte IE 8]><link rel="stylesheet" href="assets/css/ie8.css" /><![endif]-->
</head>
<body ng-app="decisionPage" ng-controller="decisionController" class="single">
<!-- Wrapper -->
<div id="wrapper">
<!-- Header -->
<header id="header">
<h1><a href="#">Arbiter</a></h1>
<nav class="links">
<ul>
<li><a href="#">My Posts</a></li>
</ul>
</nav>
<nav class="main">
<ul>
<li class="search">
<a class="fa-search" href="#search">Search</a>
<form id="search" method="get" action="#">
<input type="text" name="query" placeholder="Search" />
</form>
</li>
<li class="menu">
<a class="fa-bars" href="#menu">Menu</a>
</li>
</ul>
</nav>
</header>
<!-- Menu -->
<section id="menu">
<!-- Search -->
<section>
<form class="search" method="get" action="#">
<input type="text" name="query" placeholder="Search" />
</form>
</section>
<!-- Actions -->
<section>
<ul class="actions vertical">
<li><a href="#" class="button big fit">Log In</a></li>
</ul>
</section>
</section>
<!-- Main -->
<div id="main">
<!-- Post -->
<article class="post">
<header>
<div class="title">
<h2>{{test}}</h2>
</div>
<div class="meta">
<time class="published" datetime="2015-11-01">November 1, 2015</time>
<a href="#" class="author"><span class="name">Jane Doe</span><img src="images/avatar.jpg" alt="" /></a>
</div>
</header>
<footer>
<ul class="actions">
<li><a href="#" class="button big">Apple</a></li>
<li><a href="#" class="button big">Orange</a></li>
</ul>
</footer>
</article>
</div>
<!-- Footer -->
<section id="footer">
<ul class="icons">
<li><a href="#" class="fa-twitter"><span class="label">Twitter</span></a></li>
<li><a href="#" class="fa-facebook"><span class="label">Facebook</span></a></li>
<li><a href="#" class="fa-instagram"><span class="label">Instagram</span></a></li>
<li><a href="#" class="fa-rss"><span class="label">RSS</span></a></li>
<li><a href="#" class="fa-envelope"><span class="label">Email</span></a></li>
</ul>
<p class="copyright">Made by love @ UCSD</p>
</section>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/util.js"></script>
<!--[if lte IE 8]><script src="assets/js/ie/respond.min.js"></script><![endif]-->
<script src="assets/js/main.js"></script>
</body>
</html>
| tejasbadadare/Arbiter | single.html | HTML | mit | 3,326 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>T837185195841212416</title>
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Source+Sans+Pro:300,300i,600">
<link rel="stylesheet" href="/style.css">
<link rel="stylesheet" href="/custom.css">
<link rel="alternate" type="application/rss+xml" title="Curt Clifton" href="http://curt.micro.blog/feed.xml" />
<link rel="alternate" type="application/json" title="Curt Clifton" href="http://curt.micro.blog/feed.json" />
<link rel="EditURI" type="application/rsd+xml" href="/rsd.xml" />
<link rel="me" href="https://micro.blog/curt" />
<link rel="me" href="https://twitter.com/curtclifton" />
<link rel="authorization_endpoint" href="https://indieauth.com/auth" />
<link rel="token_endpoint" href="https://tokens.indieauth.com/token" />
<link rel="micropub" href="https://micro.blog/micropub" />
<link rel="webmention" href="https://micro.blog/webmention" />
</head>
<body>
<div class="container">
<header class="masthead">
<h1 class="masthead-title--small">
<a href="/">Curt Clifton</a>
</h1>
</header>
<div class="content post h-entry">
<div class="post-date">
<time class="dt-published" datetime="2017-03-02 06:17:00 +0000">02 Mar 2017</time>
</div>
<div class="e-content">
<p>Whoever, owing allegiance to [U.S.],… adheres to their enemies… is guilty of treason and shall suffer death… #fb <a href="https://t.co/Uid0RAMMs1">https://t.co/Uid0RAMMs1</a></p>
</div>
</div>
</div>
</body>
</html>
| curtclifton/curtclifton.github.io | _site/2017/03/02/t837185195841212416.html | HTML | mit | 1,623 |
<!DOCTYPE html>
<html>
<head>
<meta charset='UTF-8'>
<script src='matrices.js'></script>
<style>
.indent {
padding-left: 2em;
}
</style>
</head>
<body>
<h3>Color space:</h3>
Spec: <select id='e_color_space'>
<option value='rec601' selected>Rec601</option>
<option value='rec709'>Rec709</option>
<option value='rec2020'>Rec2020/Rec2100</option>
</select>
<div class='indent'>
Kr: <input id='e_kr'>
<br>
Kg: <input id='e_kg'>
<br>
Kb: <input id='e_kb'>
</div>
<br>Array order:
<select id='e_array_major'>
<option value='row' selected>Row-major (common)</option>
<option value='column'>Column-major (for OpenGL)</option>
</select>
<br>Precision: <input id='e_precision' value='5'>
<pre id='e_color_space_output'>-</pre>
<hr>
<h3>Quantization</h3>
Bits: <input id='e_bits'>
<br>Range:
<select id='e_range_type'>
<option value='narrow' selected>Narrow</option>
<option value='full'>Full</option>
</select>
<div class='indent'>
Yquant: [ <input id='e_yq_min'> , <input id='e_yq_max'> ]
<br>
Cb, Cr: [ <input id='e_uvq_min'> , <input id='e_uvq_max'> ] (<span id='e_uvq_info'></span>)
</div>
<pre id='e_quant_output'>-</pre>
<hr>
<h3>Conversion:</h3>
<pre id='e_matrix_output'>-</pre>
YCbCr: <input id='e_y' value=100> <input id='e_cb' value=100> <input id='e_cr' value=100>
<br>
RGB: <input id='e_r'> <input id='e_g'> <input id='e_b'>
<script>
'use strict';
function round(x) {
const precision = parseInt(e_precision.value);
const pointsPow = Math.pow(10, precision);
return Math.round(x * pointsPow) / pointsPow;
}
function matToOutputVar(var_name, x) {
const precision = parseInt(e_precision.value);
if (e_array_major.value === 'column') {
x = matTrans(x);
}
return var_name + ' =\n' + matString(x, precision);
};
// -
function getRangeInfo() {
const bits = parseInt(e_bits.value);
const normalizer = (1 << bits) - 1;
const cbcr_neg_1 = parseFloat(e_uvq_min.value);
const cbcr_pos_1 = parseFloat(e_uvq_max.value);
const cbcr0 = (cbcr_neg_1 + cbcr_pos_1) / 2;
return {
y0: parseFloat(e_yq_min.value) / normalizer,
y1: parseFloat(e_yq_max.value) / normalizer,
cbcr0: cbcr0 / normalizer,
cbcr1: cbcr_pos_1 / normalizer,
};
}
// -
// Make these easy to use in console:
let yuvFromRgb, rgbFromYuv;
let ycbcrFromYuv;
let ycbcrFromRgb, rgbFromYcbcr;
function refreshQuant() {
const r = getRangeInfo();
ycbcrFromYuv = [ [r.y1-r.y0, 0, 0, r.y0],
[0, r.cbcr1-r.cbcr0, 0, r.cbcr0],
[0, 0, r.cbcr1-r.cbcr0, r.cbcr0] ];
const yuvFromRgb_4x4 = matResized(yuvFromRgb, 4, 4);
ycbcrFromRgb = matMul(ycbcrFromYuv, yuvFromRgb_4x4);
rgbFromYcbcr = matInv(ycbcrFromRgb);
//const back = matInv(rgbFromYcbcr);
//console.log('ycbcrFromRgb-1-1', fnMatToString(back));
const bits = parseInt(e_bits.value);
const normalizer = (1 << bits) - 1;
const cbcrDiff = r.cbcr1 - r.cbcr0;
function roundNorm(x) {
return round(x*normalizer);
}
e_quant_output.textContent = [
`Yq: [${roundNorm(r.y0)}, ${roundNorm(r.y1)}]`,
`Cb, Cr: ${roundNorm(r.cbcr0)} +/- ${roundNorm(cbcrDiff)}` +
` => [${roundNorm(r.cbcr0-cbcrDiff)}, ${roundNorm(r.cbcr0+cbcrDiff)}]`,
'',
`Y: [${round(r.y0)}, ${round(r.y1)}]`,
`U, V: ${round(r.cbcr0)} +/- ${round(cbcrDiff)}` +
` => [${round(r.cbcr0-cbcrDiff)}, ${round(r.cbcr0+cbcrDiff)}]`,
'',
matToOutputVar('ycbcrFromYuv', ycbcrFromYuv)
].join('\n');
e_matrix_output.textContent = [
matToOutputVar('ycbcrFromRgb', ycbcrFromRgb),
'',
matToOutputVar('rgbFromYcbcr', rgbFromYcbcr),
].join('\n');
lastConvertFunc();
}
[
e_yq_min, e_yq_max, e_uvq_min, e_uvq_max,
].forEach(e => {
e.addEventListener('change', refreshQuant);
});
// -
function refreshUvqInfo() {
const r = getRangeInfo();
const bits = parseInt(e_bits.value);
const normalizer = (1 << bits) - 1;
const cbcr0 = r.cbcr0 * normalizer;
const cbcrDiff = (r.cbcr1 - r.cbcr0) * normalizer;
e_uvq_info.textContent = `${round(cbcr0)} +/- ${round(cbcrDiff)}`;
}
e_uvq_min.addEventListener('change', refreshUvqInfo);
e_uvq_max.addEventListener('change', refreshUvqInfo);
// -
function refreshRangeInfo() {
const bits = parseInt(e_bits.value);
const normalizer = (1 << bits) - 1;
if (e_range_type.value == 'full') {
// rec2020 defines these:
// Y: D = Round((2^n-1) * E) | E = [0.0, 1.0]
// AKA Dy = 255*Ey + 0
// Cb,Cr: D = Round((2^n-1) * E + 2^(n-1)) | E = [-0.5, 0.5]
// AKA Dcb,Dcr = 255*Ey + 128, or 128 +/- 127.5. (512 +/- 511.5)
// Next, it then specifies peak/achrome/peak as 1/512/1023,
// but by its formulas, +0.5 => round(1023*0.5+512) = round(512+511.5)
// = round(1023.5) = *1024*. Uhh, oops!
// It seems to me what they wanted instead was 512 +/- 511, or:
// Cb,Cr: D = Round((2^n-2) * E + 2^(n-1))
e_yq_min.value = 0;
e_yq_max.value = normalizer;
e_uvq_min.value = 1;
e_uvq_max.value = normalizer;
} else {
let y0 = 16;
let y1 = 235; // 16+219
let cbcr0 = 128;
let cbcr1 = 240; // 128+224/2
// 10- and 12-bit narrow are just scaled 8-bit narrow.
y0 <<= bits - 8;
y1 <<= bits - 8;
cbcr0 <<= bits - 8;
cbcr1 <<= bits - 8;
e_yq_min.value = y0;
e_yq_max.value = y1;
e_uvq_min.value = cbcr0 - (cbcr1 - cbcr0);
e_uvq_max.value = cbcr1;
}
refreshUvqInfo();
refreshQuant();
}
e_bits.addEventListener('change', refreshRangeInfo);
e_range_type.addEventListener('change', refreshRangeInfo);
// -
function refreshColorSpace() {
const kr = parseFloat(e_kr.value);
const kg = parseFloat(e_kg.value);
const kb = parseFloat(e_kb.value);
const uRange = 1-kb;
const vRange = 1-kr;
yuvFromRgb = [ [kr, kg, kb],
[-kr/uRange, -kg/uRange, (1-kb)/uRange],
[(1-kr)/vRange, -kg/vRange, -kb/vRange] ];
rgbFromYuv = matInv(yuvFromRgb);
e_color_space_output.textContent = [
matToOutputVar('yuvFromRgb', yuvFromRgb),
'',
matToOutputVar('rgbFromYuv', rgbFromYuv),
].join('\n');
refreshRangeInfo();
}
e_kr.addEventListener('change', refreshColorSpace);
e_kg.addEventListener('change', refreshColorSpace);
e_kb.addEventListener('change', refreshColorSpace);
// -
function presetColorSpace() {
const colorSpace = e_color_space.value;
if (colorSpace === 'rec601') {
e_kr.value = 0.299;
e_kg.value = 0.587;
e_kb.value = 0.114;
e_bits.value = 8;
} else if (colorSpace === 'rec709') {
e_kr.value = 0.2126;
e_kg.value = 0.7152;
e_kb.value = 0.0722;
e_bits.value = 8;
} else if (colorSpace === 'rec2020') {
e_kr.value = 0.2627;
e_kg.value = '0.6780'; // String to preserve the trailing zero.
e_kb.value = 0.0593;
e_bits.value = 10;
}
refreshColorSpace();
}
e_color_space.addEventListener('change', presetColorSpace);
// -
[e_array_major, e_precision].forEach(e => {
e.addEventListener('change', () => {
refreshColorSpace();
refreshQuant();
});
});
// -
function convert(srcElems, destFromSrc, destElems) {
const bits = parseInt(e_bits.value);
const normalizer = (1 << bits) - 1;
const src = srcElems.map(e => parseFloat(e.value) / normalizer);
src.push(1);
const dest = matMulVec(destFromSrc, src);
for (let i = 0; i < 3; i++) {
let val = dest[i];
//val = Math.max(0, Math.min(val, 1)); // clamp to [0,1]
destElems[i].value = round(val*normalizer);
}
}
// -
const RGB_ELEMS = [e_r, e_g, e_b];
const YCBCR_ELEMS = [e_y, e_cb, e_cr];
function fromRgb() {
convert(RGB_ELEMS, ycbcrFromRgb, YCBCR_ELEMS);
lastConvertFunc = fromRgb;
}
function fromYcbcr() {
convert(YCBCR_ELEMS, rgbFromYcbcr, RGB_ELEMS);
lastConvertFunc = fromYcbcr;
}
let lastConvertFunc = fromYcbcr;
RGB_ELEMS.forEach(e => e.addEventListener('change', fromRgb));
YCBCR_ELEMS.forEach(e => e.addEventListener('change', fromYcbcr));
// -
presetColorSpace();
refreshQuant();
</script>
</body>
</html>
| jdashg/misc | colors/from-coeffs.html | HTML | mit | 8,409 |
<div class="demo-menu">
<div class="menu-section">
<p>You clicked on: {{ selected }}</p>
<md-toolbar>
<button md-icon-button [md-menu-trigger-for]="menu">
<md-icon>more_vert</md-icon>
</button>
</md-toolbar>
<md-menu #menu="mdMenu">
<button md-menu-item *ngFor="let item of items" (click)="select(item.text)" [disabled]="item.disabled">
{{ item.text }}
</button>
</md-menu>
</div>
<div class="menu-section">
<p> Clicking these will navigate:</p>
<md-toolbar>
<button md-icon-button [md-menu-trigger-for]="anchorMenu">
<md-icon>more_vert</md-icon>
</button>
</md-toolbar>
<md-menu #anchorMenu="mdMenu">
<a md-menu-item *ngFor="let item of items" href="http://www.google.com" [disabled]="item.disabled">
{{ item.text }}
</a>
</md-menu>
</div>
<div class="menu-section">
<p>
Position x: before
</p>
<md-toolbar class="end-icon">
<button md-icon-button [md-menu-trigger-for]="posXMenu">
<md-icon>more_vert</md-icon>
</button>
</md-toolbar>
<md-menu x-position="before" #posXMenu="mdMenu" class="before">
<button md-menu-item *ngFor="let item of items" [disabled]="item.disabled">
{{ item.text }}
</button>
</md-menu>
</div>
<div class="menu-section">
<p>
Position y: above
</p>
<md-toolbar>
<button md-icon-button [md-menu-trigger-for]="posYMenu">
<md-icon>more_vert</md-icon>
</button>
</md-toolbar>
<md-menu y-position="above" #posYMenu="mdMenu">
<button md-menu-item *ngFor="let item of items" [disabled]="item.disabled">
{{ item.text }}
</button>
</md-menu>
</div>
</div>
| alexeagle/material2 | src/demo-app/menu/menu-demo.html | HTML | mit | 1,753 |
{% extends "content_template.html" %}
{% from "components/page-header.html" import page_header %}
{% from "components/copy-to-clipboard.html" import copy_to_clipboard %}
{% block per_page_title %}
Billing details
{% endblock %}
{% block content_column_content %}
{{ page_header('Billing details') }}
<p class="govuk-body">
You can use the information on this page to add the Cabinet Office as a supplier. Your organisation may need to do this before you can raise a purchase order (PO).
</p>
<p class="govuk-body">
<a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('main.support') }}">Contact us</a> if you need any other details.
</p>
<h2 class="heading-medium govuk-!-margin-top-7" id="supplier-details">
Supplier details
</h2>
<p class="govuk-body">
Cabinet Office
</p>
<p class="govuk-body">
The White Chapel Building <br>
10 Whitechapel High Street <br>
London <br>
E1 8QS
</p>
<h3 class="heading-small" id="email-addresses">
Email addresses
</h3>
<ul class="govuk-list govuk-list--bullet">
{% for email in billing_details['notify_billing_email_addresses'] %}
<li>
{{ email }}
</li>
{% endfor %}
</ul>
<h3 class="heading-small" id="vat-number">
<abbr title="Value Added Tax">VAT</abbr> number
</h3>
<div class="govuk-!-margin-bottom-4">
{{ copy_to_clipboard(
'GB 88 88 010 80',
thing='<abbr title="Value Added Tax">VAT</abbr> number',
) }}
</div>
<h2 class="heading-medium govuk-!-margin-top-7" id="bank-details">
Bank details
</h2>
<p class="govuk-body">
National Westminster Bank PLC (part of RBS group) <br>
Government Banking Services Branch <br>
2nd Floor <br>
280 Bishopsgate <br>
London <br>
EC2M 4RB
</p>
<h3 class="heading-small" id="account-name">
Account name
</h3>
<p class="govuk-body">
Cabinet Office
</p>
<h3 class="heading-small" id="account-number">
Account number
</h3>
<div class="govuk-!-margin-bottom-4">
{{ copy_to_clipboard(
billing_details['account_number'],
thing='account number',
) }}
</div>
<h3 class="heading-small" id="sort-code">
Sort code
</h3>
<div class="govuk-!-margin-bottom-4">
{{ copy_to_clipboard(
billing_details['sort_code'],
thing='sort code',
) }}
</div>
<h3 class="heading-small" id="iban">
<abbr title="International Bank Account Number">IBAN</abbr>
</h3>
<div class="govuk-!-margin-bottom-4">
{{ copy_to_clipboard(
billing_details['IBAN'],
thing='IBAN',
) }}
</div>
<h3 class="heading-small" id="swift-code">
Swift code
</h3>
<div class="govuk-!-margin-bottom-4">
{{ copy_to_clipboard(
billing_details['swift'],
thing='Swift code',
) }}
</div>
<h2 class="heading-medium govuk-!-margin-top-7" id="invoice-address">
Invoice address
</h2>
<p class="govuk-body">
SSCL – Accounts Receivable <br>
PO Box 221 <br>
Thornton-Cleveleys <br>
Blackpool <br>
Lancashire <br>
FY1 9JN
</p>
{% endblock %}
| alphagov/notifications-admin | app/templates/views/pricing/billing-details.html | HTML | mit | 3,319 |
<!DOCTYPE html>
<html lang="en"><head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="https://newsblur.com/media/img/favicon.ico" type="image/png" />
<link rel="icon" href="https://newsblur.com/media/img/favicon_32.png" sizes="32x32"/>
<link rel="icon" href="https://newsblur.com/media/img/favicon_64.png" sizes="64x64"/>
<link rel="alternate" type="application/rss+xml"
title="The NewsBlur Blog RSS feed"
href="/feed.xml" /><!-- Begin Jekyll SEO tag v2.7.1 -->
<title>Even the folders have RSS feeds | The NewsBlur Blog</title>
<meta name="generator" content="Jekyll v4.2.0" />
<meta property="og:title" content="Even the folders have RSS feeds" />
<meta property="og:locale" content="en_US" />
<meta name="description" content="What would an RSS news reader be without its own RSS feeds? It’s be a pretty lonely reader is what." />
<meta property="og:description" content="What would an RSS news reader be without its own RSS feeds? It’s be a pretty lonely reader is what." />
<link rel="canonical" href="https://blog.newsblur.com/2015/08/25/even-the-folders-have-rss-feeds/" />
<meta property="og:url" content="https://blog.newsblur.com/2015/08/25/even-the-folders-have-rss-feeds/" />
<meta property="og:site_name" content="The NewsBlur Blog" />
<meta property="og:type" content="article" />
<meta property="article:published_time" content="2015-08-25T07:00:14-04:00" />
<meta name="twitter:card" content="summary" />
<meta property="twitter:title" content="Even the folders have RSS feeds" />
<script type="application/ld+json">
{"publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://blog.newsblur.com/assets/newsblur_logo_512.png"}},"url":"https://blog.newsblur.com/2015/08/25/even-the-folders-have-rss-feeds/","@type":"BlogPosting","headline":"Even the folders have RSS feeds","dateModified":"2015-08-25T07:00:14-04:00","datePublished":"2015-08-25T07:00:14-04:00","description":"What would an RSS news reader be without its own RSS feeds? It’s be a pretty lonely reader is what.","mainEntityOfPage":{"@type":"WebPage","@id":"https://blog.newsblur.com/2015/08/25/even-the-folders-have-rss-feeds/"},"@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
<link rel="stylesheet" href="/assets/main.css">
<link rel="stylesheet" type="text/css" href="https://cloud.typography.com/6565292/711824/css/fonts.css" />
<link rel="stylesheet" type="text/css" href="https://cloud.typography.com/6565292/731824/css/fonts.css" /><link type="application/atom+xml" rel="alternate" href="https://blog.newsblur.com/feed.xml" title="The NewsBlur Blog" /></head>
<body><header class="site-header" role="banner">
<div class="wrapper"><a class="site-title" rel="author" href="/">
<div class="site-title-image">
<img src="/assets/newsblur_logo_512.png">
</div>
<div class="site-title-text">The NewsBlur Blog</div>
</a><nav class="site-nav">
<input type="checkbox" id="nav-trigger" class="nav-trigger" />
<label for="nav-trigger">
<span class="menu-icon">
<svg viewBox="0 0 18 15" width="18px" height="15px">
<path d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0 h15.032C17.335,0,18,0.665,18,1.484L18,1.484z M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0 c0-0.82,0.665-1.484,1.484-1.484h15.032C17.335,6.031,18,6.696,18,7.516L18,7.516z M18,13.516C18,14.335,17.335,15,16.516,15H1.484 C0.665,15,0,14.335,0,13.516l0,0c0-0.82,0.665-1.483,1.484-1.483h15.032C17.335,12.031,18,12.695,18,13.516L18,13.516z"/>
</svg>
</span>
</label>
<div class="trigger"><a class="page-link" href="https://www.newsblur.com">Visit NewsBlur ➤</a></div>
</nav></div>
</header>
<header class="site-subheader" role="banner">
<div class="wrapper">
<div class="top">
NewsBlur is a personal news reader that brings people together to talk about the world.
</div>
<div class="bottom">
A new sound of an old instrument.
</div>
</div>
</header>
<main class="page-content" aria-label="Content">
<div class="wrapper">
<article class="post h-entry" itemscope itemtype="http://schema.org/BlogPosting">
<header class="post-header">
<h1 class="post-title p-name" itemprop="name headline">Even the folders have RSS feeds</h1>
<p class="post-meta">
<time class="dt-published" datetime="2015-08-25T07:00:14-04:00" itemprop="datePublished">Aug 25, 2015
</time></p>
</header>
<div class="post-content e-content" itemprop="articleBody">
<p>What would an RSS news reader be without its own RSS feeds? It’s be a pretty lonely reader is what.</p>
<p>NewsBlur now supports RSS feeds for each of your folders. Just right-click on the folder, go to Folder Settings, and behold:</p>
<p><img src="https://s3.amazonaws.com/static.newsblur.com/blog/folder_rss.png" alt="" /></p>
<p>These folders keep track of sites you add and remove from them. They also allow you to filter out stories you don’t want to read or even choose to only show the stories you have in focus.</p>
<p>All of your feed subscriptions in the folder, including subfolders, are merged into a single river of news in RSS format. Technically we use Atom 1.0 format for NewsBlur’s many RSS feeds, but I’m not choosing a side here.</p>
<p>The Folder RSS feeds join the Shared Stories RSS feeds and the Saved Story Tag RSS feeds that you can already use if you are a premium subscriber.</p>
</div><a class="u-url" href="/2015/08/25/even-the-folders-have-rss-feeds/" hidden></a>
</article>
</div>
</main><footer class="site-footer h-card">
<data class="u-url" href="/"></data>
<div class="wrapper">
<h2 class="footer-heading">The NewsBlur Blog</h2>
<div class="footer-col-wrapper">
<div class="footer-col footer-col-1"><ul class="social-media-list"><li><a href="https://github.com/samuelclay"><svg class="svg-icon"><use xlink:href="/assets/minima-social-icons.svg#github"></use></svg> <span class="username">samuelclay</span></a></li><li><a href="https://www.twitter.com/newsblur"><svg class="svg-icon"><use xlink:href="/assets/minima-social-icons.svg#twitter"></use></svg> <span class="username">newsblur</span></a></li><li><a href="mailto:blog@newsblur.com?subject=Hello from the NewsBlur blog"><svg class="svg-icon"><use xlink:href="/assets/minima-social-icons.svg#email"></use></svg> <span class="username">blog@newsblur.com</span></a></li></ul>
</div>
<div class="footer-col footer-col-3">
<p>NewsBlur is a personal news reader that brings people together to talk about the world.<br />
A new sound of an old instrument.<br />
</p>
</div>
</div>
</div>
</footer>
</body>
</html>
| samuelclay/NewsBlur | blog/_site/2015/08/25/even-the-folders-have-rss-feeds/index.html | HTML | mit | 6,956 |
<ion-view view-title="Coffee Shop">
<ion-content>
<div class="card">
<div class="item item-divider text-center">
<h2>{{biz.businessName}}</h2>
</div>
<div class="item text-center">
<div><strong>{{biz.street}}</strong></div>
<div><strong>{{biz.city}}, {{biz.state}} {{biz.zip}}</strong></div>
</div>
<div class="item text-center">
<a class="item" href="tel:{{biz.phone}}" style="font-size: 150%;">
<i class="icon ion-ios7-telephone" style="font-size: 150%;"></i>
Call {{biz.phone}}
</a>
</div>
</div>
<div class="card" map zoom="18" ng-init="initMap()"
disable-default-u-i="false"
disable-double-click-zoom="false"
draggable="true"
draggable-cursor="help"
dragging-cursor="move"
keyboard-shortcuts="false"
max-zoom="20"
min-zoom="8"
tilt="0"
map-type-id="ROADMAP" style=" height: 300px;">
</div>
</ion-content>
</ion-view>
| wyrover/ionic-components | ionic-coffee/details/details.html | HTML | mit | 1,187 |
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<!-- /fasttmp/mkdist-qt-4.3.5-1211793125/qtopia-core-opensource-src-4.3.5/tools/qdbus/src/qdbusabstractadaptor.cpp -->
<head>
<title>Qt 4.3: List of All Members for QDBusAbstractAdaptor</title>
<link href="classic.css" rel="stylesheet" type="text/css" />
</head>
<body>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td align="left" valign="top" width="32"><a href="http://www.trolltech.com/products/qt"><img src="images/qt-logo.png" align="left" width="32" height="32" border="0" /></a></td>
<td width="1"> </td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a> · <a href="classes.html"><font color="#004faf">All Classes</font></a> · <a href="mainclasses.html"><font color="#004faf">Main Classes</font></a> · <a href="groups.html"><font color="#004faf">Grouped Classes</font></a> · <a href="modules.html"><font color="#004faf">Modules</font></a> · <a href="functions.html"><font color="#004faf">Functions</font></a></td>
<td align="right" valign="top" width="230"><a href="http://www.trolltech.com"><img src="images/trolltech-logo.png" align="right" width="203" height="32" border="0" /></a></td></tr></table><h1 align="center">List of All Members for QDBusAbstractAdaptor</h1>
<p>This is the complete list of members for <a href="qdbusabstractadaptor.html">QDBusAbstractAdaptor</a>, including inherited members.</p>
<p><table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr><td width="45%" valign="top"><ul>
<li><div class="fn"/><a href="qdbusabstractadaptor.html#QDBusAbstractAdaptor">QDBusAbstractAdaptor</a> ( QObject * )</li>
<li><div class="fn"/><a href="qdbusabstractadaptor.html#dtor.QDBusAbstractAdaptor">~QDBusAbstractAdaptor</a> ()</li>
<li><div class="fn"/><a href="qdbusabstractadaptor.html#autoRelaySignals">autoRelaySignals</a> () const : bool</li>
<li><div class="fn"/><a href="qobject.html#blockSignals">blockSignals</a> ( bool ) : bool</li>
<li><div class="fn"/><a href="qobject.html#childEvent">childEvent</a> ( QChildEvent * )</li>
<li><div class="fn"/><a href="qobject.html#children">children</a> () const : const QObjectList &</li>
<li><div class="fn"/><a href="qobject.html#connect">connect</a> ( const QObject *, const char *, const QObject *, const char *, Qt::ConnectionType ) : bool</li>
<li><div class="fn"/><a href="qobject.html#connect-2">connect</a> ( const QObject *, const char *, const char *, Qt::ConnectionType ) const : bool</li>
<li><div class="fn"/><a href="qobject.html#connectNotify">connectNotify</a> ( const char * )</li>
<li><div class="fn"/><a href="qobject.html#customEvent">customEvent</a> ( QEvent * )</li>
<li><div class="fn"/><a href="qobject.html#deleteLater">deleteLater</a> ()</li>
<li><div class="fn"/><a href="qobject.html#destroyed">destroyed</a> ( QObject * )</li>
<li><div class="fn"/><a href="qobject.html#disconnect">disconnect</a> ( const QObject *, const char *, const QObject *, const char * ) : bool</li>
<li><div class="fn"/><a href="qobject.html#disconnect-2">disconnect</a> ( const char *, const QObject *, const char * ) : bool</li>
<li><div class="fn"/><a href="qobject.html#disconnect-3">disconnect</a> ( const QObject *, const char * ) : bool</li>
<li><div class="fn"/><a href="qobject.html#disconnectNotify">disconnectNotify</a> ( const char * )</li>
<li><div class="fn"/><a href="qobject.html#dumpObjectInfo">dumpObjectInfo</a> ()</li>
<li><div class="fn"/><a href="qobject.html#dumpObjectTree">dumpObjectTree</a> ()</li>
<li><div class="fn"/><a href="qobject.html#dynamicPropertyNames">dynamicPropertyNames</a> () const : QList<QByteArray></li>
<li><div class="fn"/><a href="qobject.html#event">event</a> ( QEvent * ) : bool</li>
<li><div class="fn"/><a href="qobject.html#eventFilter">eventFilter</a> ( QObject *, QEvent * ) : bool</li>
<li><div class="fn"/><a href="qobject.html#findChild">findChild</a> ( const QString & ) const : T</li>
<li><div class="fn"/><a href="qobject.html#findChildren">findChildren</a> ( const QString & ) const : QList<T></li>
<li><div class="fn"/><a href="qobject.html#findChildren-2">findChildren</a> ( const QRegExp & ) const : QList<T></li>
<li><div class="fn"/><a href="qobject.html#inherits">inherits</a> ( const char * ) const : bool</li>
</ul></td><td valign="top"><ul>
<li><div class="fn"/><a href="qobject.html#installEventFilter">installEventFilter</a> ( QObject * )</li>
<li><div class="fn"/><a href="qobject.html#isWidgetType">isWidgetType</a> () const : bool</li>
<li><div class="fn"/><a href="qobject.html#killTimer">killTimer</a> ( int )</li>
<li><div class="fn"/><a href="qobject.html#metaObject">metaObject</a> () const : const QMetaObject *</li>
<li><div class="fn"/><a href="qobject.html#moveToThread">moveToThread</a> ( QThread * )</li>
<li><div class="fn"/><a href="qobject.html#objectName-prop">objectName</a> () const : QString</li>
<li><div class="fn"/><a href="qobject.html#parent">parent</a> () const : QObject *</li>
<li><div class="fn"/><a href="qobject.html#property">property</a> ( const char * ) const : QVariant</li>
<li><div class="fn"/><a href="qobject.html#receivers">receivers</a> ( const char * ) const : int</li>
<li><div class="fn"/><a href="qobject.html#removeEventFilter">removeEventFilter</a> ( QObject * )</li>
<li><div class="fn"/><a href="qobject.html#sender">sender</a> () const : QObject *</li>
<li><div class="fn"/><a href="qdbusabstractadaptor.html#setAutoRelaySignals">setAutoRelaySignals</a> ( bool )</li>
<li><div class="fn"/><a href="qobject.html#objectName-prop">setObjectName</a> ( const QString & )</li>
<li><div class="fn"/><a href="qobject.html#setParent">setParent</a> ( QObject * )</li>
<li><div class="fn"/><a href="qobject.html#setProperty">setProperty</a> ( const char *, const QVariant & ) : bool</li>
<li><div class="fn"/><a href="qobject.html#signalsBlocked">signalsBlocked</a> () const : bool</li>
<li><div class="fn"/><a href="qobject.html#startTimer">startTimer</a> ( int ) : int</li>
<li><div class="fn"/><a href="qobject.html#staticMetaObject-var">staticMetaObject</a> : const QMetaObject</li>
<li><div class="fn"/><a href="qobject.html#thread">thread</a> () const : QThread *</li>
<li><div class="fn"/><a href="qobject.html#timerEvent">timerEvent</a> ( QTimerEvent * )</li>
<li><div class="fn"/><a href="qobject.html#tr">tr</a> ( const char *, const char *, int ) : QString</li>
<li><div class="fn"/><a href="qobject.html#trUtf8">trUtf8</a> ( const char *, const char *, int ) : QString</li>
</ul>
</td></tr>
</table></p>
<p /><address><hr /><div align="center">
<table width="100%" cellspacing="0" border="0"><tr class="address">
<td width="30%">Copyright © 2008 <a href="trolltech.html">Trolltech</a></td>
<td width="40%" align="center"><a href="trademarks.html">Trademarks</a></td>
<td width="30%" align="right"><div align="right">Qt 4.3.5</div></td>
</tr></table></div></address></body>
</html>
| misizeji/StudyNote_201308 | webserver/html/qdbusabstractadaptor-members.html | HTML | mit | 7,196 |
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Experiments - Weking</title>
<link rel="stylesheet" href="dist/css/weking.css">
<link rel="stylesheet" href="dist/css/weking-theme.css">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<script src="http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script>
<![endif]-->
</head>
<body>
<!-- HEADER NAVBAR -->
<nav class="navbar menu menu-primary-topState">
<div class="menu_header">
<label class="menu_a menu_brand" for="navbarTrigger">
<i class="icon icon_menu"></i>
</label>
<a class="menu_a menu_brand" href="index.html">Weking > Experiments</a>
<div class="navbar_actionBtns">
<a class="btn btn-secondary-sm" href="https://github.com/weking/weking-frontend/archive/master.zip">Download</a>
<a class="btn btn-default-ghost-sm" href="https://github.com/weking">Github</a>
</div>
</div>
</nav>
<input type="checkbox" id="navbarTrigger" class="navDrawer_trigger">
<section class="navDrawer">
<label for="navbarTrigger" class="navDrawer_overlay"></label>
<section class="navDrawer_content menu col col-xs8-sm6-md4-lg2-vert">
<input checked class="menu_trigger" type="checkbox">
<ul class="menu_ul">
<li class="menu_li"><a class="menu_a" href="index.html">Home</a></li>
<li class="menu_li"><a class="menu_a" href="get-started.html">Get Started</a></li>
<li class="menu_li"><a class="menu_a" href="core.html">Core</a></li>
<li class="menu_li"><a class="menu_a" href="addons.html">Addons</a></li>
<li class="menu_li"><a class="menu_a" href="layout.html">Layout</a></li>
<li class="menu_li">
<a class="menu_a" href="templates.html">
Templates
<span class="label label-red">IN DEV</span>
</a>
</li>
<li class="menu_li">
<a class="menu_a" href="experiments.html">
Experiments
<span class="label label-red">IN DEV</span>
</a>
</li>
</ul>
</section>
</section>
<!-- HERO HEADING -->
<header class="header header-primary-small">
<div class="header_wrap">
<div class="container">
<h1 class="typo_h1">Experiments</h1>
</div>
</div>
</header>
<!-- MAIN -->
<main class="main">
<div class="container">
<section class="content card">
<div class="card_content">
<h2 class="typo_h2">Page in development</h2>
</div>
</section>
</div>
</main>
<!-- SHARE FAB -->
<div class="fab">
<span class="tooltip tooltip-left" data-tooltip="Share This Page">
<a class="fab_btn addthis_button_expanded btn btn-secondary-radius">
<i class="icon icon_share"></i>
</a>
</span>
</div>
<!-- PAGINATION -->
<footer class="pagination row">
<a href="templates.html" class="pagination_item col col_xs9_sm6-orange typo_h3">
<i class="icon icon_arrow-back"></i> Templates
</a>
<span class="pagination_item col col_xs3_sm6-black typo_h3"></span>
</footer>
<!-- JScripts -->
<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pubid=ra-54ce258b7e3ce750" async="async"></script>
<script async src="//assets.codepen.io/assets/embed/ei.js"></script>
<script src="dist/js/script.js"></script>
</body>
</html>
| weking/weking.github.io | experiments.html | HTML | mit | 3,699 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Robber frog factsheet on ARKive - Eleutherodactylus simulans</title>
<link rel="canonical" href="http://www.arkive.org/robber-frog/eleutherodactylus-simulans/" />
<link rel="stylesheet" type="text/css" media="screen,print" href="/rcss/factsheet.css" />
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
</head>
<body> <!-- onload="window.print()">-->
<div id="container">
<div id="header"><a href="/"><img src="/rimg/factsheet/header_left.png" alt="" border="0" /><img src="/rimg/factsheet/header_logo.png" alt="" border="0" /><img src="/rimg/factsheet/header_right.png" alt="" border="0" /></a></div>
<div id="content">
<h1>Robber frog (<i>Eleutherodactylus simulans</i>)</h1>
<img alt="" src="/media/17/17E2922C-0DA3-4615-B79D-A1E11785D359/Presentation.Large/Eleutherodactylus-simulans.jpg"/>
<table cellspacing="0" cellpadding="0" id="factList">
<tbody>
<tr class="kingdom"><th align="left">Kingdom</th><td align="left">Animalia</td></tr>
<tr class="phylum"><th align="left">Phylum</th><td align="left">Chordata</td></tr>
<tr class="class"><th align="left">Class</th><td align="left">Amphibia</td></tr>
<tr class="order"><th align="left">Order</th><td align="left">Anura</td></tr>
<tr class="family"><th align="left">Family</th><td align="left">Eleutherodactylidae</td></tr>
<tr class="genus"><th align="left">Genus</th><td align="left"><em>Eleutherodactylus (1)</em></td></tr>
</tbody>
</table>
<h2><img src="/rimg/factsheet/Status.png" class="heading" /></h2><p class="Status"><p>Classified as Endangered (EN) on the IUCN Red List (1).</p></p><h2><img src="/rimg/factsheet/Description.png" class="heading" /></h2><p class="Description"><p>Information on <em>Eleutherodactylus simulans </em>is currently being researched and written and will appear here shortly.</p></p><h2><img src="/rimg/factsheet/Authentication.png" class="heading" /></h2><p class="AuthenticatioModel"><p>This information is awaiting authentication by a species expert, and will be updated as soon as possible. If you are able to help please contact: <br/><a href="mailto:arkive@wildscreen.org.uk">arkive@wildscreen.org.uk</a></p></p><h2><img src="/rimg/factsheet/References.png" class="heading" /></h2>
<ol id="references">
<li id="ref1">
<a id="reference_1" name="reference_1"></a>
IUCN Red List (July, 2010) <br/><a href="http://www.iucnredlist.org" target="_blank">http://www.iucnredlist.org</a></li>
</ol>
</div>
</div>
</body>
</html>
| andrewedstrom/cs638project | raw_data/arkive-endangered-html/eleutherodactylus-simulans.html | HTML | mit | 2,866 |
<!DOCTYPE html>
<?xml version="1.0" encoding="UTF-8"?>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Earth Negotiations Bulletin: COP17</title>
<link href="../assets/style/bulletin.css" rel="stylesheet" />
</head>
<body>
<h1>Earth Negotiations Bulletin: COP17</h1>
<p><b>Durban Climate Change Conference - COP17/CMP7</b></p>
<p>28-Nov-11 — <a href="http://www.iisd.ca/vol12/enb12523e.html">original report</a></p>
<div id="section_enb12523e_1">
<h2>A BRIEF HISTORY OF THE UNFCCC AND KYOTO PROTOCOL</h2>
<small>history</small>
<p>The international political response to climate change began with the adoption of the United Nations Framework Convention on Climate Change (UNFCCC) in 1992.</p>
<p>The UNFCCC sets out a framework for action aimed at stabilizing atmospheric concentrations of greenhouse gases to avoid dangerous anthropogenic interference with the climate system.</p>
<p>The Convention, which entered into force on 21 March 1994, now has 195 parties.</p>
<p>In December 1997, delegates to the third session of the Conference of the Parties (COP) in Kyoto, Japan, agreed to a Protocol to the UNFCCC that commits industrialized countries and countries in transition to a market economy to achieve emission reduction targets.</p>
<p>These countries, known as Annex I parties under the UNFCCC, agreed to reduce their overall emissions of six greenhouse gases by an average of 5.2% below 1990 levels between 2008-2012 (the first commitment period), with specific targets varying from country to country.</p>
<p>The Kyoto Protocol entered into force on 16 February 2005 and now has 193 parties.</p>
<p>At the end of 2005, the first steps were taken to consider long-term issues.</p>
<p>Convening in Montreal, Canada, the first session of the COP/MOP 1 decided to establish the AWG-KP on the basis of Protocol Article 3.9, which mandates consideration of Annex I parties further commitments at least seven years before the end of the first commitment period.</p>
<p>COP 11 agreed to consider long-term cooperation under the Convention through a series of four workshops known as the Convention Dialogue, which continued until COP 13.</p>
</div>
<div id="section_enb12523e_2">
<h2>BALI ROADMAP:</h2>
<p>COP 13 and COP/MOP 3 took place in December 2007 in Bali, Indonesia.</p>
<p>Negotiations resulted in the adoption of the Bali Action Plan.</p>
<p>Parties established the AWG-LCA with a mandate to focus on key elements of long-term cooperation identified during the Convention Dialogue: mitigation, adaptation, finance, technology and a shared vision for long-term cooperative action.</p>
<p>The Bali conference also resulted in agreement on the Bali Roadmap.</p>
<p>Based on two negotiating tracks under the Convention and the Protocol, the Roadmap set a deadline for concluding the negotiations in Copenhagen in December 2009.</p>
</div>
<div id="section_enb12523e_3">
<h2>COPENHAGEN CLIMATE CHANGE CONFERENCE:</h2>
<p>The UN Climate Change Conference in Copenhagen, Denmark, took place in December 2009.</p>
<p>The event was marked by disputes over transparency and process.</p>
<p>During the high-level segment, informal negotiations took place in a group consisting of major economies and representatives of regional and other negotiating groups.</p>
<p>Late in the evening of 18 December, these talks resulted in a political agreement: the Copenhagen Accord, which was then presented to the COP plenary for adoption.</p>
<p>Over the next 13 hours, delegates debated the Accord.</p>
<p>Many supported adopting it as a step towards securing a better future agreement.</p>
<p>However, some developing countries opposed the Accord, which they felt had been reached through an untransparent and undemocratic negotiating process.</p>
<p>Ultimately, the COP agreed to take note of the Copenhagen Accord.</p>
<p>It established a process for parties to indicate their support for the Accord and, during 2010, over 140 countries did so.</p>
<p>More than 80 countries also provided information on their national emission reduction targets and other mitigation actions.</p>
<p>On the last day of the Copenhagen Climate Change Conference, parties also agreed to extend the mandates of the AWG-LCA and AWG-KP, requesting them to present their respective outcomes to COP 16 and COP/MOP 6.</p>
</div>
<div id="section_enb12523e_4">
<h2>CANCUN CLIMATE CHANGE CONFERENCE:</h2>
<p>Following four preparatory meetings in 2010, the UN Climate Change Conference in Cancun, Mexico, took place from 29 November to 11 December 2010.</p>
<p>By the end of the conference, parties had finalized the Cancun Agreements, which include decisions under both negotiating tracks.</p>
<p>Under the Convention track, Decision 1/CP.16 recognized the need for deep cuts in global emissions in order to limit global average temperature rise to 2°C.</p>
<p>Parties also agreed to consider strengthening the global long-term goal during a review by 2015, including in relation to a proposed 1.5°C target.</p>
<p>They took note of emission reduction targets and nationally appropriate mitigation actions (NAMAs) communicated by developed and developing countries respectively (FCCC/SB/2011/INF.1/Rev.1 and FCCC/AWGLCA/2011/INF.1, both issued after Cancun).</p>
<p>Decision 1/CP.16 also addressed other aspects of mitigation, such as measuring, reporting and verification (MRV); reducing emissions from deforestation and forest degradation in developing countries; and the role of conservation, sustainable management of forests and enhancement of forest carbon stocks in developing countries (REDD+).</p>
<p>Parties also agreed to establish several new institutions and processes, such as the Cancun Adaptation Framework and the Adaptation Committee, as well as the Technology Mechanism, which includes the Technology Executive Committee (TEC) and the Climate Technology Centre and Network (CTCN).</p>
<p>On finance, Decision 1/CP.16 created the Green Climate Fund (GCF), which was designated to be the new operating entity of the Convention s financial mechanism and is to be governed by a board of 24 members.</p>
<p>Parties agreed to set up a Transitional Committee tasked with the Fund s detailed design, and established a Standing Committee to assist the COP with respect to the financial mechanism.</p>
<p>They also recognized the commitment by developed countries to provide US$30 billion of fast-start finance in 2010-2012, and to jointly mobilize US$100 billion per year by 2020.</p>
<p>Under the Protocol track, Decision 1/CMP.6 included agreement to complete the work of the AWG-KP and have the results adopted by the COP/MOP as soon as possible and in time to ensure there will be no gap between the first and second commitment periods.</p>
<p>The COP/MOP urged Annex I parties to raise the level of ambition of their emission reduction targets with a view to achieving aggregate emission reductions consistent with the range identified in the Fourth Assessment Report of the Intergovernmental Panel on Climate Change (IPCC).</p>
<p>Parties also adopted Decision 2/CMP.6 on land use, land-use change and forestry (LULUCF).</p>
<p>The mandates of the two AWGs were extended to the UN Climate Change Conference in Durban.</p>
</div>
<div id="section_enb12523e_5">
<h2>UN CLIMATE CHANGE TALKS IN 2011:</h2>
<p>In 2011, three official UNFCCC negotiating sessions were held in the lead-up to Durban.</p>
<p>In April, the two AWGs convened in Bangkok, Thailand.</p>
<p>The AWG-LCA engaged in procedural discussions on its agenda, finally agreeing on an agenda for its subsequent work.</p>
<p>Under the AWG-KP, parties focused on key policy issues hindering progress.</p>
<p>Two months later, negotiators gathered in Bonn, Germany, for sessions of the SBI, SBSTA, AWG-LCA and AWG-KP.</p>
<p>SBSTA agreed to a new agenda item on impacts of climate change on water and integrated water resources management under the Nairobi Work Programme.</p>
<p>This item will be taken up in Durban.</p>
<p>No agreement was reached on other proposed new items, such as blue carbon and rights of nature and the integrity of ecosystems, and a work programme on agriculture.</p>
<p>Under the SBI, work was launched on national adaptation plans, and loss and damage, as mandated by the Cancun Agreements.</p>
<p>The agenda item relating to MRV remained in abeyance.</p>
<p>Proposed new items related to the impacts of the implementation of response measures also featured prominently.</p>
<p>The focus of the AWG-KP in Bonn was on outstanding political issues and conditionalities set by various Annex I countries for taking on new commitments during a second commitment period.</p>
<p>Despite initial opposition from developing countries, parties also undertook technical work, including on LULUCF, the flexibility mechanisms and methodological issues.</p>
<p>Under the AWG-LCA, substantive work began based on Decision 1/CP.16.</p>
<p>Parties worked on adaptation, finance, technology, capacity building, shared vision, review of the global long-term goal, legal options, and diverse issues related to mitigation.</p>
<p>Parties agreed that notes prepared by the facilitators of the AWG-LCA informal groups be carried forward to the third part of AWG-LCA 14 in Panama.</p>
<p>While progress was reported on some issues, many felt that the outcomes were relatively modest.</p>
<p>The AWG-LCA and AWG-KP reconvened from 1-7 October 2011 in Panama City, Panama.</p>
<p>The AWG-KP concentrated on outstanding issues and further clarifying options concerning mitigation targets, the possible nature and content of rules for a second commitment period, and the role of a possible second commitment period within a balanced outcome in Durban.</p>
<p>Under the AWG-LCA, negotiators engaged in extended procedural discussions based on Decision 1/CP.16 and the Bali Action Plan.</p>
<p>Parties worked on adaptation, finance, technology, capacity building, shared vision, review of the global long-term goal, legal options, and diverse issues related to mitigation.</p>
<p>The outcome for most of the informal group discussions was some form of text forwarded to Durban as a basis for further discussions.</p>
</div>
<div id="section_enb12523e_6">
<h2>INTERSESSIONAL HIGHLIGHTS</h2>
<small>agenda</small>
<p>Since the negotiations in Panama, a number of meetings have been held that are relevant to Durban.</p>
<p>The 4th meeting of the Transitional Committee for the design of the GCF was held from 16-18 October 2011 in Cape Town, South Africa.</p>
<p>Delegates sought to conclude discussions for the design of the GCF ahead of COP 17.</p>
<p>However, the Committee could not reach an agreement to adopt the recommendations and the instrument, and so decided to forward them to the COP for its consideration and approval.</p>
<p>For further information, visit: http://www.iisd.ca/crs/climate/gcftd4/brief_gcftd4.html There were also a number of other formal and informal regional and group meetings designed to help parties prepare their negotiating positions.</p>
<p>For more information on many of these events, visit IISD Reporting Services Climate Change Policy and Practice knowledgebase: http://climate-l.iisd.org</p>
</div>
<script type="text/javascript" src="../assets/src/bulletin.js"></script>
</body>
</html>
| medialab/climateDebateExplorer | ENB-data/enb_pages/enb12523e.html | HTML | mit | 11,864 |
<a alt="joel 1" href="#/web/joel/1"><div class="chapter-btn">1</div></a><a alt="joel 2" href="#/web/joel/2"><div class="chapter-btn">2</div></a><a alt="joel 3" href="#/web/joel/3"><div class="chapter-btn">3</div></a> | barryanders/ezra.js | content/bibles/web/joel/index.html | HTML | mit | 216 |
<table width="90%" border="0"><tr><td><script>function openfile(url) {fullwin = window.open(url, "fulltext", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes");}</script><div class="flayoutclass"><div class="flayoutclass_first"><table class="tableoutfmt2"><tr><th class="std1"><b>條目 </b></th><td class="std2">疑行無名,疑事無功</td></tr>
<tr><th class="std1"><b>注音 </b></th><td class="std2">|<sup class="subfont">ˊ</sup> ㄒ|ㄥ<sup class="subfont">ˊ</sup> ㄨ<sup class="subfont">ˊ</sup> ㄇ|ㄥ<sup class="subfont">ˊ</sup> |<sup class="subfont">ˊ</sup> ㄕ<sup class="subfont">ˋ</sup> ㄨ<sup class="subfont">ˊ</sup> ㄍㄨㄥ</td></tr>
<tr><th class="std1"><b>漢語拼音 </b></th><td class="std2"><font class="english_word">yí xíng wú míng yí shì wú gōng</font></td></tr>
<tr><th class="std1"><b>釋義 </b></th><td class="std2">做事猶豫不決,是無法成功的。史記˙卷六十八˙商君傳:<img src=/cydic/dicword/fa40.gif border=0 alt=* class=fontimg valign=center>疑行無名,疑事無功。且夫有高人之行者,固見非於世。<img src=/cydic/dicword/fa41.gif border=0 alt=* class=fontimg valign=center>亦作<img src=/cydic/dicword/fa40.gif border=0 alt=* class=fontimg valign=center>疑行無成,疑事無功<img src=/cydic/dicword/fa41.gif border=0 alt=* class=fontimg valign=center>、<img src=/cydic/dicword/fa40.gif border=0 alt=* class=fontimg valign=center>疑事無功,疑行無名<img src=/cydic/dicword/fa41.gif border=0 alt=* class=fontimg valign=center>。</td></tr>
<tr><th class="std1"><b><font class="fltypefont">附錄</font> </b></th><td class="std2">修訂本參考資料</td></tr>
</td></tr></table></div> <!-- flayoutclass_first --><div class="flayoutclass_second"></div> <!-- flayoutclass_second --></div> <!-- flayoutclass --></td></tr></table>
| BuzzAcademy/idioms-moe-unformatted-data | all-data/25000-25999/25468-22.html | HTML | mit | 1,925 |
<!--
Author: Ray-Eldath
refer to:
- http://docs.mathjax.org/en/latest/options/index.html
-->
{% if site.mathjax %}
<script type="text/javascript" async src="https://cdnjs.loli.net/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_CHTML"></script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
jax: ["input/TeX", "output/HTML-CSS"],
tex2jax: {
inlineMath: [ ["$", "$"] ],
displayMath: [ ["$$", "$$"] ],
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code']
},
"HTML-CSS": { preferredFont: "TeX", availableFonts: ["STIX","TeX"] }
});
</script>
{% endif %} | gyje/gyje.github.io | _includes/mathjax.html | HTML | mit | 625 |
<div id="container" class="container-fluid" ng-controller="cloudAppController">
<div class="table">
<div class="col-lg-2">
<label for="teamDD">Team:</label>
<select id="teamDD" class="form-control headerSelectWidth" ng-model="filteredTeam"
ng-change="onTeamChange()" ng-options="team.id as team.name for team in teamsOnly"></select>
</div>
<!--<div class="col-lg-2">
<label for="moduleSearch">Module:</label>
<input id="moduleSearch" class="form-control headerSelectWidth" ng-model="search.moduleName"/>
</div>-->
<div class="col-lg-2">
<label for="cloudAppSearch">CloudApp:</label>
<input id="cloudAppSearch" class="form-control headerSelectWidth" ng-model="search.appName"/>
</div>
<div class="col-lg-1">
<div class="spinner" ng-show="isLoading"></div>
</div>
</div>
<div ng-repeat = "module in cloudAddData.modules">
<div class="col-lg-12">
<table class="table">
<thead>
<tr>
<th>
<span >{{module.moduleName}}</span>
</th>
</tr>
<tr>
<th>
<span tooltip-placement="top">CloudApp</span>
</th>
<th>
<span tooltip-placement="top">Page</span>
</th>
<th>StoryPoints</th>
<th>Stream</th>
<th>TaskStatus</th>
<th>Blockers</th>
</tr>
</thead>
<tbody>
<tr ng-repeat = "cloudApp in module.cloudApps | filter:search:strict | orderBy:['appName','pageName']:reverse">
<!--
<td class="table_cell_border" ng-if="showCloud(cloudApp.appName)">{{cloudApp.appName}}</td>
<td class="" ng-if="previousCloudSkipped"></td> rowspan="{{module.}}" -->
<td class="table_cell_border" style="vertical-align: middle;" rowspan="{{getSpan(cloudApp.appName, module.cloudAppRowspans)}}" ng-if="showCloud(cloudApp.appName)" >{{cloudApp.appName}}</td>
<td class="table_cell_border">{{cloudApp.pageName}}</td>
<td class="table_cell_border">{{cloudApp.storyPoints}}</td>
<td class="table_cell_border">{{cloudApp.stream}}</td>
<td class="table_cell_border">{{cloudApp.taskStatus}}</td>
<td class="table_cell_border">
<span ng-repeat="blocker in cloudApp.blockers" >
<a ng-if="blocker.status!='Closed'" class="btn btn-primary blocker_style"
ng-style={'background-color':stringToColorCode(blocker.key)}
href="{{blocker.uri}}" target="_blank">
{{blocker.key}} <span class="badge">{{blocker.pagesInvolved}}</span>
</a>
<a ng-if="blocker.status=='Closed'" class="btn btn-primary blocker_style blocker_status_{{blocker.status}}"
href="{{blocker.uri}}" target="_blank">
{{blocker.key}} <span class="badge">{{blocker.pagesInvolved}}</span>
</a>
</span>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div> | ZloiBubr/ReportTool | public/pages/cloudappBlocker.html | HTML | mit | 3,587 |
---
permalink: /en/getting-startedLearn
redirect: /en/getting-started/
layout: redirect
sitemap: false
--- | sunnankar/wucorg | redirects/redirects4/en-getting-startedLearn.html | HTML | mit | 106 |
{% extends "layout_unbranded.html" %}
{% block page_title %}
GOV.UK prototype kit
{% endblock %}
{% block content %}
<main id="content" role="main">
<div class="grid-row">
<div class="column-full">
<div id="global-breadcrumb" class="breadcrumb">
<a class="link-back" href="results_confirm2?search=QQ123456C">Back</a>
</div>
<h1 class="heading-large">QQ123456C</h1>
<div class="tab-content">
<div class="js-tabs nav-tabs">
<ul class="tabs-nav" role="tablist">
<li class="active"><a href="#current-sp-value" id="tab-overview">Overview</a></li>
<li><a href="#options-sp-value" id="tab-options">Filling gaps</a></li>
<li><a href="#improve-sp-value" id="tab-contracting-out">Starting amount</a></li>
<li><a href="#contracted-out" id="tab-ni-record">National Insurance summary</a></li>
</ul>
</div>
</div>
</div>
<div id="forecast" class="tab-pane">
<div class="column-half">
<div class="forecast-wrapper2">
<span class="forecast-label2">State Pension date</span> <span class="forecast-data-bold2">4 May 2034</span>
</div>
<div class="forecast-wrapper2">
<span class="forecast-label2">Final relevant year (FRY)</span> <span class="forecast-data-bold2">2033-34</span>
<span class="forecast-label2"> </span><span class="forecast-data-bold2 forecast-label2-inline">18 years to FRY
</span>
</div>
<div class="forecast-wrapper2">
<span class="forecast-label2">COPE estimate</span> <span class="forecast-data-bold2">£18.84 a week</span>
<span class="forecast-no-data forecast-header forecast-label2-inline">Was contracted out</span>
</div>
</div>
<div class="column-half">
<div class="forecast-wrapper2">
<span class="forecast-label2">Estimate up to 5 April 2016
</span> <span class="forecast-data-bold2">£120.10 a week</span>
<span class="forecast-label2 forecast-label2-inline">Qualifying years</span> <span class="forecast-data-bold2 forecast-label2-inline">28</span>
</div>
<div class="forecast-wrapper2">
<span class="forecast-label2">Forecast contributing future years</span> <span class="forecast-data-bold2">£159.55 a week</span>
<span class="forecast-label2 forecast-label2-inline">Future years needed</span> <span class="forecast-data-bold2 forecast-label2-inline">9</span>
</div>
<div class="forecast-wrapper2">
<span class="forecast-label2">Most they can get</span> <span class="forecast-data-bold2">£159.55 a week</span>
</div>
</div>
</div>
<div id="options" class="tab-pane">
<div class="column-two-thirds">
<h3 class="heading-small">Improve by filling gaps</h3>
<table class="vnics"><tr><th>Gaps filled</th><th>Old rules</th><th>New rules</th></tr>
<tr><td>Estimate 05 April 2016</td><td class="vnics_bold">£120.10 a week</td><td>£108.33 a week</td></tr>
<tr><td>1</td><td class="vnics_bold">£124.17 a week</td><td>£112.89 a week</td></tr>
<tr><td>2</td><td class="vnics_bold">£128.24 a week<td>£117.45 a week</td></tr>
<tr><td>3</td><td><td>£122.00 a week</td></tr>
<tr><td>4</td><td><td>£126.56 a week</td></tr>
<tr><td>5</td><td><td class="vnics_bold">£131.12 a week</td></tr>
</table>
</div>
</div>
<div id="contracting-out" class="tab-pane">
<div class="column-two-thirds">
<h3 class="heading-small">Starting amount at April 2016 is £117.16 a week</h3>
</div>
<div class="column-one-half column-half-left">
<div class="forecast-wrapper2">
<p class="heading-small">Old rules</p>
<span class="forecast-label2">Basic</span>
<span class="forecast-data2">£111.35 a week</span>
<span class="forecast-label2 forecast-label2-inline">Additional Pension and Grad</span>
<span class="forecast-data2 forecast-label2-inline">£5.81 a week</span>
<span class="forecast-label2 forecast-label2-inline">Total</span>
<span class="forecast-data-bold2 forecast-label2-inline">£117.16 a week
</span>
</div>
</div>
<div class="column-one-half column-half-right">
<div class="forecast-wrapper2">
<p class="heading-small">New rules</p>
<span class="forecast-label2">New State Pension</span>
<span class="forecast-data2">£124.52 a week</span>
<span class="forecast-label2 forecast-label2-inline">RDA</span> <span class="forecast-data2 forecast-label2-inline">£18.84 a week</span>
<span class="forecast-label2 forecast-label2-inline">Total</span> <span class="forecast-data-bold2 forecast-label2-inline">£105.68 a week</span>
</div>
</div>
</div>
<div id="ni-record" class="tab-pane">
<div class="column-two-thirds">
<h2 class="heading-small">Shortfalls in record</h2>
<p>5 years can be filled</p>
<dl class="accordion2">
<dt>
<div class="ni-wrapper">
<div class="ni-years2">2016-17</div>
<div class="ni-notfull">This year is not available yet</div>
</div>
</dt>
<dt>
<div class="ni-wrapper">
<div class="ni-years2">2015-16</div>
<div class="ni-notfull">£733.20 shortfall</div>
</div>
</dt>
<dt>
<div class="ni-wrapper">
<div class="ni-years2">2014-15</div>
<div class="ni-notfull">£722.80 shortfall</div>
</div>
</dt>
<dt>
<div class="ni-wrapper">
<div class="ni-years2">2013-14</div>
<div class="ni-notfull">£704.60 shortfall</div>
</div>
</dt>
<dt>
<div class="ni-wrapper">
<div class="ni-years2">2012-13</div>
<div class="ni-notfull">£689.00 shortfall</div>
</div>
</dt>
<dt>
<div class="ni-wrapper">
<div class="ni-years2">2011-12</div>
<div class="ni-notfull">£289.80 shortfall</div>
</div>
</dt>
</dl>
</div>
<div class="column-one-third">
<aside class="govuk-related-items dwp-related-items" role="complementary">
<h2 class="heading-small" id="subsection-title">Full years and shortfalls</h2>
<nav role="navigation" aria-labelledby="subsection-title">
<ul class="font-xsmall">
<nav role="navigation" aria-labelledby="parent-subsection">
<ul class="list-bullets">
<li><span style="font-size: 16px"><span style="font-weight: 700">28</span> qualifying years </span>
</li>
<li><span style="font-size: 16px"><span style="font-weight: 700">18</span> years to contribute before 05 April
2034</span>
</li>
<li><span style="font-size: 16px"><span style="font-weight: 700">5</span> years with a shortfall</span>
</li>
</ul>
</ul>
</nav>
</aside>
</div>
</div>
</div>
</main>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script type="text/javascript">
// function show(elementId) {
// document.getElementById("id1").style.display = "none";
// document.getElementById("id2").style.display = "block";
// document.getElementById(elementId).style.display = "block";
// }
jQuery(document).ready(function($){
$("a#tab-overview").click(function() {
$(".tabs-nav li").removeClass("active");
$(this).parent().addClass("active");
$("#forecast").show();
$("#ni-record").hide();
$("#contracting-out").hide();
$("#contracting-out").hide();
$("#options").hide();
window.location.hash = "#lie-forecast";
return false;
});
$("a#tab-options").click(function() {
$(".tabs-nav li").removeClass("active");
$(this).parent().addClass("active");
$("#options").show();
$("#forecast").hide();
$("#ni-record").hide();
$("#contracting-out").hide();
window.location.hash = "#lie-options";
return false;
});
$("a#tab-ni-record").click(function() {
$(".tabs-nav li").removeClass("active");
$(this).parent().addClass("active");
$("#ni-record").show();
$("#contracting-out").hide();
$("#forecast").hide();
$("#options").hide();
window.location.hash = "#lie-ni-record";
return false;
});
$("a#tab-contracting-out").click(function() {
$(".tabs-nav li").removeClass("active");
$(this).parent().addClass("active");
$("#contracting-out").show();
$("#ni-record").hide();
$("#forecast").hide();
$("#options").hide();
window.location.hash = "#lie-contracting-out";
return false;
});
if(window.location.hash === "#lie-forecast") {
$("a#tab-overview").trigger('click');
}
else if (window.location.hash === "#lie-ni-record") {
$("a#tab-ni-record").trigger('click');
}
else if (window.location.hash === "#lie-contracting-out") {
$("a#tab-contracting-out").trigger('click');
}
else if (window.location.hash === "#lie-optionst") {
$("a#tab-options").trigger('click');
}
});
</script>
</div>
</main>
<script type="text/javascript">
function removeWhitespaces() {
var txtbox = document.getElementById('search-main');
txtbox.value = txtbox.value.replace(/\s/g, "");
}
</script>
{% endblock %}
| steven-borthwick/check-support | app/views/volnicsv1a/forecast_QQ123456C.html | HTML | mit | 9,847 |
<div id="maxoptions_example"></div> | oakmac/autocompletejs | examples/4008.html | HTML | mit | 35 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ergo: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.10.2 / ergo - 8.6.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
ergo
<small>
8.6.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-18 13:05:13 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-18 13:05:13 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.10.2 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.07.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.07.1 Official release 4.07.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/ergo"
license: "Unknown"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Ergo"]
depends: [
"ocaml"
"coq" {>= "8.6" & < "8.7~"}
"coq-counting" {>= "8.6" & < "8.7~"}
"coq-nfix" {>= "8.6" & < "8.7~"}
"coq-containers" {>= "8.6" & < "8.7~"}
]
tags: [ "keyword: reflexive decision procedure" "keyword: satisfiability modulo theories" "category: Computer Science/Decision Procedures and Certified Algorithms/Decision procedures" ]
authors: [ "Stéphane Lescuyer" ]
bug-reports: "https://github.com/coq-contribs/ergo/issues"
dev-repo: "git+https://github.com/coq-contribs/ergo.git"
synopsis: "Ergo: a Coq plugin for reification of term with arbitrary signature"
description:
"This library provides a tactic that performs SMT solving (SAT + congruence closure + arithmetic)."
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/ergo/archive/v8.6.0.tar.gz"
checksum: "md5=5995e362eac7d51d1d6339ab417d518e"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-ergo.8.6.0 coq.8.10.2</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.10.2).
The following dependencies couldn't be met:
- coq-ergo -> coq < 8.7~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-ergo.8.6.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.07.1-2.0.6/released/8.10.2/ergo/8.6.0.html | HTML | mit | 6,970 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>finger-tree: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.12.1 / finger-tree - 8.7.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
finger-tree
<small>
8.7.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-11 21:45:50 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-11 21:45:50 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.12.1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.09.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.09.1 Official release 4.09.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/finger-tree"
license: "LGPL"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/FingerTree"]
depends: [
"ocaml"
"coq" {>= "8.7" & < "8.8~"}
]
tags: [ "keyword: data structures" "keyword: dependent types" "keyword: Finger Trees" "category: Computer Science/Data Types and Data Structures" "date: 2009-02" ]
authors: [ "Matthieu Sozeau <mattam@mattam.org> [http://mattam.org]" ]
bug-reports: "https://github.com/coq-contribs/finger-tree/issues"
dev-repo: "git+https://github.com/coq-contribs/finger-tree.git"
synopsis: "Dependent Finger Trees"
description: """
http://mattam.org/research/russell/fingertrees.en.html
A verified generic implementation of Finger Trees"""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/finger-tree/archive/v8.7.0.tar.gz"
checksum: "md5=65bc1765ca51e147bcbd410b0f4c88b0"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-finger-tree.8.7.0 coq.8.12.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.12.1).
The following dependencies couldn't be met:
- coq-finger-tree -> coq < 8.8~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-finger-tree.8.7.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.09.1-2.0.6/released/8.12.1/finger-tree/8.7.0.html | HTML | mit | 6,929 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>paramcoq: Not compatible</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.10.0 / paramcoq - 1.1.1+coq8.7</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
paramcoq
<small>
1.1.1+coq8.7
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2020-07-16 08:04:26 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-07-16 08:04:26 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-m4 1 Virtual package relying on m4
coq 8.10.0 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.8.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
synopsis: "Paramcoq"
name: "coq-paramcoq"
version: "1.1.1+coq8.7"
maintainer: "Pierre Roux <pierre.roux@onera.fr>"
homepage: "https://github.com/coq-community/paramcoq"
dev-repo: "git+https://github.com/coq-community/paramcoq.git"
bug-reports: "https://github.com/coq-community/paramcoq/issues"
license: "MIT"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Param"]
depends: [
"ocaml"
"coq" {>= "8.7.2" & < "8.8~"}
]
tags: [
"keyword:paramcoq"
"keyword:parametricity"
"keyword:ocaml module"
"category:paramcoq"
"category:Miscellaneous/Coq Extensions"
"logpath:Param"
]
authors: [
"Chantal Keller (Inria, École polytechnique)"
"Marc Lasson (ÉNS de Lyon)"
"Abhishek Anand"
"Pierre Roux"
"Emilio Jesús Gallego Arias"
"Cyril Cohen"
"Matthieu Sozeau"
]
flags: light-uninstall
url {
src:
"https://github.com/coq-community/paramcoq/releases/download/v1.1.1+coq8.7/coq-paramcoq.1.1.1+coq8.7.tgz"
checksum: "md5=3eb94ccdb53e6dfc7f0d74b3cd1a5db5"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-paramcoq.1.1.1+coq8.7 coq.8.10.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.10.0).
The following dependencies couldn't be met:
- coq-paramcoq -> coq < 8.8~ -> ocaml < 4.03.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-paramcoq.1.1.1+coq8.7</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.05.0-2.0.6/released/8.10.0/paramcoq/1.1.1+coq8.7.html | HTML | mit | 7,188 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_65) on Sat Dec 27 23:31:06 CST 2014 -->
<TITLE>
Uses of Class pages.MarkovTable
</TITLE>
<META NAME="date" CONTENT="2014-12-27">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class pages.MarkovTable";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../pages/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../pages/MarkovTable.html" title="class in pages"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../index.html?pages//class-useMarkovTable.html" target="_top"><B>FRAMES</B></A>
<A HREF="MarkovTable.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>pages.MarkovTable</B></H2>
</CENTER>
<A NAME="pages"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Uses of <A HREF="../../pages/MarkovTable.html" title="class in pages">MarkovTable</A> in <A HREF="../../pages/package-summary.html">pages</A></FONT></TH>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2">Fields in <A HREF="../../pages/package-summary.html">pages</A> declared as <A HREF="../../pages/MarkovTable.html" title="class in pages">MarkovTable</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) <A HREF="../../pages/MarkovTable.html" title="class in pages">MarkovTable</A></CODE></FONT></TD>
<TD><CODE><B>Model.</B><B><A HREF="../../pages/Model.html#markov">markov</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private <A HREF="../../pages/MarkovTable.html" title="class in pages">MarkovTable</A></CODE></FONT></TD>
<TD><CODE><B>ClassifyingThread.</B><B><A HREF="../../pages/ClassifyingThread.html#markov">markov</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private <A HREF="../../pages/MarkovTable.html" title="class in pages">MarkovTable</A></CODE></FONT></TD>
<TD><CODE><B>ClassifyingExecutor.</B><B><A HREF="../../pages/ClassifyingExecutor.html#markov">markov</A></B></CODE>
<BR>
</TD>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../pages/package-summary.html">pages</A> that return <A HREF="../../pages/MarkovTable.html" title="class in pages">MarkovTable</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../pages/MarkovTable.html" title="class in pages">MarkovTable</A></CODE></FONT></TD>
<TD><CODE><B>Corpus.</B><B><A HREF="../../pages/Corpus.html#makeMarkovTable(java.util.ArrayList, double)">makeMarkovTable</A></B>(java.util.ArrayList<java.lang.String> volumesToUse,
double alpha)</CODE>
<BR>
</TD>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../pages/package-summary.html">pages</A> with parameters of type <A HREF="../../pages/MarkovTable.html" title="class in pages">MarkovTable</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B>GenrePredictorMulticlass.</B><B><A HREF="../../pages/GenrePredictorMulticlass.html#classify(java.lang.String, java.lang.String, java.lang.String, pages.MarkovTable, java.util.ArrayList, pages.Vocabulary, pages.FeatureNormalizer, boolean)">classify</A></B>(java.lang.String thisFile,
java.lang.String inputDir,
java.lang.String outputDir,
<A HREF="../../pages/MarkovTable.html" title="class in pages">MarkovTable</A> markov,
java.util.ArrayList<java.lang.String> genres,
<A HREF="../../pages/Vocabulary.html" title="class in pages">Vocabulary</A> vocabulary,
<A HREF="../../pages/FeatureNormalizer.html" title="class in pages">FeatureNormalizer</A> normalizer,
boolean isPairtree)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B>GenrePredictor.</B><B><A HREF="../../pages/GenrePredictor.html#classify(java.lang.String, java.lang.String, java.lang.String, pages.MarkovTable, java.util.ArrayList, pages.Vocabulary, pages.FeatureNormalizer, boolean)">classify</A></B>(java.lang.String thisFile,
java.lang.String inputDir,
java.lang.String outputDir,
<A HREF="../../pages/MarkovTable.html" title="class in pages">MarkovTable</A> markov,
java.util.ArrayList<java.lang.String> genres,
<A HREF="../../pages/Vocabulary.html" title="class in pages">Vocabulary</A> vocabulary,
<A HREF="../../pages/FeatureNormalizer.html" title="class in pages">FeatureNormalizer</A> normalizer,
boolean isPairtree)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static java.util.ArrayList<double[]></CODE></FONT></TD>
<TD><CODE><B>ForwardBackward.</B><B><A HREF="../../pages/ForwardBackward.html#smooth(java.util.ArrayList, pages.MarkovTable, double[])">smooth</A></B>(java.util.ArrayList<double[]> evidenceVectors,
<A HREF="../../pages/MarkovTable.html" title="class in pages">MarkovTable</A> markov,
double[] wordLengths)</CODE>
<BR>
</TD>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2">Constructors in <A HREF="../../pages/package-summary.html">pages</A> with parameters of type <A HREF="../../pages/MarkovTable.html" title="class in pages">MarkovTable</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../pages/ClassifyingThread.html#ClassifyingThread(java.lang.String, java.lang.String, java.lang.String, int, java.util.ArrayList, pages.MarkovTable, java.util.ArrayList, pages.Vocabulary, pages.FeatureNormalizer, boolean, java.lang.String)">ClassifyingThread</A></B>(java.lang.String thisFile,
java.lang.String inputDir,
java.lang.String outputDir,
int numGenres,
java.util.ArrayList<<A HREF="../../pages/GenrePredictor.html" title="class in pages">GenrePredictor</A>> classifiers,
<A HREF="../../pages/MarkovTable.html" title="class in pages">MarkovTable</A> markov,
java.util.ArrayList<java.lang.String> genres,
<A HREF="../../pages/Vocabulary.html" title="class in pages">Vocabulary</A> vocabulary,
<A HREF="../../pages/FeatureNormalizer.html" title="class in pages">FeatureNormalizer</A> normalizer,
boolean isPairtree,
java.lang.String modelLabel)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../pages/Model.html#Model(pages.Vocabulary, pages.FeatureNormalizer, pages.GenreList, java.util.ArrayList, pages.MarkovTable)">Model</A></B>(<A HREF="../../pages/Vocabulary.html" title="class in pages">Vocabulary</A> vocabulary,
<A HREF="../../pages/FeatureNormalizer.html" title="class in pages">FeatureNormalizer</A> normalizer,
<A HREF="../../pages/GenreList.html" title="class in pages">GenreList</A> genreList,
java.util.ArrayList<<A HREF="../../pages/GenrePredictor.html" title="class in pages">GenrePredictor</A>> classifiers,
<A HREF="../../pages/MarkovTable.html" title="class in pages">MarkovTable</A> markov)</CODE>
<BR>
</TD>
</TR>
</TABLE>
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../pages/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../pages/MarkovTable.html" title="class in pages"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../index.html?pages//class-useMarkovTable.html" target="_top"><B>FRAMES</B></A>
<A HREF="MarkovTable.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
</BODY>
</HTML>
| tedunderwood/genre | pages/doc/pages/class-use/MarkovTable.html | HTML | mit | 13,555 |
<ng-container *ngIf="preview.user && !authHelper.isSelf(preview.user)">
<user-info [user]="preview.user">
</user-info>
</ng-container>
<!-- description + image -->
<label-value [label]="i18n.voucher.voucher">
{{ preview.type.voucherTitle }}
</label-value>
<ng-container *ngIf="buyVoucher.count === 1; else multiple">
<label-value [label]="i18n.transaction.amount">
{{ buyVoucher.amount | currency:preview.type.configuration.currency }}
</label-value>
</ng-container>
<ng-template #multiple>
<label-value [label]="i18n.voucher.numberOfVouchers">
{{ buyVoucher.count }}
</label-value>
<label-value [label]="i18n.voucher.amountPerVoucher">
{{ buyVoucher.amount | currency:preview.type.configuration.currency }}
</label-value>
<label-value [label]="i18n.voucher.totalAmount">
{{ preview.totalAmount | currency:preview.type.configuration.currency }}
</label-value>
</ng-template>
<label-value *ngIf="preview.type.gift === 'choose'" kind="fieldView"
[label]="i18n.voucher.buy.usage"
[value]="buyVoucher.gift ? i18n.voucher.buy.usageGift : i18n.voucher.buy.usageSelf">
</label-value>
<label-value *ngIf="preview.type.gift === 'never'" kind="fieldView"
[label]="i18n.voucher.buy.usage" [value]="i18n.voucher.buy.usageAlwaysSelf">
</label-value>
<!-- payment fields -->
<ng-container *ngFor="let cf of paymentCustomFields">
<label-value
[hidden]="!fieldHelper.hasValue(cf.internalName, buyVoucher.paymentCustomValues)"
[label]="cf.name"
[labelPosition]="labelOnTop((layout.ltsm$ | async), cf) ? 'top' : 'auto'">
<format-field-value [customValues]="buyVoucher.paymentCustomValues"
[fields]="paymentCustomFields" [fieldName]="cf.internalName">
</format-field-value>
</label-value>
</ng-container>
<!-- custom fields -->
<ng-container *ngFor="let cf of voucherCustomFields">
<label-value
[hidden]="!fieldHelper.hasValue(cf.internalName, buyVoucher.voucherCustomValues)"
[label]="cf.name"
[labelPosition]="labelOnTop((layout.ltsm$ | async), cf) ? 'top' : 'auto'">
<format-field-value [customValues]="buyVoucher.voucherCustomValues"
[fields]="voucherCustomFields" [fieldName]="cf.internalName">
</format-field-value>
</label-value>
</ng-container>
<ng-container *ngIf="preview.confirmationPasswordInput">
<hr *ngIf="layout.gtxxs$ | async">
<confirmation-password focused
[formControl]="form.get('confirmationPassword')"
[passwordInput]="preview.confirmationPasswordInput"
[createDeviceConfirmation]="createDeviceConfirmation"
(confirmationModeChanged)="confirmationModeChanged.emit($event)"
(confirmed)="confirmed.emit($event)">
</confirmation-password>
</ng-container>
| cyclosproject/cyclos4-ui | src/app/ui/banking/vouchers/buy-vouchers-step-confirm.component.html | HTML | mit | 2,687 |
<!DOCTYPE html>
<html lang="en">
<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>Document</title>
</head>
<body>
<script>
const importObject = Object.freeze({
env: {
__memory_base: 0,
__table_base: 0,
memory: new WebAssembly.Memory({
initial: 1, // 64KiB - single page
maximum: 10 // 640KiB
}),
table: new WebAssembly.Table({ // Table
initial: 0, // length
element: 'anyfunc'
})
}
});
// 1st option -----------------------
const loadWASM = (url, importObject) =>
fetch(url)
.then(response => response.arrayBuffer())
.then(buffer => WebAssembly
.instantiate(buffer, importObject)
)
.then(results => results.instance);
loadWASM('sum.wasm', importObject).then(instance => {
const {exports} = instance;
const result = exports._sum(40, 2);
console.log({instance, result});
});
// 2d option ------------------------
const loadWASM2 = async (url, importObject) => {
const buffer = await fetch(url).then(r => r.arrayBuffer());
const result = await WebAssembly.instantiate(buffer, importObject);
return result.instance;
};
loadWASM2('sum.wasm', importObject).then(instance => {
const {exports} = instance;
const result = exports._sum(40, 2);
console.log({instance, result});
});
// 3d way, disabled because:
// RangeError: WebAssembly.Instance is disallowed on the main thread, if the buffer size is larger than 4KB. Use WebAssembly.instantiate.
// Note: To generate fib-module with html example smaller than 11kb, use option -g2 instead of -g4
// const loadWASM3 = (url, importObject) => fetch(url)
// .then(response => response.arrayBuffer())
// .then(buffer => WebAssembly.compile(buffer))
// .then(module => new WebAssembly.Instance(module, importObject));
// loadWASM3('sum.wasm', importObject).then(instance => {
// const {exports} = instance;
// const result = exports._sum(40, 2);
// console.log({
// instance,
// result
// });
// });
</script>
</body>
</html>
| arturparkhisenko/til | wasm/examples/sum/index.html | HTML | mit | 2,315 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Phenotype Demo</title>
<meta name="description" content="Phenotype Demo">
<link rel="stylesheet" href="style.css">
<script src="phenotype.js" type="application/javascript"></script>
</head>
<body>
<a href="https://github.com/benjamine/phenotype" id="fork_me">
<img alt="Fork me on GitHub" src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png">
</a>
<h1>Phenotype Demo</h1>
<script type="text/javascript">
var Trait = phenotype.Trait;
var Walker = new Trait('Walker', {
goTo: function(location) {
phenotype.pending();
}
});
var Swimmer = new Trait('Swimmer', {
goTo: function(location) {
phenotype.pending();
}
});
var Flyer = new Trait('Flyer', {
goTo: function(location) {
phenotype.pending();
}
});
var Duck = new Trait('Duck', Walker, Swimmer, Flyer);
try {
Duck.create();
} catch(err) {
// conflict, goTo is defined in Walker, Swimmer and Flyer
console.error(err);
}
// updating
var jet = Flyer.create();
// add a trait to existing object
var Vehicle = new Trait('Vehicle', { seats: 3 });
Vehicle.addTo(jet);
// logs 3
console.log(jet.seats);
// modify existing Trait
Vehicle.add({ seats: 4, wings: 2 }, new Trait({ pilot: true }));
// logs 4 2 true
console.log(jet.seats, jet.wings, jet.pilot);
// using "required"
var Retriever = new Trait('Retriever', {
goTo: phenotype.member.required,
grab: phenotype.member.required,
retrieve: function(thing) {
this.goTo(thing.location);
this.grab(thing);
this.goTo(this.previousLocation);
}
});
try {
var retriever = Retriever.create();
} catch(err) {
// goTo is required by Retriever, this is an abstract Trait
console.error(err);
}
var Dog = new Trait('Dog', Walker, Retriever, {
grab: function(thing) {
phenotype.pending();
}
});
var dog = Dog.create();
try {
var ball = {};
dog.retrieve(ball);
} catch(err) {
// throws "pending" error from grab method above
console.error(err);
}
// using mixin (allows to apply a Trait to a preexistent object)
var parrot = { name: 'pepe' };
try {
Retriever.mixin(parrot);
} catch(err) {
// goTo is required by Retriever, and parrot doesn't have it
console.log(err);
}
parrot.goTo = phenotype.pending;
parrot.grab = phenotype.pending;
// this time parrot provides all required methods
Retriever.mixin(parrot);
// using "aliasOf" and "from"
var Bird = new Trait('Bird', Walker, Flyer, {
walkTo: phenotype.member.aliasOf(Walker, 'goTo'),
goTo: phenotype.member.from(Flyer)
});
var Hawk = new Trait('Hawk', Bird, Retriever, {
grab: function(thing) {
phenotype.pending();
}
});
var Capibara = new Trait('Capibara', Walker, Swimmer, {
walkTo: phenotype.member.aliasOf(Walker, 'goTo'),
swimTo: phenotype.member.aliasOf(Swimmer, 'goTo'),
goTo: function(location) {
location.isOnWater() ? this.swimTo(location) : this.walkTo(location);
}
});
// using ancestors
var Electric = new Trait('Electric', {
shutdown: function() {
console.log('disconnected power');
}
});
var CombustionEngine = new Trait('CombustionEngine', {
shutdown: function() {
console.log('disconnected fuel injection');
}
});
var Car = new Trait('Car', Electric, CombustionEngine, {
open: function(all){
console.log('doors unlocked');
},
shutdown: phenotype.member.ancestors().then(function() {
console.log('doors locked');
})
});
var RetractableRoof = new Trait('RetractableRoof', {
openRoof: function() {
console.log('roof retracted');
},
shutdown: function() {
console.log('roof extended');
}
});
var ConvertibleCar = new Trait('ConvertibleCar', Car, RetractableRoof, {
open: phenotype.member.ancestors().wrap(function(inner, base){
return function(all){
inner.call(this, all);
if (all) {
this.openRoof();
}
}
}),
shutdown: phenotype.member.ancestors()
});
// using pipe and async
var Peeler = new Trait('Peeler', {
process: function(err, thing) {
console.log('peeling ' + thing);
// peeling takes time, but timeout at 1500ms
var async = phenotype.async(1500);
setTimeout(function(){
async.done('peeled ' + thing);
}, 1000);
return async;
}
});
Peeler.create().process(null, "apple").then(function(err, result){
if (err) {
console.error('error peeling apple');
return;
}
// logs "peeled apple"
console.log('result:', result);
});
var Chopper = new Trait('Chopper', {
process: function(err, thing) {
console.log('chopping ' + thing);
return 'chopped ' + thing;
}
});
var Mixer = new Trait('Mixer', {
process: function(err, thing) {
console.log('mixing ' + thing);
// mixing takes time
var async = phenotype.async(3000);
setTimeout(function(){
async.done('mixed ' + thing);
}, 1200);
return async;
}
});
var Oven = new Trait('Oven', {
process: function(err, thing) {
console.log('baking ' + thing);
return 'baked ' + thing;
}
});
var CookingMachine = new Trait('CookingMachine', Peeler, Chopper, Mixer, Oven, {
process: phenotype.member.ancestors().pipe({continueOnError: true})
.then(function(err, thing) {
if (err) {
console.error('cooking failed');
console.error(err);
return;
}
console.log('finished cooking:', thing);
return thing;
})
});
var machine = CookingMachine.create();
machine.process(null, "vegetables").then(function(err, result){
if (err) {
console.error('error, no result');
return;
}
// logs "result: baked mixed chopped peeled vegetables"
console.log('result:', result);
});
// properties & events
var Labrador = new Trait('Labrador', Dog, Retriever, phenotype.HasEvents, {
name: phenotype.member.property(),
initial: phenotype.member.property(function(){
return this.name().substr(0, 1).toUpperCase();
}),
});
var spike = Labrador.create();
spike.name('Spike');
// logs "Spike"
console.log(spike.name());
// logs "S"
console.log(spike.initial());
spike.on({
bark: function(e, volume) {
console.log(e.source.name(), 'barked', volume);
},
namechanged: function(e, data) {
console.log(data.property.name, 'changed from', data.previousValue, 'to', data.value);
},
initialchanged: function(e, data) {
console.log(data.property.name, 'changed from', data.previousValue, 'to', data.value);
}
});
// logs "Spikey barked loud"
spike.emit('bark', 'loud');
spike.off('bark');
spike.emit('bark', 'louder');
// logs "name changed from Spike to Spikey"
spike.name('Spikey');
</script>
<section id="main">
<div>Not much to see here,<br/>check output on browser console</div>
</section>
<footer>
<a href="https://github.com/benjamine/phenotype">Download Phenotype</a><br>
<p class="credits">developed by <a href="http://twitter.com/beneidel">Benjamín Eidelman</a></p>
</footer>
</body>
</html> | benjamine/phenotype | demo.html | HTML | mit | 8,335 |
<div class="container">
<div class="col-md-12 col-sm-12 col-xs-12 no-padding">
<div ng-controller="GroupMenu" ng-model="currentMenu" ng-init="currentMenu = 'new'" ng-include="'group/menu'" class="row"></div>
<div class="row">
<div class="col-md-12 no-padding">
<div class="row">
<div class="panel panel-default">
<div class="panel-heading">
<i class="fa fa-users"></i> Editar Grupo
</div>
<div class="panel-body">
<div class="col-md-6 col-md-offset-3">
<br/>
<div class="thumbnail">
<div class="caption">
<form>
<div class="row center-block" style="position: absolute">
<div id="fileupload" ng-controller="UploaderController" data-file-upload="options" ng-class="{'fileupload-processing': processing() || loadingFiles}">
<span class="btn btn-default btn-sm btn-block fileinput-button">
<i class="fa fa-refresh fa-spin" ng-if="active() > 0"></i>
<i class="fa fa-camera" ng-if="active() == 0"></i>
Subir logo
<input type="file" name="files[]" multiple ng-disabled="disabled">
</span>
</div>
</div>
<div class="form-group">
<img ng-src="{{image.url}}" class="img-responsive">
</div>
<div class="form-group">
<input ng-model="group.title" type="text" class="form-control" id="exampleInputEmail1" placeholder="Nombre del grupo">
</div>
<div class="form-group">
<textarea ng-model="group.text" class="form-control" id="exampleInputPassword1" placeholder="Descripción"></textarea>
</div>
<div class="form-group">
<label ng-if="group.privado" ng-click="group.privado = false">
<i class="fa fa-check-square-o" ng-model="group.privado"></i>
Privado
</label>
<label ng-if="!group.privado" ng-click="group.privado = true">
<i class="fa fa-square-o" ng-model="group.privado"></i>
Privado
</label>
</div>
<button type="submit" class="btn btn-success" ng-click="actionSubmit()">
{{submitTitle}} <i class="fa fa-floppy-o"></i>
</button>
<a ng-href="/#/group/{{group._id}}" class="btn btn-default btn-primary">
Ver <i class="fa fa-eye"></i>
</a>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div> | claudio-moya-tapia/mean_demo | app/views/group/edit.html | HTML | mit | 4,322 |
---
redirect_to:
- http://tech.hbc.com/2013-10-04-welcome-jonathan-leibiusky.html
layout:: post
title: Welcome Jonathan Leibiusky!
date: '2013-10-04T15:24:00-04:00'
tags:
- Jonathan Leibiusky
- Infrastructure Engineering
- people
- gilt tech
- nyc
- immutable deployment
- xetorthio
tumblr_url: http://tech.gilt.com/post/63102481375/welcome-jonathan-leibiusky
---
<p><img alt="image" height="597" src="http://media.tumblr.com/14b68c54234532e9417fbcc363475bea/tumblr_inline_mu5s8oA9b61s17bu5.jpg" width="800"/></p>
<p>We’re excited to have Jonathan Leibiusky join Gilt’s Infrastructure Engineering team! Jon will work from NYC and help us to drive <a href="http://tech.gilt.com/2013/06/07/virtualization-at-gilt-a-lightning-talk-for-nyc-devops" target="_blank">Galactica</a> forward and realize <a href="http://tech.gilt.com/2013/08/09/meet-a-gilt-technologist-roland-tritsch-vp" target="_blank">our vision of an immutable deployment infrastructure</a>.</p>
<p>More about Jon:</p>
<ul><li>He’s originally from Argentina, but spent some of his childhood in Israel</li>
<li>Previous job: Head of Research & Development for <a href="http://www.mercadolibre.com/" target="_blank">MercadoLibre</a></li>
<li>He’s a fan of Node.js and Go</li>
<li>Preferred IDE: vim</li>
<li>Preferred OS: Ubuntu + xfce</li>
<li>Plays some ukelele (and guitar)</li>
<li><a href="https://twitter.com/xetorthio" target="_blank">Twitter</a> & <a href="https://github.com/xetorthio" target="_blank">GitHub</a> nickname: xetorthio</li>
</ul>
| gilt/tech-blog | _posts/tumblr/2013-10-04-welcome-jonathan-leibiusky.html | HTML | mit | 1,545 |
{% extends "base.html" %}
{% block content %}
<h1>{{ question.question_text }}</h1>
{% if error_message %}<p><strong>{{ error_message }}</strong></p>{% endif %}
<form action="{% url 'polls:vote' question.id %}" method="post">
{% csrf_token %}
{% for choice in question.choice_set.all %}
<input type="radio" name="choice" id="choice{{ forloop.counter }}" value="{{ choice.id }}" />
<label for="choice{{ forloop.counter }}">{{ choice.choice_text }}</label><br/>
{% endfor %}
<input type="submit" value="Vote" />
</form>
{% endblock content %}
| gavmain/django_demo | demo/templates/polls/detail.html | HTML | mit | 552 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>slickgrid-colfix-plugin example</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../bower_components/slickgrid/slick.grid.css" type="text/css" />
<link rel="stylesheet" href="../bower_components/slickgrid/css/smoothness/jquery-ui-1.8.16.custom.css" type="text/css" />
<link rel="stylesheet" href="../bower_components/slickgrid/examples/examples.css" type="text/css" />
<style>
body {margin: 0;}
.grid {background: white; outline: 0; border: 1px solid gray;}
.slick-row.active {background-color: #fcc;}
.idx {background-color: #f2f2f2; border-right: 1px solid #aaa; text-align: right; font-size: 0.8em; padding-right: 8px;}
</style>
</head>
<body>
<div id="my-grid" class="grid" style="width: 800px; height: 400px"></div>
<script src="../bower_components/slickgrid/lib/jquery-1.7.min.js"></script>
<script src="../bower_components/slickgrid/lib/jquery-ui-1.8.16.custom.min.js"></script>
<script src="../bower_components/slickgrid/lib/jquery.event.drag-2.2.js"></script>
<script src="../bower_components/slickgrid/slick.core.js"></script>
<script src="../bower_components/slickgrid/slick.grid.js"></script>
<script src="../dist/slick.colfix.js"></script>
<script>
/** columns defination */
var columns = [
{id: '#', name: '', field: 'idx', width: 50, cssClass: 'idx'},
{id: 'col1', name: 'col 1', field: 'col1', width: 50},
{id: 'col2', name: 'col 2', field: 'col2', width: 80},
{id: 'col3', name: 'col 3', field: 'col3', width: 100},
{id: 'col4', name: 'col 4', field: 'col4', width: 200},
{id: 'col5', name: 'col 5', field: 'col5', width: 50},
{id: 'col6', name: 'col 6', field: 'col6', width: 300},
{id: 'col7', name: 'col 7', field: 'col7', width: 100},
{id: 'col8', name: 'col 8', field: 'col8', width: 200},
{id: 'col9', name: 'col 9', field: 'col9', width: 100}
];
/** grid options */
var options = {
enableColumnReorder: false,
explicitInitialization: true
};
/** data */
var data = [];
for (var i = 0; i < 500; i++) {
data[i] = {
idx: i,
col1: 'col 1-' + i,
col2: 'col 2-' + i,
col3: 'col 3-' + i,
col4: 'col 4-' + i,
col5: 'col 5-' + i,
col6: 'col 6-' + i,
col7: 'col 7-' + i,
col8: 'col 8-' + i,
col9: 'col 9-' + i
};
}
/** SlickGrid */
var grid = new Slick.Grid('#my-grid', data, columns, options);
// register colfix plguin
grid.registerPlugin(new Slick.Plugins.ColFix('#'));
// initialize
grid.init();
</script>
</body>
</html>
| keik/slickgrid-colfix-plugin | examples/basic-explicitinit.html | HTML | mit | 2,886 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.11"/>
<title>V8 API Reference Guide for node.js v7.2.1: v8::Maybe< T > Class Template Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">V8 API Reference Guide for node.js v7.2.1
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.11 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="inherits.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespacev8.html">v8</a></li><li class="navelem"><a class="el" href="classv8_1_1Maybe.html">Maybe</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="#friends">Friends</a> |
<a href="classv8_1_1Maybe-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">v8::Maybe< T > Class Template Reference</div> </div>
</div><!--header-->
<div class="contents">
<p><code>#include <<a class="el" href="v8_8h_source.html">v8.h</a>></code></p>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:a486b608c21c8038d5019bd7d75866345"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a486b608c21c8038d5019bd7d75866345"></a>
V8_INLINE bool </td><td class="memItemRight" valign="bottom"><b>IsNothing</b> () const </td></tr>
<tr class="separator:a486b608c21c8038d5019bd7d75866345"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adc82dc945891060d312fb6fbf8fb56ae"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="adc82dc945891060d312fb6fbf8fb56ae"></a>
V8_INLINE bool </td><td class="memItemRight" valign="bottom"><b>IsJust</b> () const </td></tr>
<tr class="separator:adc82dc945891060d312fb6fbf8fb56ae"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4959bad473c4549048c1d2271a1a73e0"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4959bad473c4549048c1d2271a1a73e0"></a>
V8_INLINE T </td><td class="memItemRight" valign="bottom"><b>ToChecked</b> () const </td></tr>
<tr class="separator:a4959bad473c4549048c1d2271a1a73e0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae2e1c6d0bd1ab5ff8de22a312c4dbb37"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae2e1c6d0bd1ab5ff8de22a312c4dbb37"></a>
V8_WARN_UNUSED_RESULT V8_INLINE bool </td><td class="memItemRight" valign="bottom"><b>To</b> (T *out) const </td></tr>
<tr class="separator:ae2e1c6d0bd1ab5ff8de22a312c4dbb37"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a02b19d7fcb7744d8dba3530ef8e14c8c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a02b19d7fcb7744d8dba3530ef8e14c8c"></a>
V8_INLINE T </td><td class="memItemRight" valign="bottom"><b>FromJust</b> () const </td></tr>
<tr class="separator:a02b19d7fcb7744d8dba3530ef8e14c8c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0bcb5fb0d0e92a3f0cc546f11068a8df"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a0bcb5fb0d0e92a3f0cc546f11068a8df"></a>
V8_INLINE T </td><td class="memItemRight" valign="bottom"><b>FromMaybe</b> (const T &default_value) const </td></tr>
<tr class="separator:a0bcb5fb0d0e92a3f0cc546f11068a8df"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adf61111c2da44e10ba5ab546a9a525ce"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="adf61111c2da44e10ba5ab546a9a525ce"></a>
V8_INLINE bool </td><td class="memItemRight" valign="bottom"><b>operator==</b> (const <a class="el" href="classv8_1_1Maybe.html">Maybe</a> &other) const </td></tr>
<tr class="separator:adf61111c2da44e10ba5ab546a9a525ce"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5bbacc606422d7ab327c2683462342ec"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a5bbacc606422d7ab327c2683462342ec"></a>
V8_INLINE bool </td><td class="memItemRight" valign="bottom"><b>operator!=</b> (const <a class="el" href="classv8_1_1Maybe.html">Maybe</a> &other) const </td></tr>
<tr class="separator:a5bbacc606422d7ab327c2683462342ec"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="friends"></a>
Friends</h2></td></tr>
<tr class="memitem:aeb9593e125b42d748acbd69b72c89f37"><td class="memTemplParams" colspan="2"><a class="anchor" id="aeb9593e125b42d748acbd69b72c89f37"></a>
template<class U > </td></tr>
<tr class="memitem:aeb9593e125b42d748acbd69b72c89f37"><td class="memTemplItemLeft" align="right" valign="top"><a class="el" href="classv8_1_1Maybe.html">Maybe</a>< U > </td><td class="memTemplItemRight" valign="bottom"><b>Nothing</b> ()</td></tr>
<tr class="separator:aeb9593e125b42d748acbd69b72c89f37"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aeff0e7fedd63cfebe9a5286e2cd8552d"><td class="memTemplParams" colspan="2"><a class="anchor" id="aeff0e7fedd63cfebe9a5286e2cd8552d"></a>
template<class U > </td></tr>
<tr class="memitem:aeff0e7fedd63cfebe9a5286e2cd8552d"><td class="memTemplItemLeft" align="right" valign="top"><a class="el" href="classv8_1_1Maybe.html">Maybe</a>< U > </td><td class="memTemplItemRight" valign="bottom"><b>Just</b> (const U &u)</td></tr>
<tr class="separator:aeff0e7fedd63cfebe9a5286e2cd8552d"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><h3>template<class T><br />
class v8::Maybe< T ></h3>
<p>A simple <a class="el" href="classv8_1_1Maybe.html">Maybe</a> type, representing an object which may or may not have a value, see <a href="https://hackage.haskell.org/package/base/docs/Data-Maybe.html">https://hackage.haskell.org/package/base/docs/Data-Maybe.html</a>.</p>
<p>If an API method returns a Maybe<>, the API method can potentially fail either because an exception is thrown, or because an exception is pending, e.g. because a previous API call threw an exception that hasn't been caught yet, or because a TerminateExecution exception was thrown. In that case, a "Nothing" value is returned. </p>
</div><hr/>The documentation for this class was generated from the following file:<ul>
<li>deps/v8/include/<a class="el" href="v8_8h_source.html">v8.h</a></li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.11
</small></address>
</body>
</html>
| v8-dox/v8-dox.github.io | 03b1c31/html/classv8_1_1Maybe.html | HTML | mit | 10,130 |
---
layout: default
title: Distributed compressed sensing
---
<h2>{{ page.title }}</h2>
<p>To be writen<a href="">here</a></p> | myworkstation/myworkstation.github.io | _posts/2015-05-15-Distributed compressed sensing.html | HTML | mit | 126 |
<!-- content start -->
<div class="admin-content" style="min-height:450px">
<div class="am-cf am-padding">
<div class="am-fl am-cf"><strong class="am-text-primary am-text-lg">成交明细表</strong></div>
</div>
<div class="am-g">
<div class="am-u-sm-12 am-u-md-6"> </div>
<form method="post" action="{{site_url url='cw_brokerage/list_brokerage'}}" class="search_form">
<div class="am-u-sm-12 am-u-md-3">
<div class="am-input-group am-input-group-sm">
<select data-am-selected="{btnWidth: '120', btnSize: 'sm', btnStyle: 'default'}" name="house_id">
<option value="0">- 楼盘(全选) -</option>
{{foreach from=$houses item=item}}
<option value="{{$item.id}}" {{if $item.id == $data.house_id}}selected{{/if}}>{{$item.name}}</option>
{{/foreach}}
</select>
</div>
</div>
<div class="am-u-sm-12 am-u-md-3">
<div class="am-input-group am-input-group-sm">
<input type="text" class="am-form-field" name="uname" value="{{$data.uname}}">
<span class="am-input-group-btn">
<input type="submit" class="am-btn am-btn-default" value="搜索" />
</span>
</div>
</div>
</form>
</div>
<div class="am-g">
<div class="am-u-sm-12">
<table class="am-table am-table-striped am-table-hover table-main">
<thead>
<tr>
<th class="table-id">ID</th>
<th class="table-title">客户姓名</th>
<th class="table-title">客户电话</th>
<th class="table-title">楼盘</th>
<th class="table-title">房号</th>
<th class="table-title">面积</th>
<th class="table-title">总价</th>
<th class="table-title">业务员</th>
<th class="table-title">订购日期</th>
<th class="table-set">操作</th>
</tr>
</thead>
<tbody>
{{foreach from=$data.items key=key item=item}}
<tr>
<td>{{$item.id}}</td>
<td>{{$item.customer}}</td>
<td>{{$item.phone}}</td>
<td>{{$item.name}}</td>
<td>{{$item.house_no}}</td>
<td>{{$item.acreage}}</td>
<td>{{$item.total_price}}</td>
<td>{{$item.rel_name}}</td>
<td class="am-hide-sm-only">{{$item.date}}</td>
<td>
<div class="am-btn-toolbar">
<div class="am-btn-group am-btn-group-xs">
<button class="am-btn am-btn-default am-btn-xs am-text-secondary" onclick="javascript:location.href='{{site_url url='cw_brokerage/view_brokerage'}}/{{$item.id}}';"><span class="am-icon-pencil-square-o"></span> 查看</button>
</div>
</div>
</td>
</tr>
{{/foreach}}
</tbody>
</table>
<div class="am-cf">{{$pager}}</div>
</div>
</div>
</div>
<!-- content end -->
| binshen/oa | application/views/finance/list_brokerage.html | HTML | mit | 3,204 |
<div class="collapsibleregioninner" id="aera_core_competency_template_has_related_data_inner"><br/><div style="border:solid 1px #DEDEDE;background:#E2E0E0;
color:#222222;padding:4px;">Check if a template has related data</div><br/><br/><span style="color:#EA33A6">Arguments</span><br/><span style="font-size:80%"><b>id</b> (Required)<br/> The template id<br/><br/><div><div style="border:solid 1px #DEDEDE;background:#FFF1BC;color:#222222;padding:4px;"><pre><b>General structure</b><br/>
int <span style="color:#2A33A6"> <i>//The template id</i></span><br/>
</pre></div></div><div><div style="border:solid 1px #DEDEDE;background:#DFEEE7;color:#222222;padding:4px;"><pre><b>XML-RPC (PHP structure)</b><br/>
[id] => int
</pre></div></div><div><div style="border:solid 1px #DEDEDE;background:#FEEBE5;color:#222222;padding:4px;"><pre><b>REST (POST parameters)</b><br/>
id= int
</pre></div></div></span><br/><br/><span style="color:#EA33A6">Response</span><br/><span style="font-size:80%">True if the template has related data<br/><br/><div><div style="border:solid 1px #DEDEDE;background:#FFF1BC;color:#222222;padding:4px;"><pre><b>General structure</b><br/>
int <span style="color:#2A33A6"> <i>//True if the template has related data</i></span><br/>
</pre></div></div><div><div style="border:solid 1px #DEDEDE;background:#DFEEE7;color:#222222;padding:4px;"><pre><b>XML-RPC (PHP structure)</b><br/>
int
</pre></div></div><div><div style="border:solid 1px #DEDEDE;background:#FEEBE5;color:#222222;padding:4px;"><pre><b>REST</b><br/>
<?xml version="1.0" encoding="UTF-8" ?>
<RESPONSE>
<VALUE>int</VALUE>
</RESPONSE>
</pre></div></div></span><br/><br/><span style="color:#EA33A6">Error message</span><br/><br/><span style="font-size:80%"><div><div style="border:solid 1px #DEDEDE;background:#FEEBE5;color:#222222;padding:4px;"><pre><b>REST</b><br/>
<?xml version="1.0" encoding="UTF-8"?>
<EXCEPTION class="invalid_parameter_exception">
<MESSAGE>Invalid parameter value detected</MESSAGE>
<DEBUGINFO></DEBUGINFO>
</EXCEPTION>
</pre></div></div></span><br/><br/><span style="color:#EA33A6">Restricted to logged-in users<br/></span>Yes<br/><br/><span style="color:#EA33A6">Callable from AJAX<br/></span>Yes<br/><br/></div> | manly-man/moodle-destroyer-tools | docs/moodle_api_3.1/functions/core_competency_template_has_related_data.html | HTML | mit | 2,343 |
<table width="90%" border="0"><tr><td><script>function openfile(url) {fullwin = window.open(url, "fulltext", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes");}</script><div class="flayoutclass"><div class="flayoutclass_first"><table class="tableoutfmt2"><tr><th class="std1"><b>條目 </b></th><td class="std2">軟硬兼施</td></tr>
<tr><th class="std1"><b>注音 </b></th><td class="std2">ㄖㄨㄢ<sup class="subfont">ˇ</sup> |ㄥ<sup class="subfont">ˋ</sup> ㄐ|ㄢ ㄕ</td></tr>
<tr><th class="std1"><b>漢語拼音 </b></th><td class="std2"><font class="english_word">ruǎn yìng jiān shī</font></td></tr>
<tr><th class="std1"><b>釋義 </b></th><td class="std2">委婉和強硬的手段一齊用上。如:<img src=/cydic/dicword/fa40.gif border=0 alt=* class=fontimg valign=center>這次會議我方代表軟硬兼施,終於使對方代表讓步而達成協議。<img src=/cydic/dicword/fa41.gif border=0 alt=* class=fontimg valign=center></td></tr>
<tr><th class="std1"><b><font class="fltypefont">附錄</font> </b></th><td class="std2">修訂本參考資料</td></tr>
</td></tr></table></div> <!-- flayoutclass_first --><div class="flayoutclass_second"></div> <!-- flayoutclass_second --></div> <!-- flayoutclass --></td></tr></table>
| BuzzAcademy/idioms-moe-unformatted-data | all-data/10000-10999/10691-22.html | HTML | mit | 1,330 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>class RubyXL::VectorValue - rubyXL 3.4.21</title>
<script type="text/javascript">
var rdoc_rel_prefix = "../";
var index_rel_prefix = "../";
</script>
<script src="../js/navigation.js" defer></script>
<script src="../js/search.js" defer></script>
<script src="../js/search_index.js" defer></script>
<script src="../js/searcher.js" defer></script>
<script src="../js/darkfish.js" defer></script>
<link href="../css/fonts.css" rel="stylesheet">
<link href="../css/rdoc.css" rel="stylesheet">
<body id="top" role="document" class="class">
<nav role="navigation">
<div id="project-navigation">
<div id="home-section" role="region" title="Quick navigation" class="nav-section">
<h2>
<a href="../index.html" rel="home">Home</a>
</h2>
<div id="table-of-contents-navigation">
<a href="../table_of_contents.html#pages">Pages</a>
<a href="../table_of_contents.html#classes">Classes</a>
<a href="../table_of_contents.html#methods">Methods</a>
</div>
</div>
<div id="search-section" role="search" class="project-section initially-hidden">
<form action="#" method="get" accept-charset="utf-8">
<div id="search-field-wrapper">
<input id="search-field" role="combobox" aria-label="Search"
aria-autocomplete="list" aria-controls="search-results"
type="text" name="search" placeholder="Search" spellcheck="false"
title="Type to search, Up and Down to navigate, Enter to load">
</div>
<ul id="search-results" aria-label="Search Results"
aria-busy="false" aria-expanded="false"
aria-atomic="false" class="initially-hidden"></ul>
</form>
</div>
</div>
<div id="class-metadata">
<div id="parent-class-section" class="nav-section">
<h3>Parent</h3>
<p class="link">OOXMLObject
</div>
</div>
</nav>
<main role="main" aria-labelledby="class-RubyXL::VectorValue">
<h1 id="class-RubyXL::VectorValue" class="class">
class RubyXL::VectorValue
</h1>
<section class="description">
</section>
<section id="5Buntitled-5D" class="documentation-section">
</section>
</main>
<footer id="validator-badges" role="contentinfo">
<p><a href="https://validator.w3.org/check/referer">Validate</a>
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.4.0.
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
</footer>
| weshatheleopard/rubyXL | rdoc/RubyXL/VectorValue.html | HTML | mit | 2,534 |
{{define "header"}}
<head>
<title>Ulbora CMS V3 Admin</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<script type='text/javascript' src="/admin/js/popper.js"></script>
<script type='text/javascript' src="/admin/js/jquery-3.2.1.min.js"></script>
<script type='text/javascript' src="/admin/js/semantic.min.js"></script>
<script type='text/javascript' src="/admin/js/tinymce.min.js"></script>
<script type='text/javascript' src="/admin/js/custom.js"></script>
<script>
tinymce.init(
{
selector: '#content-area',
extended_valid_elements : 'button[onclick]',
// width: 600,
height: 300,
browser_spellcheck: true,
paste_data_images: true,
plugins: [
'advlist autolink link image lists charmap print preview hr anchor pagebreak spellchecker',
'searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media nonbreaking',
'save table contextmenu directionality emoticons template paste textcolor'
],
//content_css: 'css/content.css',
toolbar: [
'insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify' ,
'bullist numlist outdent indent | link image | print preview media fullpage',
'forecolor backcolor emoticons'
]
//toolbar: [
//'undo redo | styleselect | bold italic | link image',
// 'alignleft aligncenter alignright'
//]
}
);
</script>
<link rel="stylesheet" href="/admin/css/semantic.min.css">
<!-- <link rel="stylesheet" href="/admin/css/content.css"> -->
<link rel="stylesheet" href="/admin/css/style.css">
</head>
{{end}} | Ulbora/ulboracms | static/admin/header.html | HTML | mit | 2,022 |
<div lass="trials-container center-container" ng-controller="TimerCtrl">
<div class="row">
<div class="col-md-8">
<form name="logEntryForm" class="form-inline" ng-submit="createLog()">
<div class="form-group">
<input type="text" ng-model="newLog.description" class="form-control" placeholder="Description"/>
</div>
<div class="form-group">
<input type="text" ng-model="newLog.project_id" class="form-control" placeholder="Project"/>
</div>
<div class="form-group">
<input type="text" ng-model="newLog.time_seconds" class="form-control" value="0 sec"/>
</div>
<div class="form-group">
<input type="text" ng-model="newLog.time_from" class="form-control" placeholder="Description"/>
</div>
<div class="form-group">
<input type="text" ng-model="newLog.time_to" class="form-control" placeholder="Description"/>
</div>
<div class="checkbox">
<label>
<input ng-model="newLog.billable" type="checkbox"/>
</label>
</div>
<input type="submit" class="btn btn-success" value="Start"/>
</form>
</div>
</div>
<div class="row">
<table class="table">
<tbody>
<tr ng-repeat="log in logs">
<td><input type="checkbox"/></td>
<td>{{log.description}}</td>
<td>{{log.project_id}}</td>
<td>{{log.time_seconds}}</td>
<td>{{log.time_from | date: 'shortTime' }} : {{log.time_to | date: 'shortTime'}}</td>
</tr>
</tbody>
</table>
</div>
</div>
| epintos/wogger | src/app/timer/timer.tpl.html | HTML | mit | 1,567 |
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Athletik | Volleyball</title>
<meta name="description" content="Athletik | Volleyballübungen" />
<meta name="generator" content="bookdown 0.14 and GitBook 2.6.7" />
<meta property="og:title" content="Athletik | Volleyball" />
<meta property="og:type" content="book" />
<meta property="og:description" content="Athletik | Volleyballübungen" />
<meta name="github-repo" content="wolfganglederer/Volleyball" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Athletik | Volleyball" />
<meta name="twitter:description" content="Athletik | Volleyballübungen" />
<meta name="author" content="Wolfgang Lederer" />
<meta name="date" content="2019-11-03" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link rel="prev" href="warm-up.html"/>
<link rel="next" href="einspielen.html"/>
<script src="libs/jquery-2.2.3/jquery.min.js"></script>
<link href="libs/gitbook-2.6.7/css/style.css" rel="stylesheet" />
<link href="libs/gitbook-2.6.7/css/plugin-table.css" rel="stylesheet" />
<link href="libs/gitbook-2.6.7/css/plugin-bookdown.css" rel="stylesheet" />
<link href="libs/gitbook-2.6.7/css/plugin-highlight.css" rel="stylesheet" />
<link href="libs/gitbook-2.6.7/css/plugin-search.css" rel="stylesheet" />
<link href="libs/gitbook-2.6.7/css/plugin-fontsettings.css" rel="stylesheet" />
<link href="libs/gitbook-2.6.7/css/plugin-clipboard.css" rel="stylesheet" />
<link rel="stylesheet" href="style.css" type="text/css" />
</head>
<body>
<div class="book without-animation with-summary font-size-2 font-family-1" data-basepath=".">
<div class="book-summary">
<nav role="navigation">
<ul class="summary">
<li><a href="./">Volleyballübungen</a></li>
<li class="divider"></li>
<li class="chapter" data-level="" data-path="index.html"><a href="index.html"><i class="fa fa-check"></i>Volleyballübungen</a></li>
<li class="chapter" data-level="" data-path="warm-up.html"><a href="warm-up.html"><i class="fa fa-check"></i>Warm Up</a><ul>
<li class="chapter" data-level="" data-path="warm-up.html"><a href="warm-up.html#spielformen"><i class="fa fa-check"></i>Spielformen</a><ul>
<li class="chapter" data-level="" data-path="warm-up.html"><a href="warm-up.html#ausbaggern"><i class="fa fa-check"></i>Ausbaggern</a></li>
<li class="chapter" data-level="" data-path="warm-up.html"><a href="warm-up.html#four-square"><i class="fa fa-check"></i>Four-Square</a></li>
</ul></li>
<li class="chapter" data-level="" data-path="warm-up.html"><a href="warm-up.html#ubungen"><i class="fa fa-check"></i>Übungen</a><ul>
<li class="chapter" data-level="" data-path="warm-up.html"><a href="warm-up.html#spielen-mit-nachlaufen"><i class="fa fa-check"></i>Spielen mit Nachlaufen</a></li>
<li class="chapter" data-level="" data-path="warm-up.html"><a href="warm-up.html#spielen-mit-nachlaufen-diagonal"><i class="fa fa-check"></i>Spielen mit Nachlaufen Diagonal</a></li>
<li class="chapter" data-level="" data-path="warm-up.html"><a href="warm-up.html#paralell-spielen-und-position-wechseln"><i class="fa fa-check"></i>Paralell Spielen und Position wechseln</a></li>
<li class="chapter" data-level="" data-path="warm-up.html"><a href="warm-up.html#spielen-im-dreieck-mit-laufen"><i class="fa fa-check"></i>Spielen im Dreieck mit laufen</a></li>
</ul></li>
<li class="chapter" data-level="" data-path="warm-up.html"><a href="warm-up.html#ohne-ball"><i class="fa fa-check"></i>Ohne Ball</a><ul>
<li class="chapter" data-level="" data-path="warm-up.html"><a href="warm-up.html#knie-beruhren"><i class="fa fa-check"></i>Knie Berühren</a></li>
<li class="chapter" data-level="" data-path="warm-up.html"><a href="warm-up.html#ball-ubers-netz"><i class="fa fa-check"></i>Ball übers Netz</a></li>
</ul></li>
</ul></li>
<li class="chapter" data-level="" data-path="athletik.html"><a href="athletik.html"><i class="fa fa-check"></i>Athletik</a></li>
<li class="chapter" data-level="" data-path="einspielen.html"><a href="einspielen.html"><i class="fa fa-check"></i>Einspielen</a><ul>
<li class="chapter" data-level="" data-path="einspielen.html"><a href="einspielen.html#paarweise"><i class="fa fa-check"></i>Paarweise</a><ul>
<li class="chapter" data-level="" data-path="einspielen.html"><a href="einspielen.html#angriff-mit-nachwerfen"><i class="fa fa-check"></i>Angriff mit Nachwerfen</a></li>
<li class="chapter" data-level="" data-path="einspielen.html"><a href="einspielen.html#ball-ins-gesicht"><i class="fa fa-check"></i>Ball ins Gesicht</a></li>
<li class="chapter" data-level="" data-path="einspielen.html"><a href="einspielen.html#werfen-mit-3-ballen"><i class="fa fa-check"></i>Werfen mit 3 Bällen</a></li>
<li class="chapter" data-level="" data-path="einspielen.html"><a href="einspielen.html#abwehr-mit-drei-ballen"><i class="fa fa-check"></i>Abwehr mit drei Bällen</a></li>
<li class="chapter" data-level="" data-path="einspielen.html"><a href="einspielen.html#kurz-lang-kurz"><i class="fa fa-check"></i>Kurz, lang, kurz</a></li>
<li class="chapter" data-level="" data-path="einspielen.html"><a href="einspielen.html#lang-mitte-kurz"><i class="fa fa-check"></i>Lang, Mitte, Kurz</a></li>
<li class="chapter" data-level="" data-path="einspielen.html"><a href="einspielen.html#lang-kurz"><i class="fa fa-check"></i>Lang, kurz</a></li>
<li class="chapter" data-level="" data-path="einspielen.html"><a href="einspielen.html#zuspiel-im-sprung"><i class="fa fa-check"></i>Zuspiel im Sprung</a></li>
<li class="chapter" data-level="" data-path="einspielen.html"><a href="einspielen.html#zwischenspiel"><i class="fa fa-check"></i>Zwischenspiel</a></li>
<li class="chapter" data-level="" data-path="einspielen.html"><a href="einspielen.html#abwehr-zuspiel-angriff"><i class="fa fa-check"></i>Abwehr-Zuspiel-Angriff</a></li>
</ul></li>
<li class="chapter" data-level="" data-path="einspielen.html"><a href="einspielen.html#zu-dritt"><i class="fa fa-check"></i>Zu Dritt</a><ul>
<li class="chapter" data-level="" data-path="einspielen.html"><a href="einspielen.html#russiche-abwehrubung"><i class="fa fa-check"></i>Russiche Abwehrübung</a></li>
<li class="chapter" data-level="" data-path="einspielen.html"><a href="einspielen.html#zuspiel-aus-der-mitte"><i class="fa fa-check"></i>Zuspiel aus der Mitte</a></li>
</ul></li>
<li class="chapter" data-level="" data-path="einspielen.html"><a href="einspielen.html#koordination"><i class="fa fa-check"></i>Koordination</a><ul>
<li class="chapter" data-level="" data-path="einspielen.html"><a href="einspielen.html#parallel-spielen-mit-2-ballen"><i class="fa fa-check"></i>Parallel spielen mit 2 Bällen</a></li>
<li class="chapter" data-level="" data-path="einspielen.html"><a href="einspielen.html#spiel-mit-3-ballen"><i class="fa fa-check"></i>Spiel mit 3 Bällen</a></li>
<li class="chapter" data-level="" data-path="einspielen.html"><a href="einspielen.html#ein-spieler-2-balle"><i class="fa fa-check"></i>Ein Spieler 2 Bälle</a></li>
<li class="chapter" data-level="" data-path="einspielen.html"><a href="einspielen.html#drei-spieler-4-balle"><i class="fa fa-check"></i>Drei Spieler 4 Bälle</a></li>
<li class="chapter" data-level="" data-path="einspielen.html"><a href="einspielen.html#zwei-gegen-zwei-mit-3-ballen"><i class="fa fa-check"></i>Zwei gegen Zwei mit 3 Bällen</a></li>
</ul></li>
<li class="chapter" data-level="" data-path="einspielen.html"><a href="einspielen.html#mit-tennisballen"><i class="fa fa-check"></i>Mit Tennisbällen</a><ul>
<li class="chapter" data-level="" data-path="einspielen.html"><a href="einspielen.html#ball-gegen-die-wand"><i class="fa fa-check"></i>Ball gegen die Wand</a></li>
<li class="chapter" data-level="" data-path="einspielen.html"><a href="einspielen.html#ball-gegen-die-wand-ii"><i class="fa fa-check"></i>Ball gegen die Wand II</a></li>
</ul></li>
<li class="chapter" data-level="" data-path="einspielen.html"><a href="einspielen.html#agility-ladder"><i class="fa fa-check"></i>Agility Ladder</a></li>
<li class="chapter" data-level="" data-path="einspielen.html"><a href="einspielen.html#reaction-ball"><i class="fa fa-check"></i>Reaction Ball</a></li>
</ul></li>
<li class="chapter" data-level="" data-path="angriff.html"><a href="angriff.html"><i class="fa fa-check"></i>Angriff</a><ul>
<li class="chapter" data-level="" data-path="angriff.html"><a href="angriff.html#technik"><i class="fa fa-check"></i>Technik</a></li>
</ul></li>
<li class="chapter" data-level="" data-path="block.html"><a href="block.html"><i class="fa fa-check"></i>Block</a><ul>
<li class="chapter" data-level="" data-path="block.html"><a href="block.html#ball-am-netz-ubergeben"><i class="fa fa-check"></i>Ball am Netz übergeben</a></li>
<li class="chapter" data-level="" data-path="block.html"><a href="block.html#einschlagen-mit-block"><i class="fa fa-check"></i>Einschlagen mit Block</a></li>
<li class="chapter" data-level="" data-path="block.html"><a href="block.html#angriff-in-den-block"><i class="fa fa-check"></i>Angriff in den Block</a></li>
<li class="chapter" data-level="" data-path="block.html"><a href="block.html#block-gegen-drei-angreifer"><i class="fa fa-check"></i>Block gegen drei Angreifer</a></li>
</ul></li>
<li class="chapter" data-level="" data-path="annahme.html"><a href="annahme.html"><i class="fa fa-check"></i>Annahme</a><ul>
<li class="chapter" data-level="" data-path="annahme.html"><a href="annahme.html#schone-annahmen"><i class="fa fa-check"></i>Schöne Annahmen</a></li>
<li class="chapter" data-level="" data-path="annahme.html"><a href="annahme.html#schnelle-beine"><i class="fa fa-check"></i>Schnelle Beine</a></li>
<li class="chapter" data-level="" data-path="annahme.html"><a href="annahme.html#annahme-mit-aktion"><i class="fa fa-check"></i>Annahme mit Aktion</a></li>
</ul></li>
<li class="chapter" data-level="" data-path="abwehr.html"><a href="abwehr.html"><i class="fa fa-check"></i>Abwehr</a><ul>
<li class="chapter" data-level="" data-path="abwehr.html"><a href="abwehr.html#abwehr-ausdauerdrill"><i class="fa fa-check"></i>Abwehr Ausdauerdrill</a></li>
<li class="chapter" data-level="" data-path="abwehr.html"><a href="abwehr.html#langer-ball"><i class="fa fa-check"></i>Langer Ball</a></li>
<li class="chapter" data-level="" data-path="abwehr.html"><a href="abwehr.html#abwehr-verschieben"><i class="fa fa-check"></i>Abwehr verschieben</a></li>
<li class="chapter" data-level="" data-path="abwehr.html"><a href="abwehr.html#abwehr-reaktion"><i class="fa fa-check"></i>Abwehr & Reaktion</a></li>
<li class="chapter" data-level="" data-path="abwehr.html"><a href="abwehr.html#dankeball-mit-laufen"><i class="fa fa-check"></i>Dankeball mit laufen</a></li>
<li class="chapter" data-level="" data-path="abwehr.html"><a href="abwehr.html#abwehr-zu-dritt"><i class="fa fa-check"></i>Abwehr zu dritt</a></li>
<li class="chapter" data-level="" data-path="abwehr.html"><a href="abwehr.html#abwehr-kette"><i class="fa fa-check"></i>Abwehr-Kette</a></li>
</ul></li>
<li class="chapter" data-level="" data-path="zuspiel.html"><a href="zuspiel.html"><i class="fa fa-check"></i>Zuspiel</a><ul>
<li class="chapter" data-level="" data-path="zuspiel.html"><a href="zuspiel.html#zielspiel-auf-ein-ziel"><i class="fa fa-check"></i>Zielspiel auf ein Ziel</a></li>
<li class="chapter" data-level="" data-path="zuspiel.html"><a href="zuspiel.html#links"><i class="fa fa-check"></i>Links</a></li>
</ul></li>
<li class="chapter" data-level="" data-path="komplex.html"><a href="komplex.html"><i class="fa fa-check"></i>Komplex</a><ul>
<li class="chapter" data-level="" data-path="komplex.html"><a href="komplex.html#diagonalspiel"><i class="fa fa-check"></i>Diagonalspiel</a></li>
<li class="chapter" data-level="" data-path="komplex.html"><a href="komplex.html#kreisel"><i class="fa fa-check"></i>Kreisel</a><ul>
<li class="chapter" data-level="" data-path="komplex.html"><a href="komplex.html#vierer-kreisel"><i class="fa fa-check"></i>Vierer Kreisel</a></li>
<li class="chapter" data-level="" data-path="komplex.html"><a href="komplex.html#funfer-kreisel"><i class="fa fa-check"></i>Fünfer Kreisel</a></li>
<li class="chapter" data-level="" data-path="komplex.html"><a href="komplex.html#sechser-kreisel"><i class="fa fa-check"></i>Sechser Kreisel</a></li>
<li class="chapter" data-level="" data-path="komplex.html"><a href="komplex.html#achter-kreisel"><i class="fa fa-check"></i>Achter Kreisel</a></li>
</ul></li>
<li class="chapter" data-level="" data-path="komplex.html"><a href="komplex.html#vier-ecken"><i class="fa fa-check"></i>Vier Ecken</a></li>
<li class="chapter" data-level="" data-path="komplex.html"><a href="komplex.html#diagonal-angriff-mit-nachlaufen"><i class="fa fa-check"></i>Diagonal Angriff mit Nachlaufen</a></li>
<li class="chapter" data-level="" data-path="komplex.html"><a href="komplex.html#longline-pritschen-diagonal-baggern-mit-nachlaufen"><i class="fa fa-check"></i>Longline Pritschen, diagonal Baggern mit Nachlaufen</a></li>
</ul></li>
<li class="chapter" data-level="" data-path="positionen.html"><a href="positionen.html"><i class="fa fa-check"></i>Positionen</a><ul>
<li class="chapter" data-level="" data-path="positionen.html"><a href="positionen.html#aufstellung"><i class="fa fa-check"></i>Aufstellung</a></li>
</ul></li>
<li class="chapter" data-level="" data-path="links-1.html"><a href="links-1.html"><i class="fa fa-check"></i>Links</a></li>
<li class="chapter" data-level="" data-path="references.html"><a href="references.html"><i class="fa fa-check"></i>References</a></li>
<li class="divider"></li>
<li><a href="https://github.com/rstudio/bookdown" target="blank">Published with bookdown</a></li>
</ul>
</nav>
</div>
<div class="book-body">
<div class="body-inner">
<div class="book-header" role="navigation">
<h1>
<i class="fa fa-circle-o-notch fa-spin"></i><a href="./">Volleyball</a>
</h1>
</div>
<div class="page-wrapper" tabindex="-1" role="main">
<div class="page-inner">
<section class="normal" id="section-">
<div id="athletik" class="section level1">
<h1>Athletik</h1>
<iframe src="https://www.youtube.com/embed/WPDmgyEvR-Q" width="672" height="400px">
</iframe>
<iframe src="https://www.youtube.com/embed/zpEUJ7BIMpM" width="672" height="400px">
</iframe>
</div>
</section>
</div>
</div>
</div>
<a href="warm-up.html" class="navigation navigation-prev " aria-label="Previous page"><i class="fa fa-angle-left"></i></a>
<a href="einspielen.html" class="navigation navigation-next " aria-label="Next page"><i class="fa fa-angle-right"></i></a>
</div>
</div>
<script src="libs/gitbook-2.6.7/js/app.min.js"></script>
<script src="libs/gitbook-2.6.7/js/lunr.js"></script>
<script src="libs/gitbook-2.6.7/js/clipboard.min.js"></script>
<script src="libs/gitbook-2.6.7/js/plugin-search.js"></script>
<script src="libs/gitbook-2.6.7/js/plugin-sharing.js"></script>
<script src="libs/gitbook-2.6.7/js/plugin-fontsettings.js"></script>
<script src="libs/gitbook-2.6.7/js/plugin-bookdown.js"></script>
<script src="libs/gitbook-2.6.7/js/jquery.highlight.js"></script>
<script src="libs/gitbook-2.6.7/js/plugin-clipboard.js"></script>
<script>
gitbook.require(["gitbook"], function(gitbook) {
gitbook.start({
"sharing": {
"github": false,
"facebook": true,
"twitter": true,
"google": false,
"linkedin": false,
"weibo": false,
"instapaper": false,
"vk": false,
"all": ["facebook", "google", "twitter", "linkedin", "weibo", "instapaper"]
},
"fontsettings": {
"theme": "white",
"family": "sans",
"size": 2
},
"edit": {
"link": "https://github.com/wolfganglederer/Volleyball/edit/master/01-warmup.Rmd",
"text": "Edit"
},
"history": {
"link": null,
"text": null
},
"download": ["Volleyball.pdf", "Volleyball.epub"],
"toc": {
"collapse": "section"
}
});
});
</script>
</body>
</html>
| wolfganglederer/Volleyball | docs/athletik.html | HTML | mit | 16,203 |
<html xmlns:string="xalan://java.lang.String" xmlns:lxslt="http://xml.apache.org/xslt">
<head>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Standard Output from DoubleInsideTest</title>
</head>
<body>
<pre>DoubleInsideTest.testComparableInsideFailNoMessage: Double 'valueA'(0.123) is inside Double range [0.122;0.124].
DoubleInsideTest.testComparableInsideFailComparableMax: Double 'valueA'(1.7976931348623157E308) is inside Double range [1.7976931348623157E308;1.7976931348623157E308]. Extra info goes here.
DoubleInsideTest.testComparableInsideFailComparableMin: Double 'valueA'(4.9E-324) is inside Double range [4.9E-324;4.9E-324].
DoubleInsideTest.testComparableInsideFailMessage: Double 'valueA'(0.123) is inside Double range [0.124;0.122]. Extra info goes here.
</pre>
</body>
</html>
| KeldOelykke/FailFast | Java/Web/war/releases/1.3/unit/starkcoder/failfast/unit/objects/doubles/69_DoubleInsideTest-out.html | HTML | mit | 821 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>WebApp</title>
<base href="/" />
<link href="css/bootstrap/bootstrap.min.css" rel="stylesheet" />
<link href="css/app.css" rel="stylesheet" />
<link href="WebApp.Client.styles.css" rel="stylesheet" />
<link href="manifest.json" rel="manifest" />
<link rel="apple-touch-icon" sizes="512x512" href="icon-512.png" />
</head>
<body>
<div id="app">Loading...</div>
<div id="blazor-error-ui">
An unhandled error has occurred.
<a href="" class="reload">Reload</a>
<a class="dismiss">🗙</a>
</div>
<script src="_framework/blazor.webassembly.js"></script>
<script>navigator.serviceWorker.register('service-worker.js');</script>
</body>
</html>
| mkjeff/secs4net | samples/WebApp/Client/wwwroot/index.html | HTML | mit | 921 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.6.0_18) on Thu Dec 18 17:18:43 PST 2014 -->
<title>Uses of Class org.xml.sax.helpers.ParserFactory (Java Platform SE 7 )</title>
<meta name="date" content="2014-12-18">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.xml.sax.helpers.ParserFactory (Java Platform SE 7 )";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../org/xml/sax/helpers/ParserFactory.html" title="class in org.xml.sax.helpers">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><em><strong>Java™ Platform<br>Standard Ed. 7</strong></em></div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/xml/sax/helpers/class-use/ParserFactory.html" target="_top">Frames</a></li>
<li><a href="ParserFactory.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class org.xml.sax.helpers.ParserFactory" class="title">Uses of Class<br>org.xml.sax.helpers.ParserFactory</h2>
</div>
<div class="classUseContainer">No usage of org.xml.sax.helpers.ParserFactory</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../org/xml/sax/helpers/ParserFactory.html" title="class in org.xml.sax.helpers">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><em><strong>Java™ Platform<br>Standard Ed. 7</strong></em></div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/xml/sax/helpers/class-use/ParserFactory.html" target="_top">Frames</a></li>
<li><a href="ParserFactory.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small><font size="-1"> <a href="http://bugreport.sun.com/bugreport/">Submit a bug or feature</a> <br>For further API reference and developer documentation, see <a href="http://docs.oracle.com/javase/7/docs/index.html" target="_blank">Java SE Documentation</a>. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.<br> <a href="../../../../../../legal/cpyr.html">Copyright</a> © 1993, 2015, Oracle and/or its affiliates. All rights reserved. </font></small></p>
</body>
</html>
| fbiville/annotation-processing-ftw | doc/java/jdk7/org/xml/sax/helpers/class-use/ParserFactory.html | HTML | mit | 4,981 |
---
layout: default
---
{% assign minutes = content | number_of_words | divided_by: 180 %}
{% if minutes == 0 %}
{% assign minutes = 1 %}
{% endif %}
<div class="post-header mb2">
<h2>{{ page.title }}</h2>
<span class="post-meta">{{ page.date | date: "%b %-d, %Y" }}</span><br>
{% if page.update_date %}
<span class="post-meta">Updated: {{ page.update_date | date: "%b %-d, %Y" }}</span><br>
{% endif %}
<span class="post-meta small">
{% if page.minutes %}
{{ page.minutes }} minute read
{% else %}
{{ minutes }} minute read
{% endif %}
</span>
</div>
<article class="post-content">
{{ content }}
</article>
{% if site.show_sharing_icons %}
{% include share_buttons.html %}
{% endif %}
{% if site.show_post_footers %}
{% include post_footer.html %}
{% endif %}
{% if site.disqus_shortname %}
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_shortname = '{{ site.disqus_shortname }}';
var disqus_identifier = '{{ page.id }}';
var disqus_title = '{{ post.title }}';
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
{% endif %}
{% if site.show_related_posts %}
<h3 class="related-post-title">Related Posts</h3>
{% for post in site.related_posts %}
<div class="post ml2">
<a href="{{ post.url | prepend: site.baseurl }}" class="post-link">
<h4 class="post-title">{{ post.title }}</h4>
<p class="post-summary">{{ post.summary }}</p>
</a>
</div>
{% endfor %}
{% endif %}
| chufuxi/chufuxi.github.com | _layouts/post.html | HTML | mit | 1,900 |
<!DOCTYPE html>
<!--[if lt IE 9]><html class="no-js lt-ie9" lang="en" dir="ltr"><![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js" lang="en" dir="ltr">
<!--<![endif]-->
<!-- Usage: /eic/site/ccc-rec.nsf/tpl-eng/template-1col.html?Open&id=3 (optional: ?Open&page=filename.html&id=x) -->
<!-- Created: ; Product Code: 536; Server: stratnotes2.ic.gc.ca -->
<head>
<!-- Title begins / Début du titre -->
<title>
Spartan Industrial Marine -
Complete profile - Canadian Company Capabilities - Industries and Business - Industry Canada
</title>
<!-- Title ends / Fin du titre -->
<!-- Meta-data begins / Début des métadonnées -->
<meta charset="utf-8" />
<meta name="dcterms.language" title="ISO639-2" content="eng" />
<meta name="dcterms.title" content="" />
<meta name="description" content="" />
<meta name="dcterms.description" content="" />
<meta name="dcterms.type" content="report, data set" />
<meta name="dcterms.subject" content="businesses, industry" />
<meta name="dcterms.subject" content="businesses, industry" />
<meta name="dcterms.issued" title="W3CDTF" content="" />
<meta name="dcterms.modified" title="W3CDTF" content="" />
<meta name="keywords" content="" />
<meta name="dcterms.creator" content="" />
<meta name="author" content="" />
<meta name="dcterms.created" title="W3CDTF" content="" />
<meta name="dcterms.publisher" content="" />
<meta name="dcterms.audience" title="icaudience" content="" />
<meta name="dcterms.spatial" title="ISO3166-1" content="" />
<meta name="dcterms.spatial" title="gcgeonames" content="" />
<meta name="dcterms.format" content="HTML" />
<meta name="dcterms.identifier" title="ICsiteProduct" content="536" />
<!-- EPI-11240 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- MCG-202 -->
<meta content="width=device-width,initial-scale=1" name="viewport">
<!-- EPI-11567 -->
<meta name = "format-detection" content = "telephone=no">
<!-- EPI-12603 -->
<meta name="robots" content="noarchive">
<!-- EPI-11190 - Webtrends -->
<script>
var startTime = new Date();
startTime = startTime.getTime();
</script>
<!--[if gte IE 9 | !IE ]><!-->
<link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="icon" type="image/x-icon">
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/wet-boew.min.css">
<!--<![endif]-->
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/theme.min.css">
<!--[if lt IE 9]>
<link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="shortcut icon" />
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/ie8-wet-boew.min.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew.min.js"></script>
<![endif]-->
<!--[if lte IE 9]>
<![endif]-->
<noscript><link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/noscript.min.css" /></noscript>
<!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER -->
<script>dataLayer1 = [];</script>
<!-- End Google Tag Manager -->
<!-- EPI-11235 -->
<link rel="stylesheet" href="/eic/home.nsf/css/add_WET_4-0_Canada_Apps.css">
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<link href="/app/ccc/srch/css/print.css" media="print" rel="stylesheet" type="text/css" />
</head>
<body class="home" vocab="http://schema.org/" typeof="WebPage">
<!-- EPIC HEADER BEGIN -->
<!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER -->
<noscript><iframe title="Google Tag Manager" src="//www.googletagmanager.com/ns.html?id=GTM-TLGQ9K" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer1'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer1','GTM-TLGQ9K');</script>
<!-- End Google Tag Manager -->
<!-- EPI-12801 -->
<span typeof="Organization"><meta property="legalName" content="Department_of_Industry"></span>
<ul id="wb-tphp">
<li class="wb-slc">
<a class="wb-sl" href="#wb-cont">Skip to main content</a>
</li>
<li class="wb-slc visible-sm visible-md visible-lg">
<a class="wb-sl" href="#wb-info">Skip to "About this site"</a>
</li>
</ul>
<header role="banner">
<div id="wb-bnr" class="container">
<section id="wb-lng" class="visible-md visible-lg text-right">
<h2 class="wb-inv">Language selection</h2>
<div class="row">
<div class="col-md-12">
<ul class="list-inline mrgn-bttm-0">
<li><a href="nvgt.do?V_TOKEN=1492320339451&V_SEARCH.docsCount=3&V_DOCUMENT.docRank=43177&V_SEARCH.docsStart=43176&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=/prfl.do&lang=fra&redirectUrl=/app/scr/imbs/ccc/rgstrtn/rgstr.sec?_flId?_flxKy=e1s1&estblmntNo=234567041301&profileId=61&_evId=bck&lang=eng&V_SEARCH.showStricts=false&prtl=1&_flId?_flId?_flxKy=e1s1" title="Français" lang="fr">Français</a></li>
</ul>
</div>
</div>
</section>
<div class="row">
<div class="brand col-xs-8 col-sm-9 col-md-6">
<a href="http://www.canada.ca/en/index.html"><object type="image/svg+xml" tabindex="-1" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/sig-blk-en.svg"></object><span class="wb-inv"> Government of Canada</span></a>
</div>
<section class="wb-mb-links col-xs-4 col-sm-3 visible-sm visible-xs" id="wb-glb-mn">
<h2>Search and menus</h2>
<ul class="list-inline text-right chvrn">
<li><a href="#mb-pnl" title="Search and menus" aria-controls="mb-pnl" class="overlay-lnk" role="button"><span class="glyphicon glyphicon-search"><span class="glyphicon glyphicon-th-list"><span class="wb-inv">Search and menus</span></span></span></a></li>
</ul>
<div id="mb-pnl"></div>
</section>
<!-- Site Search Removed -->
</div>
</div>
<nav role="navigation" id="wb-sm" class="wb-menu visible-md visible-lg" data-trgt="mb-pnl" data-ajax-fetch="//cdn.canada.ca/gcweb-cdn-dev/sitemenu/sitemenu-en.html" typeof="SiteNavigationElement">
<h2 class="wb-inv">Topics menu</h2>
<div class="container nvbar">
<div class="row">
<ul class="list-inline menu">
<li><a href="https://www.canada.ca/en/services/jobs.html">Jobs</a></li>
<li><a href="http://www.cic.gc.ca/english/index.asp">Immigration</a></li>
<li><a href="https://travel.gc.ca/">Travel</a></li>
<li><a href="https://www.canada.ca/en/services/business.html">Business</a></li>
<li><a href="https://www.canada.ca/en/services/benefits.html">Benefits</a></li>
<li><a href="http://healthycanadians.gc.ca/index-eng.php">Health</a></li>
<li><a href="https://www.canada.ca/en/services/taxes.html">Taxes</a></li>
<li><a href="https://www.canada.ca/en/services.html">More services</a></li>
</ul>
</div>
</div>
</nav>
<!-- EPIC BODY BEGIN -->
<nav role="navigation" id="wb-bc" class="" property="breadcrumb">
<h2 class="wb-inv">You are here:</h2>
<div class="container">
<div class="row">
<ol class="breadcrumb">
<li><a href="/eic/site/icgc.nsf/eng/home" title="Home">Home</a></li>
<li><a href="/eic/site/icgc.nsf/eng/h_07063.html" title="Industries and Business">Industries and Business</a></li>
<li><a href="/eic/site/ccc-rec.nsf/tpl-eng/../eng/home" >Canadian Company Capabilities</a></li>
</ol>
</div>
</div>
</nav>
</header>
<main id="wb-cont" role="main" property="mainContentOfPage" class="container">
<!-- End Header -->
<!-- Begin Body -->
<!-- Begin Body Title -->
<!-- End Body Title -->
<!-- Begin Body Head -->
<!-- End Body Head -->
<!-- Begin Body Content -->
<br>
<!-- Complete Profile -->
<!-- Company Information above tabbed area-->
<input id="showMore" type="hidden" value='more'/>
<input id="showLess" type="hidden" value='less'/>
<h1 id="wb-cont">
Company profile - Canadian Company Capabilities
</h1>
<div class="profileInfo hidden-print">
<ul class="list-inline">
<li><a href="cccSrch.do?lang=eng&profileId=&prtl=1&key.hitsPerPage=25&searchPage=%252Fapp%252Fccc%252Fsrch%252FcccBscSrch.do%253Flang%253Deng%2526amp%253Bprtl%253D1%2526amp%253Btagid%253D&V_SEARCH.scopeCategory=CCC.Root&V_SEARCH.depth=1&V_SEARCH.showStricts=false&V_SEARCH.sortSpec=title+asc&rstBtn.x=" class="btn btn-link">New Search</a> |</li>
<li><form name="searchForm" method="post" action="/app/ccc/srch/bscSrch.do">
<input type="hidden" name="lang" value="eng" />
<input type="hidden" name="profileId" value="" />
<input type="hidden" name="prtl" value="1" />
<input type="hidden" name="searchPage" value="%2Fapp%2Fccc%2Fsrch%2FcccBscSrch.do%3Flang%3Deng%26amp%3Bprtl%3D1%26amp%3Btagid%3D" />
<input type="hidden" name="V_SEARCH.scopeCategory" value="CCC.Root" />
<input type="hidden" name="V_SEARCH.depth" value="1" />
<input type="hidden" name="V_SEARCH.showStricts" value="false" />
<input id="repeatSearchBtn" class="btn btn-link" type="submit" value="Return to search results" />
</form></li>
<li>| <a href="nvgt.do?V_SEARCH.docsStart=43175&V_DOCUMENT.docRank=43176&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492320346292&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=234567003938&profileId=&key.newSearchLabel=">Previous Company</a></li>
<li>| <a href="nvgt.do?V_SEARCH.docsStart=43177&V_DOCUMENT.docRank=43178&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492320346292&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=330290340000&profileId=&key.newSearchLabel=">Next Company</a></li>
</ul>
</div>
<details>
<summary>Third-Party Information Liability Disclaimer</summary>
<p>Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.</p>
</details>
<h2>
Spartan Industrial Marine
</h2>
<div class="row">
<div class="col-md-5">
<h2 class="h5 mrgn-bttm-0">Legal/Operating Name:</h2>
<p>Spartan Industrial Marine</p>
<div class="mrgn-tp-md"></div>
<p class="mrgn-bttm-0" ><a href="http://www.spartanmarine.ca"
target="_blank" title="Website URL">http://www.spartanmarine.ca</a></p>
<p><a href="mailto:info@spartanmarine.ca" title="info@spartanmarine.ca">info@spartanmarine.ca</a></p>
</div>
<div class="col-md-4 mrgn-sm-sm">
<h2 class="h5 mrgn-bttm-0">Mailing Address:</h2>
<address class="mrgn-bttm-md">
120 Thornhill Dr.<br/>
DARTMOUTH,
Nova Scotia<br/>
B3B 1S3
<br/>
</address>
<h2 class="h5 mrgn-bttm-0">Location Address:</h2>
<address class="mrgn-bttm-md">
120 Thornhill Dr.<br/>
DARTMOUTH,
Nova Scotia<br/>
B3B 1S3
<br/>
</address>
<p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>:
(902) 468-2111
</p>
<p class="mrgn-bttm-lg"><abbr title="Facsimile">Fax</abbr>:
(902) 468-3077</p>
</div>
<div class="col-md-3 mrgn-tp-md">
</div>
</div>
<div class="row mrgn-tp-md mrgn-bttm-md">
<div class="col-md-12">
<h2 class="wb-inv">Company Profile</h2>
<br> Full range supplier of marine and industrial products .Products and services include ,marine safety equipment sales and service , rigging hardware and equipment ,inspection of rigging equipment ,Commerial fishing supplies ,Commerial fishing net repair and manufacture .<br>
</div>
</div>
<!-- <div class="wb-tabs ignore-session update-hash wb-eqht-off print-active"> -->
<div class="wb-tabs ignore-session">
<div class="tabpanels">
<details id="details-panel1">
<summary>
Full profile
</summary>
<!-- Tab 1 -->
<h2 class="wb-invisible">
Full profile
</h2>
<!-- Contact Information -->
<h3 class="page-header">
Contact information
</h3>
<section class="container-fluid">
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Paul
Johnston
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
General Manager
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Management Executive.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(902) 468-2111
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Ext:
</strong>
</div>
<div class="col-md-7">
240
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(902) 468-3077
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
pjohnston@spartanmarine.ca
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Lisa
Caron
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
Manager
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Management Executive.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(902) 468-2111
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Ext:
</strong>
</div>
<div class="col-md-7">
225
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(902) 468-3077
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
lcaron@spartanmarine.ca
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Ron
Scott
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
Manager
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(902) 468-2111
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(902) 468-3077
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
rscott@spartanmarine.ca
</div>
</div>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Company Description -->
<h3 class="page-header">
Company description
</h3>
<section class="container-fluid">
<div class="row">
<div class="col-md-5">
<strong>
Country of Ownership:
</strong>
</div>
<div class="col-md-7">
Canada
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Year Established:
</strong>
</div>
<div class="col-md-7">
1983
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Exporting:
</strong>
</div>
<div class="col-md-7">
No
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Industry (NAICS):
</strong>
</div>
<div class="col-md-7">
417230 - Industrial Machinery, Equipment and Supplies Wholesaler-Distributors
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Trading House / Wholesaler / Agent and Distributor
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Number of Employees:
</strong>
</div>
<div class="col-md-7">
10
</div>
</div>
</section>
<!-- Products / Services / Licensing -->
<h3 class="page-header">
Product / Service / Licensing
</h3>
<section class="container-fluid">
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
full menu supplier of marine/industrial and commerial fishing products <br>
</div>
</div>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Technology Profile -->
<!-- Market Profile -->
<!-- Sector Information -->
<details class="mrgn-tp-md mrgn-bttm-md">
<summary>
Third-Party Information Liability Disclaimer
</summary>
<p>
Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.
</p>
</details>
</details>
<details id="details-panel2">
<summary>
Contacts
</summary>
<h2 class="wb-invisible">
Contact information
</h2>
<!-- Contact Information -->
<section class="container-fluid">
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Paul
Johnston
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
General Manager
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Management Executive.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(902) 468-2111
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Ext:
</strong>
</div>
<div class="col-md-7">
240
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(902) 468-3077
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
pjohnston@spartanmarine.ca
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Lisa
Caron
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
Manager
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Management Executive.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(902) 468-2111
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Ext:
</strong>
</div>
<div class="col-md-7">
225
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(902) 468-3077
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
lcaron@spartanmarine.ca
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Ron
Scott
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
Manager
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(902) 468-2111
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(902) 468-3077
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
rscott@spartanmarine.ca
</div>
</div>
</section>
</details>
<details id="details-panel3">
<summary>
Description
</summary>
<h2 class="wb-invisible">
Company description
</h2>
<section class="container-fluid">
<div class="row">
<div class="col-md-5">
<strong>
Country of Ownership:
</strong>
</div>
<div class="col-md-7">
Canada
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Year Established:
</strong>
</div>
<div class="col-md-7">
1983
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Exporting:
</strong>
</div>
<div class="col-md-7">
No
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Industry (NAICS):
</strong>
</div>
<div class="col-md-7">
417230 - Industrial Machinery, Equipment and Supplies Wholesaler-Distributors
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Trading House / Wholesaler / Agent and Distributor
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Number of Employees:
</strong>
</div>
<div class="col-md-7">
10
</div>
</div>
</section>
</details>
<details id="details-panel4">
<summary>
Products, services and licensing
</summary>
<h2 class="wb-invisible">
Product / Service / Licensing
</h2>
<section class="container-fluid">
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
full menu supplier of marine/industrial and commerial fishing products <br>
</div>
</div>
</section>
</details>
</div>
</div>
<div class="row">
<div class="col-md-12 text-right">
Last Update Date 2016-02-01
</div>
</div>
<!--
- Artifact ID: CBW - IMBS - CCC Search WAR
- Group ID: ca.gc.ic.strategis.imbs.ccc.search
- Version: 3.26
- Built-By: bamboo
- Build Timestamp: 2017-03-02T21:29:28Z
-->
<!-- End Body Content -->
<!-- Begin Body Foot -->
<!-- End Body Foot -->
<!-- END MAIN TABLE -->
<!-- End body -->
<!-- Begin footer -->
<div class="row pagedetails">
<div class="col-sm-5 col-xs-12 datemod">
<dl id="wb-dtmd">
<dt class=" hidden-print">Date Modified:</dt>
<dd class=" hidden-print">
<span><time>2017-03-02</time></span>
</dd>
</dl>
</div>
<div class="clear visible-xs"></div>
<div class="col-sm-4 col-xs-6">
</div>
<div class="col-sm-3 col-xs-6 text-right">
</div>
<div class="clear visible-xs"></div>
</div>
</main>
<footer role="contentinfo" id="wb-info">
<nav role="navigation" class="container wb-navcurr">
<h2 class="wb-inv">About government</h2>
<!-- EPIC FOOTER BEGIN -->
<!-- EPI-11638 Contact us -->
<ul class="list-unstyled colcount-sm-2 colcount-md-3">
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07026.html#pageid=E048-H00000&from=Industries">Contact us</a></li>
<li><a href="https://www.canada.ca/en/government/dept.html">Departments and agencies</a></li>
<li><a href="https://www.canada.ca/en/government/publicservice.html">Public service and military</a></li>
<li><a href="https://www.canada.ca/en/news.html">News</a></li>
<li><a href="https://www.canada.ca/en/government/system/laws.html">Treaties, laws and regulations</a></li>
<li><a href="https://www.canada.ca/en/transparency/reporting.html">Government-wide reporting</a></li>
<li><a href="http://pm.gc.ca/eng">Prime Minister</a></li>
<li><a href="https://www.canada.ca/en/government/system.html">How government works</a></li>
<li><a href="http://open.canada.ca/en/">Open government</a></li>
</ul>
</nav>
<div class="brand">
<div class="container">
<div class="row">
<nav class="col-md-10 ftr-urlt-lnk">
<h2 class="wb-inv">About this site</h2>
<ul>
<li><a href="https://www.canada.ca/en/social.html">Social media</a></li>
<li><a href="https://www.canada.ca/en/mobile.html">Mobile applications</a></li>
<li><a href="http://www1.canada.ca/en/newsite.html">About Canada.ca</a></li>
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html">Terms and conditions</a></li>
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html#p1">Privacy</a></li>
</ul>
</nav>
<div class="col-xs-6 visible-sm visible-xs tofpg">
<a href="#wb-cont">Top of Page <span class="glyphicon glyphicon-chevron-up"></span></a>
</div>
<div class="col-xs-6 col-md-2 text-right">
<object type="image/svg+xml" tabindex="-1" role="img" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/wmms-blk.svg" aria-label="Symbol of the Government of Canada"></object>
</div>
</div>
</div>
</div>
</footer>
<!--[if gte IE 9 | !IE ]><!-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/wet-boew.min.js"></script>
<!--<![endif]-->
<!--[if lt IE 9]>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew2.min.js"></script>
<![endif]-->
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/theme.min.js"></script>
<!-- EPI-10519 -->
<span class="wb-sessto"
data-wb-sessto='{"inactivity": 1800000, "reactionTime": 180000, "sessionalive": 1800000, "logouturl": "/app/ccc/srch/cccSrch.do?lang=eng&prtl=1"}'></span>
<script src="/eic/home.nsf/js/jQuery.externalOpensInNewWindow.js"></script>
<!-- EPI-11190 - Webtrends -->
<script src="/eic/home.nsf/js/webtrends.js"></script>
<script>var endTime = new Date();</script>
<noscript>
<div><img alt="" id="DCSIMG" width="1" height="1" src="//wt-sdc.ic.gc.ca/dcs6v67hwe0ei7wsv8g9fv50d_3k6i/njs.gif?dcsuri=/nojavascript&WT.js=No&WT.tv=9.4.0&dcssip=www.ic.gc.ca"/></div>
</noscript>
<!-- /Webtrends -->
<!-- JS deps -->
<script src="/eic/home.nsf/js/jquery.imagesloaded.js"></script>
<!-- EPI-11262 - Util JS -->
<script src="/eic/home.nsf/js/_WET_4-0_utils_canada.min.js"></script>
<!-- EPI-11383 -->
<script src="/eic/home.nsf/js/jQuery.icValidationErrors.js"></script>
<span style="display:none;" id='app-info' data-project-groupid='' data-project-artifactid='' data-project-version='' data-project-build-timestamp='' data-issue-tracking='' data-scm-sha1='' data-scm-sha1-abbrev='' data-scm-branch='' data-scm-commit-date=''></span>
</body></html>
<!-- End Footer -->
<!--
- Artifact ID: CBW - IMBS - CCC Search WAR
- Group ID: ca.gc.ic.strategis.imbs.ccc.search
- Version: 3.26
- Built-By: bamboo
- Build Timestamp: 2017-03-02T21:29:28Z
-->
| GoC-Spending/data-corporations | html/234567002226.html | HTML | mit | 46,311 |
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Posts · dpc's blog</title>
<meta name="description" content="Random posts about stuff.">
<meta name="generator" content="Hugo 0.16" />
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Posts · dpc's blog">
<meta name="twitter:description" content="Random posts about stuff.">
<meta property="og:title" content="Posts · dpc's blog">
<meta property="og:type" content="blog">
<meta property="og:description" content="Random posts about stuff.">
<link href='//fonts.googleapis.com/css?family=Source+Sans+Pro:400,700|Oxygen:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/pure/0.6.0/pure-min.css">
<!--[if lte IE 8]>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/pure/0.6.0/grids-responsive-old-ie-min.css">
<![endif]-->
<!--[if gt IE 8]><!-->
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/pure/0.6.0/grids-responsive-min.css">
<!--<![endif]-->
<link rel="stylesheet" href="http://dpc.pw//css/all.min.css">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="alternate" type="application/rss+xml" title="dpc's blog" href="http://dpc.pw//index.xml" />
</head>
<body>
<div id="layout" class="pure-g">
<div class="sidebar pure-u-1 pure-u-md-1-4">
<div class="header">
<hgroup>
<h1 class="brand-title"><a href="http://dpc.pw/">dpc's blog</a></h1>
<h2 class="brand-tagline">Random posts about stuff.</h2>
</hgroup>
<nav class="nav">
<ul class="nav-list">
<li class="nav-item">
<a class="pure-button" href="http://dpc.pw//index.xml"><i class="fa fa-rss"></i> rss</a>
</li>
</ul>
</nav>
</div>
</div>
<div class="content pure-u-1 pure-u-md-3-4">
<div>
<div class="posts">
<h1 class="content-subhead">
2016-10-10
<p class="post-meta">
<a class="post-tags post-tags-programming" href="http://dpc.pw//tags/programming">programming</a>
</p>
</h1>
<section class="post">
<header class="post-header">
<a href="http://dpc.pw/on-state-pollution/" class="post-title">On state pollution</a>
</header>
<div class="post-description">
<h2 id="introduction">Introduction</h2>
<p>I’d like to share an method I’ve developed on how to judge a code. This method
uses a metric that I named <em>state pollution</em>.</p>
<p>Note: I am not well versed in academic Computer Science nomenclature and just
trying to be precise in my explanation. Be aware that I might be wrong
somewhere and please feel free to correct me if I’m naming something wrong or
misusing concepts. Maybe someone already described something like that (or
better). Please refer me right places if it the case.</p>
<p>First, I use <em>state</em> as a synonym of <em>entropy</em> or <em>amount of information</em>.</p>
<p><em>State pollution</em> of a fragment of a code is an amount of <em>aggregate visible state</em>
that fragment adds to the whole code.</p>
<p><em>Aggregate visible state</em> is sum of <em>visible state</em> of every executable line of
the code.</p>
<p><em>Visible state</em> of a piece/line of code is the amount of <em>state</em> this code can
access (<em>readable visible state</em>) or modify (<em>writeable visible state</em>).</p>
<p>The state is measured in bits. Eg. boolean variable can be only in two states:
<code>true</code> or <code>false</code>. This is 1 bit of information. A C-language <code>char</code> has 256
possible values, which is 8 bits.</p>
<p>The following Rust Hello World example has 0-bits of <em>aggregate visible state</em>.</p>
<pre><code class="language-rust">fn main() {
println!("Hello world!");
}
</code></pre>
<p>The above code has only one effective line of code: <code>println!(...)</code> and that line has no variables to access or modify.</p>
<p>Now let’s say we’re going to add a pointless mutable <code>8-bit</code> variable:</p>
<pre><code class="language-rust">fn main() {
let mut x = 0u8;
println!("Hello world!");
}
</code></pre>
<p>This new line makes it potentially possible for <code>println!(...)</code> to print a text
dependent on it’s value. So the <em>aggregate visible state</em> of the code is now <code>8-bits</code>, and
the <em>state pollution</em> introduced by new line is <code>8-bits</code>.</p>
<p>Not that if <code>mut</code> keyword was removed, <code>println!(...)</code> could potentially print
<code>x</code>, but not modify it (as variables are immutable by default in Rust). That
would cause <em>aggregate writeable visible state</em> to stay equal to 0, increasing
only <em>readable visible state</em>.</p>
<p>Note: this whole <em>entropy</em> calculation is not meant to be precise. It is to be thought of
as <a href="https://en.wikipedia.org/wiki/Big_O_notation">Big O Notation</a>. It’s the magnitude that is important, not the exact values! To mimic <code>O(...)</code>
I’m going to use similar <code>P(...)</code> where <em>P</em> stands for <em>pollution</em>.</p>
<p>I hope the concept is clear now. Now let’s get to while it’s useful. I find
<em>state pollution</em> metric to be generalization of many other more-specific ways
to judge the code, and corresponding to “good practices” and judgments about the
code that people develop with experience.</p>
<h2 id="why-is-using-enumerator-better-than-an-integer">Why is using enumerator better than an integer</h2>
<p>Let’s compare:</p>
<pre><code class="language-rust">enum State {
Open,
Connected,
Errored
}
state : State;
</code></pre>
<p>vs</p>
<pre><code class="language-rust">state : uint;
</code></pre>
<p><code>state</code> that is an enumerator have only 3 possible values (entropy = 1.5 bits). <code>state</code> that is just an integer,
has a lot more possible values, thus introducing more <em>state pollution</em>.</p>
<h2 id="why-are-local-values-preferable-over-globals">Why are local values preferable over globals</h2>
<p>Most programmers would agree that avoiding global values in any code is a good
practice. Using <em>state pollution</em> metric one could say that, a global variable
has a <code>P(n*e)</code> where <code>n</code> is number of lines of the whole code and <code>e</code> is a entropy of the
variable itself (1-bit for boolean, 8-bit for C-language char, etc.). In contrast
local variable has a <code>P(m*e)</code> where <code>m</code> is total number of lines of one
function. As <code>n >= m</code> using local variables instead of global is minimizing
<em>aggregate visible state pollution</em></p>
<p>Natural language explanation simple: every global variable in your code makes
every line of your code potentially do something different depending on the value
of that variable.</p>
<h2 id="why-is-static-typing-preferable-over-dynamic-typing">Why is static typing preferable over dynamic typing?</h2>
<p>In statically-typed languages <code>bool</code> can have only two values. That’s enforced.
In dynamically-typed, every variable can potentially have any value of any
type. Variables in dynamically-typed languages introduce more <em>state
pollution</em>. Obviously code written in dynamically-typed language variables
doesn’t always abuse that, but as a possibility - it’s always there, in every
variable. Maybe by mistake, maybe on purpose, and change to the code could
introduce a new state. So <em>state pollution</em> is there, maybe just discounted a
little.</p>
<h2 id="why-are-immutable-variables-better-than-mutable">Why are immutable variables better than mutable</h2>
<p>The mutable state increases both <em>writeable</em> and <em>readable visible pollution</em>,
immutable only the later. With immutable state any code can potentially
experience different behavior depending on the state, but at least can’t change
the behavior of other places that are polluted with the same state.</p>
<h2 id="why-is-encapsulation-and-abstraction-good">Why is encapsulation and abstraction good</h2>
<p>Limiting visibility of the state using eg. Go <code>interfaces</code> or Rust <code>traits</code>, or
just field and method visibility settings does not completely remove the state,
but wraps it in a surface that limits it’s effective pollution: the code exposed to
encapsulated or abstracted state can’t directly interfere with it.</p>
<h2 id="why-is-functional-code-preferable-over-imperative">Why is functional code preferable over imperative</h2>
<p>By nature functional code limits the state pollution. Eg. pure virtual function
can only use it’s arguments, so that arguments are the only state that pollutes
the function code.</p>
</div>
</section>
<h1 class="content-subhead">
2016-09-27
<p class="post-meta">
<a class="post-tags post-tags-go" href="http://dpc.pw//tags/go">go</a><a class="post-tags post-tags-opinion" href="http://dpc.pw//tags/opinion">opinion</a><a class="post-tags post-tags-rant" href="http://dpc.pw//tags/rant">rant</a>
</p>
</h1>
<section class="post">
<header class="post-header">
<a href="http://dpc.pw/my-opinion-on-go/" class="post-title">My opinion on Go</a>
</header>
<div class="post-description">
<h2 id="tl-dr">TL;DR</h2>
<p>The biggest strength of Go, IMO, was the FAD created by the fact that it is
“backed by Google”. That gave Go immediate traction, and bootstrapped a
decently sized ecosystem. Everybody know about it, and have somewhat positive
attitude thinking “it’s simple, fast, and easy to learn”.</p>
<p>I enjoy (crude but still) static typing, compiling to native
code, and most of all: native-green thread, making Go quite productive for
server side code. I just had to get used to many workarounds for lack of
generics, remember about avoid all the <a href="https://gist.github.com/lavalamp/4bd23295a9f32706a48f">Go landmines</a> and ignore
poor expressiveness.</p>
<p>My favourite thing about Go, is that it produces static, native binaries.
Unlike software written in Python, getting software written in Go to actually
run is always painless.</p>
<p>However overall, Go is poorly designed language full of painful archaisms. It
ignores multiple great ideas from programming languages research and other PL
experiences.</p>
<p><a href="https://news.ycombinator.com/item?id=12525949">“Go’s simplicity is syntactic. The complexity is in semantics and runtime
behavior.”</a></p>
<p>Every time I write code in Go, I get the job done, but I feel deeply disappointed.</p>
<h2 id="reading-material">Reading material</h2>
<p>I think the best description of Go’s problems was <a href="http://yager.io/programming/go.html">Why Go Is Not Good</a>.</p>
<p>Also interesting:</p>
<ul>
<li><a href="http://nomad.so/2015/03/why-gos-design-is-a-disservice-to-intelligent-programmers/">Why Go’s design is a disservice to intelligent
programmers</a>
<ul>
<li>“In my opinion Go has been designed by people who have been using C all
their lives and don’t want to try anything new. The language could be
described as C with training wheels.”</li>
</ul></li>
<li><a href="http://dtrace.org/blogs/ahl/2016/08/02/i-love-go-i-hate-go/">I Love Go; I Hate Go</a></li>
<li><a href="https://github.com/ksimka/go-is-not-good">Many, many articles explaining why Go is just bad</a></li>
</ul>
<h2 id="more-on-my-experiences-with-go">More on my experiences with Go</h2>
<p>While I was following Go programming language since it’s announcement and even
did some learning and toying with it, only recently I had opportunity to try Go
in real projects. For the last couple of months I’ve been working a lot with
Go, and below is why I think Go is simply a bad programming language.</p>
<h3 id="nil">Nil</h3>
<p><code>nil</code>/<code>null</code> should not exists in any recent programming language.</p>
<p><code>nil</code> keeps being the biggest source of frustration when working with code
written in Go. <code>nil</code> handling is inconsistent too with sometimes <code>nil</code> being OK
to use, and sometimes not so much.</p>
<h3 id="no-sane-error-handling">No sane error handling</h3>
<pre><code class="language-go">o1, err := DoSomething1()
if err != nil {
return
}
defer Cleanup(o1)
o2, err := o2.DoSomething2()
if err != nil {
return
}
defer Cleanup2(o2)
…
oN, err := oN-1.DoSomethingN()
if err != nil {
return
}
defer CleanupN(oN)
</code></pre>
<p>compare the above with corresponding Rust code:</p>
<pre><code class="language-rust">let o1 = try!(DoSomething1());
let o2 = try!(o1.DoSomething2());
…
let oN = try!(oN-1.DoSomethingN());
</code></pre>
<p>or</p>
<pre><code class="language-rust">DoSomething1()
.and_then(|o1| o1.DoSomething2())
.and_then(|o2| o2.DoSomething2())
…
.and_then(|oN| oN.DoSomethingN())
</code></pre>
<p>You might ask, where are the cleanup calls. Well, because Rust has guaranteed,
predictable destructors, you don’t need cleanup calls 99% of the time! Files
and sockets will be closed, http connections ended (or returned to the pool) etc.</p>
<p><a href="https://blog.golang.org/error-handling-and-go">Mildly-satisfying workarounds are given</a></p>
<h3 id="lack-of-generics">Lack of generics</h3>
<p>It seems to me lack of generic support is the root cause of all other problems.</p>
<p>Go has <code>nil</code> because without some form of generics, having a <code>Option</code> is not
possible.</p>
<p>Go has poor error handling, as something like Rust’s <code>Result</code> can not be used
without generics.</p>
<p>Go has no proper collections, and you weird <code>make</code> invocations are required
because it lacks generics.</p>
<h3 id="annoyingness">Annoyingness</h3>
<p>I fiddle with the code to try something out, I get an error that something is
not used anymore. I have to remove the <code>import</code> to make the compiler happy.
Then add it again.</p>
<p>Why it can’t be just a warning? Why is it <em>that</em> important for all the
<code>imports</code> to really be used?</p>
<p>Or compiler errors because <code>{</code> is on a newline. Madness.</p>
<p>Go compiler is happy when I don’t check errors returned by a function (maybe by
mistake), and I have to use <code>go vet</code> and <code>golint</code> to ensure there are no real
obvious issues with my code, but it just won’t let me be when it comes to
irrelevant details.</p>
<h3 id="small-things">Small things</h3>
<p>How do you decrement an atomic in Go?</p>
<pre><code class="language-go">AddUint32(&x, ^uint32(c-1))
</code></pre>
<p>That’s how - described right in <a href="https://golang.org/pkg/sync/atomic/#AddUint32">atomic package comment for
AddUint32</a>. Easy to read, and
self-explaining. I mean… come on. It took similar time to write the comment
explaining how to decrement, as it would take to write a much needed function
that would just do it!</p>
<h3 id="community-doesn-t-like-me">Community doesn’t like me</h3>
<p>Couple of times I ventured into Go community gathering places, looking for
advise on how to deal with some of the problems I was having. I don’t know if
it’s me, or the fact that I was referring to mechanisms from other languages,
that Go simply lacks, but every time I got hostile responses in tones of “one
true way of Go” and me being stupid for looking for alternatives to
established Go conventions.</p>
</div>
</section>
<h1 class="content-subhead">
2016-09-15
<p class="post-meta">
<a class="post-tags post-tags-shell" href="http://dpc.pw//tags/shell">shell</a>
</p>
</h1>
<section class="post">
<header class="post-header">
<a href="http://dpc.pw/precache-all-the-things/" class="post-title">Precache all the things!</a>
</header>
<div class="post-description">
<p><img src="http://cdn.memegenerator.net/instances/400x/33671988.jpg" alt="funny meme" /></p>
<p>Having a lot of RAM nowadays is relatively cheap and Linux can make a good use
of it. With tools like <a href="http://en.wikipedia.org/wiki/Preload_(software)">preload</a> most of Linux distributions are
trying to proactively read things that you might want to use soon.</p>
<p>However if your desktop have a ridiculous amount of memory (mine has 32GB) it
may take ages for these tools to make use of all that memory. And why would you pay
for it and then let it just sit idle instead of working for you?</p>
<p>The thing is: you can do much better, because you know what you are going to
use in the future.</p>
<p>So, as always, let’s write a tiny script under the name <code>precache</code>.</p>
<pre><code class="language-bash">#!/bin/sh
exec nice -n 20 ionice -c 3 find "${1:-.}" -xdev -type f \
-exec nice -n 20 ionice -c 3 cat '{}' \; > /dev/null
</code></pre>
<p>Personally I keep it as <code>$HOME/bin/precache</code>.</p>
<p>The basic idea is to traverse through all the subdirectories of an argument
using <code>find</code> and read all the files from the disk, discarding their output. If no
argument is given <code>precache</code> will traverse the current directory.</p>
<p>The <code>nice</code> and <code>ionice</code> commands are used to force all of this to be done only
when the system is really idle, so it’s not slowing down anything else.</p>
<p>Keep in mind that the script will not switch to different filesystems (<code>-xdev</code>
option).</p>
<p>All of this is done to make Linux fill the free memory with cached
data so it’s already waiting for you when you need it. You can check the
memory usage using <code>top</code> command. The <code>cached</code> position is the one that we want
to increase to the point where no memory is sitting idle.</p>
<p>How do I use this script? There are multiple ways.</p>
<p>First, you can preload your whole home directory on boot.</p>
<pre><code class="language-bash">#!/bin/sh
if [ ! -f "/tmp/$USER-home-precache" ]; then
touch -f "/tmp/$USER-home-precache"
precache "$HOME" &
fi
</code></pre>
<p><a href="http://en.gentoo-wiki.com/wiki/Autostart_Programs">Add this command to your autostart on login.</a> or alternatively
just put:</p>
<pre><code>precache /home/<yourusername> &
</code></pre>
<p>in your system’s <code>/etc/rc.local</code>.</p>
<p>Also, when you’re about to work on something in few minutes (like launching a
game or starting a big compilation), you can precache relevant directories to
make the game load and work faster.</p>
</div>
</section>
<h1 class="content-subhead">
2016-09-15
<p class="post-meta">
<a class="post-tags post-tags-shell" href="http://dpc.pw//tags/shell">shell</a><a class="post-tags post-tags-tmux" href="http://dpc.pw//tags/tmux">tmux</a>
</p>
</h1>
<section class="post">
<header class="post-header">
<a href="http://dpc.pw/make-current-dir-a-tmux-session-placeholder./" class="post-title">Make current dir a tmux session placeholder.</a>
</header>
<div class="post-description">
<p><code>tmux-session.sh</code>:</p>
<pre><code class="language-bash">#!/bin/bash
# Reattach to (or spawn new if not existing) tmux session
# tmux session <session_name> [ <session_directory> ]
export STY="tmux-$1"
RC=".tmux"
if [ ! -z "$2" ]; then
RC="$2/$RC"
fi
RC="$(readlink -f "$RC")"
if ! tmux has-session -t "$1" 2>/dev/null ; then
if [ ! -z "$RC" -a -f "$RC" ] ; then
tmux new-session -d -s "$1" "tmux move-window -t 9; exec tmux source-file \"$RC\""
else
tmux new-session -d -s "$1"
fi
fi
exec tmux attach-session -t "$1"
</code></pre>
<p><code>tmux-here.sh</code>:</p>
<pre><code class="language-bash">#!/bin/bash
# Spawn tmux session in current directory
# use path's sha256 hash as session name
exec "$HOME/bin/tmux-session" "$(echo "$PWD" | sha256sum | awk '{ print $1 }')" "$PWD"
</code></pre>
</div>
</section>
<h1 class="content-subhead">
2016-09-15
<p class="post-meta">
<a class="post-tags post-tags-shell" href="http://dpc.pw//tags/shell">shell</a>
</p>
</h1>
<section class="post">
<header class="post-header">
<a href="http://dpc.pw/shell-tip-retry.sh/" class="post-title">Shell tip: `retry.sh`</a>
</header>
<div class="post-description">
<p>It’s often the case when I have a command you want to retry until it’s successful.</p>
<p>It’s useful to have <code>retry.sh</code> script like this:</p>
<pre><code class="language-bash">#!/bin/sh
while ! "$@"; do sleep 1; done
</code></pre>
</div>
</section>
<h1 class="content-subhead">
2016-01-15
<p class="post-meta">
<a class="post-tags post-tags-shell" href="http://dpc.pw//tags/shell">shell</a>
</p>
</h1>
<section class="post">
<header class="post-header">
<a href="http://dpc.pw/prepend-or-append-to-path-like-environment-variable./" class="post-title">Prepend or append to PATH like environment variable.</a>
</header>
<div class="post-description">
<p>In Unix there are quite a lot variables representing path lists of different kind similar to <code>PATH</code> like <code>LD_LIBRARY_PATH</code>, <code>PKG_CONFIG_PATH</code>.</p>
<p>Usual idiom to modify these variables is:</p>
<pre><code>$PATH="$PATH:/new/path/to/something"
</code></pre>
<p>I found it quite a lot of typing in a daily work, so I’m using functions shortening the above to just:</p>
<pre><code>append_env PATH /new/path/to/something
</code></pre>
<p>The version for Bash is:</p>
<pre><code>function append_env {
if [ -z "${!1}" ]; then
export "$1"="$2"
else
export "$1"="${!1}:$2"
fi
}
function prepend_env {
if [ -z "${!1}" ]; then
export "$1"="$2"
else
export "$1"="$2:${!1}"
fi
}
</code></pre>
<p>And for Zsh:</p>
<pre><code>function append_env {
eval "local v=\$$1"
if [ -z "$v" ]; then
export "$1"="$2"
else
export "$1"="$v:$2"
fi
}
function prepend_env {
eval "local v=\$$1"
if [ -z "$v" ]; then
export "$1"="$2"
else
export "$1"="$2:$v"
fi
}
</code></pre>
</div>
</section>
<h1 class="content-subhead">
2014-09-15
<p class="post-meta">
<a class="post-tags post-tags-shell" href="http://dpc.pw//tags/shell">shell</a><a class="post-tags post-tags-c" href="http://dpc.pw//tags/c">c</a>
</p>
</h1>
<section class="post">
<header class="post-header">
<a href="http://dpc.pw/asynchronous-gnu-readline-printing/" class="post-title">Asynchronous GNU Readline printing</a>
</header>
<div class="post-description">
<p>Some while ago I’ve spend my time developing a <a href="http://github.com/dpc/xmppconsole">XMPP command line client</a> which is using <a href="http://code.stanziq.com/strophe/">strophe XMPP library</a>
to handle XMPP and <a href="http://tiswww.case.edu/php/chet/readline/rltop.html">GNU Readline</a> for I/O.</p>
<p>The idea was to have a readline prompt at the bottom and yet be able to asynchronously print incoming messages above it - in the “log window”.</p>
<p>It seems that many people were looking for solution already:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/1512028/gnu-readline-how-do-clear-the-input-line">GNU Readline: how do clear the input line?</a></li>
<li><a href="http://stackoverflow.com/questions/691652/using-gnu-readline-how-can-i-add-ncurses-in-the-same-program">Using GNU Readline; how can I add ncurses in the same program?</a></li>
</ul>
<p>I haven’t found any satisfying answer on the web so I’d like to present my own solution.</p>
<p>Basic idea is to use alternate (asynchronous) GNU Readline interface and on each new asynchronous print:</p>
<ul>
<li>save a copy of current line state</li>
<li>clear both prompt and current line (content + position)</li>
<li>force screen update</li>
<li>print asynchronous event (followed by a newline)</li>
<li>restore prompt and current line state</li>
<li>force screen update</li>
</ul>
<p>Simple it is, indeed and you can see <a href="http://github.com/dpc/xmppconsole/blob/master/src/io.c">a working code</a> if you don’t believe.</p>
<p>The only thing that I was unable to get is preventing putting the original confirmed readline buffer in “log window”. As this is not a big deal for my requirements the complete and universal solution would be able to change what the user typed in the readline buffer just before it’s getting scrolled up and becoming part of the “log window”.</p>
<p>I hope someone will fine it useful, like I do.</p>
<p>Update:</p>
<p>Below is a patch by Denis Linvinus:</p>
<p><a href="http://pastebin.com/SA87Lxqq">http://pastebin.com/SA87Lxqq</a></p>
<p>that he uses to get more “unrestricted log window with a prompt” for his project and wanted me to share with you too. Generally, I think it’s a bit unclean because of using vt100 escape sequences so I’m not going to merge it, but if anyone finds it useful, it’s good for everyone.</p>
</div>
</section>
</div>
<div class="footer">
<div class="pure-menu pure-menu-horizontal pure-menu-open">
<ul>
<li>Powered by <a class="hugo" href="http://hugo.spf13.com/" target="_blank">hugo</a></li>
</ul>
</div>
</div>
<script src="http://dpc.pw//js/all.min.js"></script>
</div>
</div>
</div>
</body>
</html>
| dpc/dpc.github.io | post/index.html | HTML | mit | 27,133 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<title>ViennaCL - The Vienna Computing Library: symbolic_vector< ID, SCALARTYPE, ALIGNMENT > Class Template Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">ViennaCL - The Vienna Computing Library
 <span id="projectnumber">1.3.1</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.6.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Data Structures</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Data Structures</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Data Fields</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespaceviennacl.html">viennacl</a> </li>
<li class="navelem"><a class="el" href="namespaceviennacl_1_1generator.html">generator</a> </li>
<li class="navelem"><a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html">symbolic_vector</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-types">Public Types</a> |
<a href="#pub-methods">Public Member Functions</a> |
<a href="#pub-static-methods">Static Public Member Functions</a> |
<a href="#pub-static-attribs">Static Public Attributes</a> </div>
<div class="headertitle">
<div class="title">symbolic_vector< ID, SCALARTYPE, ALIGNMENT > Class Template Reference</div> </div>
</div><!--header-->
<div class="contents">
<!-- doxytag: class="viennacl::generator::symbolic_vector" -->
<p>Symbolic vector type.
<a href="classviennacl_1_1generator_1_1symbolic__vector.html#details">More...</a></p>
<p><code>#include <<a class="el" href="symbolic__vector_8hpp_source.html">symbolic_vector.hpp</a>></code></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-types"></a>
Public Types</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">typedef SCALARTYPE </td><td class="memItemRight" valign="bottom"><a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html#ae3b49295afe54045affbbd725a4b3c8a">ScalarType</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classviennacl_1_1vector.html">viennacl::vector</a><br class="typebreak"/>
< <a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html#ae3b49295afe54045affbbd725a4b3c8a">ScalarType</a>, <a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html#a62e9ad0fa1b3d3e62e3b1368a642e2a5">Alignment</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html#aade8bf0dd00cefe8123536f079269b2d">runtime_type</a></td></tr>
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memTemplParams" colspan="2">template<typename RHS_TYPE > </td></tr>
<tr><td class="memTemplItemLeft" align="right" valign="top"><a class="el" href="structviennacl_1_1generator_1_1enable__if.html">enable_if</a><br class="typebreak"/>
< <a class="el" href="structviennacl_1_1generator_1_1is__same__expression__type.html">is_same_expression_type</a><br class="typebreak"/>
< <a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html">self_type</a>, RHS_TYPE ><br class="typebreak"/>
, <a class="el" href="classviennacl_1_1generator_1_1compound__node.html">compound_node</a>< <a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html">self_type</a>, <br class="typebreak"/>
<a class="el" href="structviennacl_1_1generator_1_1assign__type.html">assign_type</a>, RHS_TYPE ><br class="typebreak"/>
>::type </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html#aeb8cb91f4028b791fcc42749104b544d">operator=</a> (RHS_TYPE const &rhs) const </td></tr>
<tr><td class="memTemplParams" colspan="2">template<typename RHS_TYPE > </td></tr>
<tr><td class="memTemplItemLeft" align="right" valign="top"><a class="el" href="structviennacl_1_1generator_1_1enable__if.html">enable_if</a><br class="typebreak"/>
< <a class="el" href="structviennacl_1_1generator_1_1is__scalar__expression.html">is_scalar_expression</a><br class="typebreak"/>
< RHS_TYPE >, <a class="el" href="classviennacl_1_1generator_1_1compound__node.html">compound_node</a><br class="typebreak"/>
< <a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html">self_type</a>, <br class="typebreak"/>
<a class="el" href="structviennacl_1_1generator_1_1inplace__scal__mul__type.html">inplace_scal_mul_type</a>, <br class="typebreak"/>
RHS_TYPE > >::type </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html#ad37ae116375b6ff040de8361aa7009d7">operator*=</a> (RHS_TYPE const &rhs) const </td></tr>
<tr><td class="memTemplParams" colspan="2">template<typename RHS_TYPE > </td></tr>
<tr><td class="memTemplItemLeft" align="right" valign="top"><a class="el" href="structviennacl_1_1generator_1_1enable__if.html">enable_if</a><br class="typebreak"/>
< <a class="el" href="structviennacl_1_1generator_1_1is__scalar__expression.html">is_scalar_expression</a><br class="typebreak"/>
< RHS_TYPE >, <a class="el" href="classviennacl_1_1generator_1_1compound__node.html">compound_node</a><br class="typebreak"/>
< <a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html">self_type</a>, <br class="typebreak"/>
<a class="el" href="structviennacl_1_1generator_1_1inplace__scal__div__type.html">inplace_scal_div_type</a>, <br class="typebreak"/>
RHS_TYPE > >::type </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html#a7f13d96d6e99503d60a0d57e2cd3485c">operator/=</a> (RHS_TYPE const &rhs) const </td></tr>
<tr><td class="memTemplParams" colspan="2">template<typename RHS_TYPE > </td></tr>
<tr><td class="memTemplItemLeft" align="right" valign="top"><a class="el" href="structviennacl_1_1generator_1_1enable__if.html">enable_if</a><br class="typebreak"/>
< <a class="el" href="structviennacl_1_1generator_1_1is__same__expression__type.html">is_same_expression_type</a><br class="typebreak"/>
< <a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html">self_type</a>, RHS_TYPE ><br class="typebreak"/>
, <a class="el" href="classviennacl_1_1generator_1_1compound__node.html">compound_node</a>< <a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html">self_type</a>, <br class="typebreak"/>
<a class="el" href="structviennacl_1_1generator_1_1inplace__add__type.html">inplace_add_type</a>, RHS_TYPE ><br class="typebreak"/>
>::type </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html#ab542044ff83a86b15f737304f0cce679">operator+=</a> (RHS_TYPE const &rhs) const </td></tr>
<tr><td class="memTemplParams" colspan="2">template<typename RHS_TYPE > </td></tr>
<tr><td class="memTemplItemLeft" align="right" valign="top"><a class="el" href="structviennacl_1_1generator_1_1enable__if.html">enable_if</a><br class="typebreak"/>
< <a class="el" href="structviennacl_1_1generator_1_1is__same__expression__type.html">is_same_expression_type</a><br class="typebreak"/>
< <a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html">self_type</a>, RHS_TYPE ><br class="typebreak"/>
, <a class="el" href="classviennacl_1_1generator_1_1compound__node.html">compound_node</a>< <a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html">self_type</a>, <br class="typebreak"/>
<a class="el" href="structviennacl_1_1generator_1_1inplace__sub__type.html">inplace_sub_type</a>, RHS_TYPE ><br class="typebreak"/>
>::type </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html#ab2eb279e4aa72f47a7b9135db90d5c82">operator-=</a> (RHS_TYPE const &rhs) const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html#a71924732c1a4908b0764e83e82da5adb">operator compound_node< self_type, assign_type, self_type ></a> ()</td></tr>
<tr><td colspan="2"><h2><a name="pub-static-methods"></a>
Static Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const std::string </td><td class="memItemRight" valign="bottom"><a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html#a94960f47a8a5a5db6ee7785c171252f4">name</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const std::string </td><td class="memItemRight" valign="bottom"><a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html#a26eab9c2d3c2ea43c10e65c31d8bc56d">size2_name</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const std::string </td><td class="memItemRight" valign="bottom"><a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html#ac19514b9a729db6db6abd6ff453b755e">internal_size2_name</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const std::string </td><td class="memItemRight" valign="bottom"><a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html#a0948f69273927e19b864ef43297f5c5b">name_argument</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const std::string </td><td class="memItemRight" valign="bottom"><a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html#a908e68631b5e01cc82f286b563de6671">kernel_arguments</a> ()</td></tr>
<tr><td colspan="2"><h2><a name="pub-static-attribs"></a>
Static Public Attributes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const unsigned int </td><td class="memItemRight" valign="bottom"><a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html#a62e9ad0fa1b3d3e62e3b1368a642e2a5">Alignment</a> = ALIGNMENT</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const unsigned int </td><td class="memItemRight" valign="bottom"><a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html#a4ce1b224962dcde77ec3ce0da36357cd">id</a> = ID</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><h3>template<unsigned int ID, typename SCALARTYPE, unsigned int ALIGNMENT><br/>
class viennacl::generator::symbolic_vector< ID, SCALARTYPE, ALIGNMENT ></h3>
<p>Symbolic vector type. </p>
<dl class=""><dt><b>Template Parameters:</b></dt><dd>
<table class="">
<tr><td class="paramname">ID</td><td>The argument ID of the vector in the generated code </td></tr>
<tr><td class="paramname">SCALARTYPE</td><td>The Scalartype of the vector in the generated code </td></tr>
<tr><td class="paramname">ALIGNMENT</td><td>The Alignment of the vector in the generated code </td></tr>
</table>
</dd>
</dl>
</div><hr/><h2>Member Typedef Documentation</h2>
<a class="anchor" id="aade8bf0dd00cefe8123536f079269b2d"></a><!-- doxytag: member="viennacl::generator::symbolic_vector::runtime_type" ref="aade8bf0dd00cefe8123536f079269b2d" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef <a class="el" href="classviennacl_1_1vector.html">viennacl::vector</a><<a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html#ae3b49295afe54045affbbd725a4b3c8a">ScalarType</a>,<a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html#a62e9ad0fa1b3d3e62e3b1368a642e2a5">Alignment</a>> <a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html#aade8bf0dd00cefe8123536f079269b2d">runtime_type</a></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="ae3b49295afe54045affbbd725a4b3c8a"></a><!-- doxytag: member="viennacl::generator::symbolic_vector::ScalarType" ref="ae3b49295afe54045affbbd725a4b3c8a" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef SCALARTYPE <a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html#ae3b49295afe54045affbbd725a4b3c8a">ScalarType</a></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="ac19514b9a729db6db6abd6ff453b755e"></a><!-- doxytag: member="viennacl::generator::symbolic_vector::internal_size2_name" ref="ac19514b9a729db6db6abd6ff453b755e" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static const std::string <a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html#ac19514b9a729db6db6abd6ff453b755e">internal_size2_name</a> </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [inline, static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a908e68631b5e01cc82f286b563de6671"></a><!-- doxytag: member="viennacl::generator::symbolic_vector::kernel_arguments" ref="a908e68631b5e01cc82f286b563de6671" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static const std::string <a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html#a908e68631b5e01cc82f286b563de6671">kernel_arguments</a> </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [inline, static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a94960f47a8a5a5db6ee7785c171252f4"></a><!-- doxytag: member="viennacl::generator::symbolic_vector::name" ref="a94960f47a8a5a5db6ee7785c171252f4" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static const std::string <a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html#a94960f47a8a5a5db6ee7785c171252f4">name</a> </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [inline, static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a0948f69273927e19b864ef43297f5c5b"></a><!-- doxytag: member="viennacl::generator::symbolic_vector::name_argument" ref="a0948f69273927e19b864ef43297f5c5b" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static const std::string <a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html#a0948f69273927e19b864ef43297f5c5b">name_argument</a> </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [inline, static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a71924732c1a4908b0764e83e82da5adb"></a><!-- doxytag: member="viennacl::generator::symbolic_vector::operator compound_node< self_type, assign_type, self_type >" ref="a71924732c1a4908b0764e83e82da5adb" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">operator <a class="el" href="classviennacl_1_1generator_1_1compound__node.html">compound_node</a>< <a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html">self_type</a>, <a class="el" href="structviennacl_1_1generator_1_1assign__type.html">assign_type</a>, <a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html">self_type</a> > </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="ad37ae116375b6ff040de8361aa7009d7"></a><!-- doxytag: member="viennacl::generator::symbolic_vector::operator*=" ref="ad37ae116375b6ff040de8361aa7009d7" args="(RHS_TYPE const &rhs) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="structviennacl_1_1generator_1_1enable__if.html">enable_if</a><<a class="el" href="structviennacl_1_1generator_1_1is__scalar__expression.html">is_scalar_expression</a><RHS_TYPE>, <a class="el" href="classviennacl_1_1generator_1_1compound__node.html">compound_node</a><<a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html">self_type</a>, <a class="el" href="structviennacl_1_1generator_1_1inplace__scal__mul__type.html">inplace_scal_mul_type</a>, RHS_TYPE > >::type operator*= </td>
<td>(</td>
<td class="paramtype">RHS_TYPE const & </td>
<td class="paramname"><em>rhs</em></td><td>)</td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="ab542044ff83a86b15f737304f0cce679"></a><!-- doxytag: member="viennacl::generator::symbolic_vector::operator+=" ref="ab542044ff83a86b15f737304f0cce679" args="(RHS_TYPE const &rhs) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="structviennacl_1_1generator_1_1enable__if.html">enable_if</a><<a class="el" href="structviennacl_1_1generator_1_1is__same__expression__type.html">is_same_expression_type</a><<a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html">self_type</a>,RHS_TYPE>, <a class="el" href="classviennacl_1_1generator_1_1compound__node.html">compound_node</a><<a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html">self_type</a>, <a class="el" href="structviennacl_1_1generator_1_1inplace__add__type.html">inplace_add_type</a>, RHS_TYPE > >::type operator+= </td>
<td>(</td>
<td class="paramtype">RHS_TYPE const & </td>
<td class="paramname"><em>rhs</em></td><td>)</td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="ab2eb279e4aa72f47a7b9135db90d5c82"></a><!-- doxytag: member="viennacl::generator::symbolic_vector::operator-=" ref="ab2eb279e4aa72f47a7b9135db90d5c82" args="(RHS_TYPE const &rhs) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="structviennacl_1_1generator_1_1enable__if.html">enable_if</a><<a class="el" href="structviennacl_1_1generator_1_1is__same__expression__type.html">is_same_expression_type</a><<a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html">self_type</a>,RHS_TYPE>, <a class="el" href="classviennacl_1_1generator_1_1compound__node.html">compound_node</a><<a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html">self_type</a>, <a class="el" href="structviennacl_1_1generator_1_1inplace__sub__type.html">inplace_sub_type</a>, RHS_TYPE > >::type operator-= </td>
<td>(</td>
<td class="paramtype">RHS_TYPE const & </td>
<td class="paramname"><em>rhs</em></td><td>)</td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a7f13d96d6e99503d60a0d57e2cd3485c"></a><!-- doxytag: member="viennacl::generator::symbolic_vector::operator/=" ref="a7f13d96d6e99503d60a0d57e2cd3485c" args="(RHS_TYPE const &rhs) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="structviennacl_1_1generator_1_1enable__if.html">enable_if</a><<a class="el" href="structviennacl_1_1generator_1_1is__scalar__expression.html">is_scalar_expression</a><RHS_TYPE>, <a class="el" href="classviennacl_1_1generator_1_1compound__node.html">compound_node</a><<a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html">self_type</a>, <a class="el" href="structviennacl_1_1generator_1_1inplace__scal__div__type.html">inplace_scal_div_type</a>, RHS_TYPE > >::type operator/= </td>
<td>(</td>
<td class="paramtype">RHS_TYPE const & </td>
<td class="paramname"><em>rhs</em></td><td>)</td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="aeb8cb91f4028b791fcc42749104b544d"></a><!-- doxytag: member="viennacl::generator::symbolic_vector::operator=" ref="aeb8cb91f4028b791fcc42749104b544d" args="(RHS_TYPE const &rhs) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="structviennacl_1_1generator_1_1enable__if.html">enable_if</a><<a class="el" href="structviennacl_1_1generator_1_1is__same__expression__type.html">is_same_expression_type</a><<a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html">self_type</a>,RHS_TYPE>, <a class="el" href="classviennacl_1_1generator_1_1compound__node.html">compound_node</a><<a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html">self_type</a>, <a class="el" href="structviennacl_1_1generator_1_1assign__type.html">assign_type</a>, RHS_TYPE > >::type operator= </td>
<td>(</td>
<td class="paramtype">RHS_TYPE const & </td>
<td class="paramname"><em>rhs</em></td><td>)</td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a26eab9c2d3c2ea43c10e65c31d8bc56d"></a><!-- doxytag: member="viennacl::generator::symbolic_vector::size2_name" ref="a26eab9c2d3c2ea43c10e65c31d8bc56d" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static const std::string <a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html#a26eab9c2d3c2ea43c10e65c31d8bc56d">size2_name</a> </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [inline, static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<hr/><h2>Field Documentation</h2>
<a class="anchor" id="a62e9ad0fa1b3d3e62e3b1368a642e2a5"></a><!-- doxytag: member="viennacl::generator::symbolic_vector::Alignment" ref="a62e9ad0fa1b3d3e62e3b1368a642e2a5" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const unsigned int <a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html#a62e9ad0fa1b3d3e62e3b1368a642e2a5">Alignment</a> = ALIGNMENT<code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a4ce1b224962dcde77ec3ce0da36357cd"></a><!-- doxytag: member="viennacl::generator::symbolic_vector::id" ref="a4ce1b224962dcde77ec3ce0da36357cd" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const unsigned int <a class="el" href="classviennacl_1_1generator_1_1symbolic__vector.html#a4ce1b224962dcde77ec3ce0da36357cd">id</a> = ID<code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<hr/>The documentation for this class was generated from the following file:<ul>
<li>viennacl/generator/symbolic_types/<a class="el" href="symbolic__vector_8hpp_source.html">symbolic_vector.hpp</a></li>
</ul>
</div><!-- contents -->
<hr class="footer"/><address class="footer"><small>
Generated on Thu Aug 9 2012 19:49:12 for ViennaCL - The Vienna Computing Library by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>
</body>
</html>
| aokomoriuta/ViennaCLFiles | doc/doxygen/html/classviennacl_1_1generator_1_1symbolic__vector.html | HTML | mit | 25,484 |
<!DOCTYPE html>
<!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Miruken Docs — SymbolDownloader documentation</title>
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/banner.css" type="text/css" />
<link rel="index" title="Index"
href="genindex.html"/>
<link rel="search" title="Search" href="search.html"/>
<link rel="top" title="SymbolDownloader documentation" href="index.html"/>
<script src="_static/js/modernizr.min.js"></script>
</head>
<body class="wy-body-for-nav" role="document">
<div class="wy-grid-for-nav">
<nav data-toggle="wy-nav-shift" class="wy-nav-side">
<div class="wy-side-scroll">
<div class="wy-side-nav-search">
<a href="index.html" class="icon icon-home"> SymbolDownloader
</a>
<div role="search">
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">
<input type="text" name="q" placeholder="Search docs" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
</div>
<div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="main navigation">
<p class="caption"><span class="caption-text">Table of Contents</span></p>
<ul>
<li class="toctree-l1"><a class="reference internal" href="article/en-US/install.html">Install</a></li>
<li class="toctree-l1"><a class="reference internal" href="article/en-US/usage.html">Usage</a></li>
<li class="toctree-l1"><a class="reference internal" href="article/en-US/configuration.html">Configuration</a></li>
<li class="toctree-l1"><a class="reference internal" href="article/en-US/teamCity.html">Team City</a></li>
</ul>
</div>
</div>
</nav>
<section data-toggle="wy-nav-shift" class="wy-nav-content-wrap">
<nav class="wy-nav-top" role="navigation" aria-label="top navigation">
<i data-toggle="wy-nav-top" class="fa fa-bars"></i>
<a href="index.html">SymbolDownloader</a>
</nav>
<div class="wy-nav-content">
<div class="rst-content">
<div role="navigation" aria-label="breadcrumbs navigation">
<ul class="wy-breadcrumbs">
<li><a href="index.html">Docs</a> »</li>
<li>Miruken Docs</li>
<li class="wy-breadcrumbs-aside">
<a href="_sources/README.rst.txt" rel="nofollow"> View page source</a>
</li>
</ul>
<hr/>
</div>
<div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
<div itemprop="articleBody">
<div class="section" id="miruken-docs">
<h1>Miruken Docs<a class="headerlink" href="#miruken-docs" title="Permalink to this headline">¶</a></h1>
<blockquote>
<div>View the docs <a class="reference external" href="http://miruken-dotnet-miruken.readthedocs.io/">here</a></div></blockquote>
<div class="section" id="restructuredtext-rest">
<h2>reStructuredText (reST)<a class="headerlink" href="#restructuredtext-rest" title="Permalink to this headline">¶</a></h2>
<p>This documentation is written with
<a class="reference external" href="http://docutils.sourceforge.net/docs/user/rst/quickstart.html">reStructuredText</a>
and
<a class="reference external" href="http://www.sphinx-doc.org/">Sphinx</a></p>
<p>How to include source code in docs</p>
<ul class="simple">
<li><a class="reference external" href="http://docutils.sourceforge.net/docs/ref/rst/directives.html#include">http://docutils.sourceforge.net/docs/ref/rst/directives.html#include</a></li>
<li><a class="reference external" href="http://sphinx.readthedocs.io/en/stable/markup/code.html#directive-literalinclude">http://sphinx.readthedocs.io/en/stable/markup/code.html#directive-literalinclude</a></li>
</ul>
</div>
<div class="section" id="readthedocs">
<h2>ReadTheDocs<a class="headerlink" href="#readthedocs" title="Permalink to this headline">¶</a></h2>
<p>This documentation is built and hosted with www.ReadTheDocs.io</p>
</div>
</div>
</div>
<div class="articleComments">
</div>
</div>
<footer>
<hr/>
<div role="contentinfo">
<p>
© Copyright 2017, Michael Dudley.
</p>
</div>
Built with <a href="http://sphinx-doc.org/">Sphinx</a> using a <a href="https://github.com/snide/sphinx_rtd_theme">theme</a> provided by <a href="https://readthedocs.org">Read the Docs</a>.
</footer>
</div>
</div>
</section>
</div>
<div class="rst-versions" data-toggle="rst-versions" role="note" aria-label="versions">
<span class="rst-current-version" data-toggle="rst-current-version">
<span class="fa fa-book"> Other Versions</span>
v: master
<span class="fa fa-caret-down"></span>
</span>
<div class="rst-other-versions">
<dl>
<dt>Branches</dt>
<dd><a href="../develop/README.html">develop</a></dd>
<dd><a href="README.html">master</a></dd>
</dl>
</div>
</div>
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
HAS_SOURCE: true,
SOURCELINK_SUFFIX: '.txt'
};
</script>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript">
jQuery(function () {
SphinxRtdTheme.StickyNav.enable();
});
</script>
</body>
</html> | miruken/miruken.github.io | documentation/versions/miruken-dotnet/SymbolDownloader/master/README.html | HTML | mit | 6,509 |
{{ with $.Site.Params.themeColor }}
<style type="text/css">
.sidebar {
background-color: {{ . }};
}
.read-more-link a {
border-color: {{ . }};
}
.pagination li a {
color: {{ . }};
border: 1px solid {{ . }};
}
.pagination li.active a {
background-color: {{ . }};
}
.pagination li a:hover {
background-color: {{ . }};
opacity: 0.75;
}
footer a,
.content a,
.related-posts li a:hover {
color: {{ . }};
}
</style>
{{ end }}
| VivekRagunathan/vivekragunathan.github.io | themes/soho/layouts/partials/theme-color.html | HTML | mit | 485 |
<html>
<title>nwSGM</title>
<body bgcolor="#000066" text="#FFFF00" link="#8888FF" vlink="#FF0000">
<h1><em>nwSGM</em></h1>
<hr>
<p>
<b><em>Segment generator</em></b>
<p>
<hr>
</body>
</html>
| rangsimanketkaew/NWChem | doc/nwahtml/nwargos_nwSGM.html | HTML | mit | 191 |
<link rel="import" href="../../polymer/polymer-element.html">
<link rel="import" href="../overlay-mixin.html">
<dom-module id="sample-overlay">
<template>
<style>
:host {
background: #ddd;
display: block;
height: 200px;
position: absolute;
width: 200px;
}
:host(:focus) {
border: 2px solid dodgerblue;
}
</style>
Hello!!!
</template>
<script>
class SampleOverlay extends OverlayMixin(Polymer.Element) {
static get is() {return 'sample-overlay';}
}
customElements.define(SampleOverlay.is, SampleOverlay);
</script>
</dom-module> | sharedlabs/overlay-container | demo/sample-overlay.html | HTML | mit | 648 |
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0">
<link rel="stylesheet" href="../css/weui.css"/>
<link rel="stylesheet" href="../css/weuix.css"/>
<script src="../js/zepto.min.js"></script>
<script src="../js/zepto.weui.js"></script>
<script src="../js/clipboard.min.js"></script>
</head>
<body ontouchstart>
<div class="page-hd">
<h1 class="page-hd-title">
字体大小/颜色/背景/标题
</h1>
<p class="page-hd-desc"></p>
</div>
<h1>字体大小与颜色</h1>
<h2>字体大小与颜色</h2>
<h3>字体大小与颜色</h3>
<h4>字体大小与颜色</h4>
<h5>字体大小与颜色</h5>
<h6>字体大小与颜色</h6>
<br>
字体f11-55
<span class='f11'>字体f11</span><span class='f12'>字体f12</span><span class='f13'>字体f13</span><span class='f114'>字体f14</span><span class='f15'>字体15</span><span class='f116'>字体f16</span><span class='f31'>字体f31</span><span class='f32'>字体f32</span><span class='f35'>字体f35</span><span class='f40'>字体f40</span><span class='f45'>字体f45</span><span class='f50'>字体f50</span><span class='f55'>字体f55</span>
<br>
<span class='f-red'>红色f-red</span><span class='f-green'>绿色f-green</span>
<span class='f-blue'>蓝色f-blue</span><span class='f-black'>f-black</span>
<span class='f-white bg-blue'>f-white</span> <span class='f-zi'>f-zi</span> <span class='f-gray'>灰色f-gray</span> <span class='f-yellow'>黄色</span><span class='f-orange'>f-orange</span><span class='f-white bg-blue'>背景蓝色bg-blue</span>
<br>
<span class='bg-orange f-white'>bg-orange</span>
<span class='weui-btn_primary f-white'>背景绿色weui-btn_primary</span>
<span class='weui-btn_warn f-white'>weui-btn_warn</span>
<span class='weui-btn_default f-red'>weui-btn_default</span>
<div class="weui-cells__title">9种常见颜色值</div>
<div class="weui-cells weui-cells_form">
<div class="weui-cell">
<div class="weui-cell__hd"><a href="javascript:void(0);" class="jsclip" data-url="#FA5151">红色</a></div>
<div class="weui-cell__bd">
<input class="weui-input" type="text" value="#FA5151" style="background:#FA5151;color:white"/>
</div>
</div>
<div class="weui-cell">
<div class="weui-cell__hd"><a href="javascript:void(0);" class="jsclip" data-url="#07C160">绿色</a></div>
<div class="weui-cell__bd">
<input class="weui-input" type="text" value="#07C160" style="background:#07C160;color:white"/>
</div>
</div>
<div class="weui-cell">
<div class="weui-cell__hd"><a href="javascript:void(0);" class="jsclip" data-url="#10AEFF">蓝色</a></div>
<div class="weui-cell__bd">
<input class="weui-input" type="text" value="#10AEFF" style="background:#10AEFF;color:white"/>
</div>
</div>
<div class="weui-cell">
<div class="weui-cell__hd"><a href="javascript:void(0);" class="jsclip" data-url="#333">黑色</a></div>
<div class="weui-cell__bd">
<input class="weui-input" type="text" value="#333" style="background:#333;color:white"/>
</div>
</div>
<div class="weui-cell">
<div class="weui-cell__hd"><a href="javascript:void(0);" class="jsclip" data-url="#FF33CC">紫色</a></div>
<div class="weui-cell__bd">
<input class="weui-input" type="text" value="#FF33CC" style="background:#FF33CC;color:white"/>
</div>
</div>
<div class="weui-cell">
<div class="weui-cell__hd"><a href="javascript:void(0);" class="jsclip" data-url="#CCC">灰色</a></div>
<div class="weui-cell__bd">
<input class="weui-input" type="text" value="#CCC" style="background:#CCC;color:white"/>
</div>
</div>
<div class="weui-cell">
<div class="weui-cell__hd"><a href="javascript:void(0);" class="jsclip" data-url="#FFFF66">黄色</a></div>
<div class="weui-cell__bd">
<input class="weui-input" type="text" value="#FFFF66" style="background:#FFFF66;color:white"/>
</div>
</div>
<div class="weui-cell">
<div class="weui-cell__hd"><a href="javascript:void(0);" class="jsclip" data-url="#FF6600">橙色</a></div>
<div class="weui-cell__bd">
<input class="weui-input" type="text" value="#FF6600" style="background:#FF6600;color:white"/>
</div>
</div>
<div class="weui-cell">
<div class="weui-cell__hd"><a href="javascript:void(0);" class="jsclip" data-url="#FFF">白色</a></div>
<div class="weui-cell__bd">
<input class="weui-input" type="text" value="#FFF" style="background:#FFF;color:white"/>
</div>
</div>
</div>
</div>
<script>
var clipboard = new Clipboard('.jsclip', {
text: function(e) {
return $(e).data('url')||$(e).data('href');
}
});
clipboard.on('success', function(e) {
$.toast('复制成功');
});
</script>
<br>
<br>
<div class="weui-footer weui-footer_fixed-bottom">
<p class="weui-footer__links">
<a href="../index.html" class="weui-footer__link">WeUI首页</a>
</p>
<p class="weui-footer__text">Copyright © Yoby</p>
</div>
</body>
</html> | logoove/weui2 | demo/base3.html | HTML | mit | 5,385 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, minimal-ui">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="white">
<title>My App</title>
<!-- Path to Framework7 Library CSS-->
<link rel="stylesheet" href="https://framework7.io/dist/css/framework7.ios.min.css">
<link rel="stylesheet" href="https://framework7.io/dist/css/framework7.ios.colors.min.css">
<!-- Path to your custom app styles-->
<link rel="stylesheet" href="css/Framework7.QuickActions.css">
<link rel="stylesheet" href="css/my-app.css">
</head>
<body>
<!-- Status bar overlay for fullscreen mode-->
<div class="statusbar-overlay"></div>
<!-- Panels overlay-->
<div class="panel-overlay"></div>
<!-- Left panel with reveal effect-->
<div class="panel panel-left panel-reveal">
<div class="content-block">
<p>Left panel content goes here</p>
</div>
</div>
<!-- Right panel with cover effect-->
<div class="panel panel-right panel-cover">
<div class="content-block">
<p>Right panel content goes here</p>
</div>
</div>
<!-- Views-->
<div class="views">
<!-- Your main view, should have "view-main" class-->
<div class="view view-main">
<!-- Top Navbar-->
<div class="navbar">
<!-- Navbar inner for Index page-->
<div data-page="index" class="navbar-inner">
<!-- We have home navbar without left link-->
<div class="center sliding">Awesome App</div>
<div class="right">
<!-- Right link contains only icon - additional "icon-only" class--><a href="#" class="link icon-only open-panel"> <i class="icon icon-bars"></i></a>
</div>
</div>
<!-- Navbar inner for About page-->
<div data-page="about" class="navbar-inner cached">
<div class="left sliding"><a href="#" class="back link"> <i class="icon icon-back"></i><span>Back</span></a></div>
<div class="center sliding">About Us</div>
</div>
<!-- Navbar inner for Services page-->
<div data-page="services" class="navbar-inner cached">
<div class="left sliding"><a href="#" class="back link"> <i class="icon icon-back"></i><span>Back</span></a></div>
<div class="center sliding">Services</div>
</div>
<!-- Navbar inner for Form page-->
<div data-page="form" class="navbar-inner cached">
<div class="left sliding"><a href="#" class="back link"> <i class="icon icon-back"></i><span>Back</span></a></div>
<div class="center sliding">Form</div>
</div>
</div>
<!-- Pages, because we need fixed-through navbar and toolbar, it has additional appropriate classes-->
<div class="pages navbar-through toolbar-through">
<!-- Index Page-->
<div data-page="index" class="page">
<!-- Scrollable page content-->
<div class="page-content">
<div class="content-block-title">Welcome To My Awesome App</div>
<div class="content-block">
<div class="content-block-inner">
<p>Couple of worlds here because my app is so awesome!</p>
<p><a href="#" quick-actions-target="#action1" class="link quick-actions">Duis sed</a> <a href="#" data-href='hi @ds' class="peekPop">erat ac</a> eros ultrices pharetra id ut tellus. Praesent rhoncus enim ornare ipsum aliquet ultricies. Pellentesque sodales erat quis elementum sagittis.</p>
</div>
</div>
<div class="content-block-title">What about simple navigation?</div>
<div class="list-block">
<ul>
<li><a href="#about" class="item-link">
<div class="item-content">
<div class="item-inner">
<div class="item-title">About</div>
</div>
</div></a></li>
<li><a href="#services" class="item-link">
<div class="item-content">
<div class="item-inner">
<div class="item-title">Services</div>
</div>
</div></a></li>
<li><a href="#form" class="item-link">
<div class="item-content">
<div class="item-inner">
<div class="item-title">Form</div>
</div>
</div></a></li>
</ul>
</div>
<div class="content-block-title">Side panels</div>
<div class="content-block">
<div class="row">
<div class="col-50"><a href="#" data-panel="left" class="button open-panel">Left Panel</a></div>
<div class="col-50"><a href="#" data-panel="right" class="button open-panel">Right Panel</a></div>
</div>
</div>
</div>
</div>
<!-- About Page-->
<div data-page="about" class="page cached">
<div class="page-content">
<div class="content-block">
<p>You may go <a href="#" class="back">back</a> or load <a href="#services">Services</a> page.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla vel commodo massa, eu adipiscing mi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Phasellus ultricies dictum neque, non varius tortor fermentum at. Curabitur auctor cursus imperdiet. Nam molestie nisi nec est lacinia volutpat in a purus. Maecenas consectetur condimentum viverra. Donec ultricies nec sem vel condimentum. Phasellus eu tincidunt enim, sit amet convallis orci. Vestibulum quis fringilla dolor. </p>
<p>Mauris commodo lacus at nisl lacinia, nec facilisis erat rhoncus. Sed eget pharetra nunc. Aenean vitae vehicula massa, sed sagittis ante. Quisque luctus nec velit dictum convallis. Nulla facilisi. Ut sed erat nisi. Donec non dolor massa. Mauris malesuada dolor velit, in suscipit leo consectetur vitae. Duis tempus ligula non eros pretium condimentum. Cras sed dolor odio.</p>
<p>Suspendisse commodo adipiscing urna, a aliquet sem egestas in. Sed tincidunt dui a magna facilisis bibendum. Nunc euismod consectetur lorem vitae molestie. Proin mattis tellus libero, non hendrerit neque eleifend ac. Pellentesque interdum velit at lacus consectetur scelerisque et id dui. Praesent non fringilla dui, a elementum purus. Proin vitae lacus libero. Nunc eget lectus non mi iaculis interdum vel a velit. Nullam tincidunt purus id lacus ornare, at elementum turpis euismod. Cras mauris enim, congue eu nisl sit amet, pulvinar semper erat. Suspendisse sed mauris diam.</p>
<p>Nam eu mauris leo. Pellentesque aliquam vehicula est, sed lobortis tellus malesuada facilisis. Fusce at hendrerit ligula. Donec eu nibh convallis, pulvinar enim quis, lacinia diam. Ut semper ac magna nec ornare. Integer placerat justo sed nunc suscipit facilisis. Vestibulum ac tincidunt augue. Duis eu aliquet mauris, vel luctus mauris. Nulla non augue nec diam pharetra posuere at in mauris.</p>
</div>
</div>
</div>
<!-- Services Page-->
<div data-page="services" class="page cached">
<div class="page-content">
<div class="content-block">
<p>You may go <a href="#" class="back">back</a> or load <a href="#about">About</a> page.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla vel commodo massa, eu adipiscing mi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Phasellus ultricies dictum neque, non varius tortor fermentum at. Curabitur auctor cursus imperdiet. Nam molestie nisi nec est lacinia volutpat in a purus. Maecenas consectetur condimentum viverra. Donec ultricies nec sem vel condimentum. Phasellus eu tincidunt enim, sit amet convallis orci. Vestibulum quis fringilla dolor. </p>
<p>Mauris commodo lacus at nisl lacinia, nec facilisis erat rhoncus. Sed eget pharetra nunc. Aenean vitae vehicula massa, sed sagittis ante. Quisque luctus nec velit dictum convallis. Nulla facilisi. Ut sed erat nisi. Donec non dolor massa. Mauris malesuada dolor velit, in suscipit leo consectetur vitae. Duis tempus ligula non eros pretium condimentum. Cras sed dolor odio.</p>
<p>Suspendisse commodo adipiscing urna, a aliquet sem egestas in. Sed tincidunt dui a magna facilisis bibendum. Nunc euismod consectetur lorem vitae molestie. Proin mattis tellus libero, non hendrerit neque eleifend ac. Pellentesque interdum velit at lacus consectetur scelerisque et id dui. Praesent non fringilla dui, a elementum purus. Proin vitae lacus libero. Nunc eget lectus non mi iaculis interdum vel a velit. Nullam tincidunt purus id lacus ornare, at elementum turpis euismod. Cras mauris enim, congue eu nisl sit amet, pulvinar semper erat. Suspendisse sed mauris diam.</p>
<p>Nam eu mauris leo. Pellentesque aliquam vehicula est, sed lobortis tellus malesuada facilisis. Fusce at hendrerit ligula. Donec eu nibh convallis, pulvinar enim quis, lacinia diam. Ut semper ac magna nec ornare. Integer placerat justo sed nunc suscipit facilisis. Vestibulum ac tincidunt augue. Duis eu aliquet mauris, vel luctus mauris. Nulla non augue nec diam pharetra posuere at in mauris. </p>
</div>
</div>
</div>
<!-- Form Page-->
<div data-page="form" class="page cached">
<div class="page-content">
<div class="content-block-title">Form Example</div>
<div class="list-block">
<ul>
<li>
<div class="item-content">
<div class="item-media"><i class="icon icon-form-name"></i></div>
<div class="item-inner">
<div class="item-title label">Name</div>
<div class="item-input">
<input type="text" placeholder="Your name">
</div>
</div>
</div>
</li>
<li>
<div class="item-content">
<div class="item-media"><i class="icon icon-form-email"></i></div>
<div class="item-inner">
<div class="item-title label">E-mail</div>
<div class="item-input">
<input type="email" placeholder="E-mail">
</div>
</div>
</div>
</li>
<li>
<div class="item-content">
<div class="item-media"><i class="icon icon-form-url"></i></div>
<div class="item-inner">
<div class="item-title label">URL</div>
<div class="item-input">
<input type="url" placeholder="URL">
</div>
</div>
</div>
</li>
<li>
<div class="item-content">
<div class="item-media"><i class="icon icon-form-password"></i></div>
<div class="item-inner">
<div class="item-title label">Password</div>
<div class="item-input">
<input type="password" placeholder="Password">
</div>
</div>
</div>
</li>
<li>
<div class="item-content">
<div class="item-media"><i class="icon icon-form-tel"></i></div>
<div class="item-inner">
<div class="item-title label">Phone</div>
<div class="item-input">
<input type="tel" placeholder="Phone">
</div>
</div>
</div>
</li>
<li>
<div class="item-content">
<div class="item-media"><i class="icon icon-form-gender"></i></div>
<div class="item-inner">
<div class="item-title label">Gender</div>
<div class="item-input">
<select>
<option>Male</option>
<option>Female</option>
</select>
</div>
</div>
</div>
</li>
<li>
<div class="item-content">
<div class="item-media"><i class="icon icon-form-calendar"></i></div>
<div class="item-inner">
<div class="item-title label">Birth date</div>
<div class="item-input">
<input type="date" placeholder="Birth day" value="2014-04-30">
</div>
</div>
</div>
</li>
<li>
<div class="item-content">
<div class="item-media"><i class="icon icon-form-toggle"></i></div>
<div class="item-inner">
<div class="item-title label">Switch</div>
<div class="item-input">
<label class="label-switch">
<input type="checkbox">
<div class="checkbox"></div>
</label>
</div>
</div>
</div>
</li>
<li>
<div class="item-content">
<div class="item-media"><i class="icon icon-form-settings"></i></div>
<div class="item-inner">
<div class="item-title label">Slider</div>
<div class="item-input">
<div class="range-slider">
<input type="range" min="0" max="100" value="50" step="0.1">
</div>
</div>
</div>
</div>
</li>
<li class="align-top">
<div class="item-content">
<div class="item-media"><i class="icon icon-form-comment"></i></div>
<div class="item-inner">
<div class="item-title label">Textarea</div>
<div class="item-input">
<textarea></textarea>
</div>
</div>
</div>
</li>
</ul>
</div>
<div class="content-block">
<div class="row">
<div class="col-50"><a href="#" class="button button-big button-fill color-red">Cancel</a></div>
<div class="col-50">
<input type="submit" value="Submit" class="button button-big button-fill color-green">
</div>
</div>
</div>
<div class="content-block-title">Checkbox group</div>
<div class="list-block">
<ul>
<li>
<label class="label-checkbox item-content">
<input type="checkbox" name="ks-checkbox" value="Books" checked>
<div class="item-media"><i class="icon icon-form-checkbox"></i></div>
<div class="item-inner">
<div class="item-title">Books</div>
</div>
</label>
</li>
<li>
<label class="label-checkbox item-content">
<input type="checkbox" name="ks-checkbox" value="Movies">
<div class="item-media"><i class="icon icon-form-checkbox"></i></div>
<div class="item-inner">
<div class="item-title">Movies</div>
</div>
</label>
</li>
<li>
<label class="label-checkbox item-content">
<input type="checkbox" name="ks-checkbox" value="Food">
<div class="item-media"><i class="icon icon-form-checkbox"></i></div>
<div class="item-inner">
<div class="item-title">Food</div>
</div>
</label>
</li>
<li>
<label class="label-checkbox item-content">
<input type="checkbox" name="ks-checkbox" value="Drinks">
<div class="item-media"><i class="icon icon-form-checkbox"></i></div>
<div class="item-inner">
<div class="item-title">Drinks</div>
</div>
</label>
</li>
</ul>
</div>
<div class="content-block-title">Radio buttons group</div>
<div class="list-block">
<ul>
<li>
<label class="label-radio item-content">
<input type="radio" name="ks-radio" value="Books" checked>
<div class="item-inner">
<div class="item-title">Books</div>
</div>
</label>
</li>
<li>
<label class="label-radio item-content">
<input type="radio" name="ks-radio" value="Movies">
<div class="item-inner">
<div class="item-title">Movies</div>
</div>
</label>
</li>
<li>
<label class="label-radio item-content">
<input type="radio" name="ks-radio" value="Food">
<div class="item-inner">
<div class="item-title">Food</div>
</div>
</label>
</li>
<li>
<label class="label-radio item-content">
<input type="radio" name="ks-radio" value="Drinks">
<div class="item-inner">
<div class="item-title">Drinks</div>
</div>
</label>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Bottom Toolbar-->
<div class="toolbar">
<div class="toolbar-inner">
<a href="#" class="link">Link 1</a>
<a href="#" class="link">Link 2</a></div>
</div>
</div>
</div>
<!-- Quick actions -->
<ul id="action1" class="quick-actions-menu">
<li class="quickaction-item sub-menu-item">
<a class="quickaction-link" href="#">New message</a>
</li>
<li class="quickaction-item sub-menu-item">
<a class="quickaction-link" href="#">Inbox</a>
</li>
</ul>
<!-- Peek and Pop -->
<!-- Path to Framework7 Library JS-->
<script type="text/javascript" src="https://framework7.io/dist/js/framework7.min.js"></script>
<!-- Path to your app js-->
<script type="text/javascript" src="js/Hammer.js"></script>
<!-- Maybe in future: script type="text/javascript" src="js/Forcify.js"></script-->
<script type="text/javascript" src="js/Framework7.QuickActions.js"></script>
<script type="text/javascript" src="js/my-app.js"></script>
</body>
</html>
| dalisoft/Framework7-QuickAction | index.html | HTML | mit | 20,660 |
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="shortcut icon" href="http://www.entwicklungshilfe.nrw/typo3conf/ext/wmdb_base_ewh/Resources/Public/img/favicon.ico" type="image/x-icon">
<title>oh-my-zsh Präsentation von Php-Schulung Entwicklungshilfe</title>
<meta name="description" content="oh-my-zsh - Terminal effektiv mit Plugins nutzen PHP-Schulung">
<meta name="author" content="Entwicklungshilfe NRW">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/black.css">
<link rel="stylesheet" href="css/theme/eh.css">
<link rel="stylesheet" href="#" id="theme">
<!-- Code syntax highlighting -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
<script type="text/javascript">
if(window.location.search.substring(1)){
document.getElementById("theme").href = "css/theme/"+window.location.search.substring(1)+".css";
}
</script>
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section>
<h1>oh-my-zsh</h1>
<h3>Entwicklungshilfe</h3>
<p>
<a href="http://entwicklungshilfe.nrw" target="_blank">entwicklungshilfe.nrw</a> / <a href="http://twitter.com/help_for_devs" target="_blank">@help_for_devs</a> /
<a href="https://www.facebook.com/entwicklungshilfe.nrw" target="_blank">FB/entwicklungshilfe.nrw</a><br>
<small>
<a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/black.css'); return false;">Black</a>
<a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/white.css'); return false;">White</a>
<a href="#" onclick="document.getElementById('theme').setAttribute('href',''); return false;">EH</a>
</small>
</p>
<aside class="notes">
Don't forget notes
</aside>
</section>
<section>
<section>
<p>
<h3>Powerline font</h3>
<a href="https://github.com/powerline/fonts/blob/master/Meslo/Meslo%20LG%20L%20DZ%20Regular%20for%20Powerline.otf" target="_blank">
https://github.com/powerline/fonts/blob/master/Meslo/Meslo%20LG%20L%20DZ%20Regular%20for%20Powerline.otf
</a><br>
press raw and install <br>
<h4>ZSH installieren</h4>
<a href="https://github.com/robbyrussell/oh-my-zsh" target="_blank">https://github.com/robbyrussell/oh-my-zsh</a><br>
curl -L https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh<br>
or<br>
wget https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O - | sh
</p>
</section>
<section>
<h2>Installation</h2>
<h3>Solarized Theme</h3>
<a href="http://ethanschoonover.com/solarized/files/solarized.zip" target="_blank">http://ethanschoonover.com/solarized/files/solarized.zip</a><br>
unpack and in folder "iterm2-colors-solarized" the "Solrized Dark.itermcolors" double click
</section>
<section>
<h2>Installation</h2>
Open iTerm and pres "cmd + ," at colors "Load Presents" dropdown "Solarized dark".
<p>
<img src="img/oh-my-zsh/SOLARIZED-THEME.png" alt="SOLARIZED THEME iTerm">
</p>
</section>
<section>
<h2>Installation</h2>
Set the new font
<p>
<img src="img/oh-my-zsh/font-settings.png" alt="iTerm font setting">
</p>
</section>
<section>
<h2>Installation</h2>
brew install fortune <br>
brew install cowsay <br>
vim .zshrc<br>
ZSH_THEME="agnoster"<br>
plugins=(git jump jira osx z extract chucknorris history zsh-syntax-highlighting vi-mode web-search history-substring-search)<br>
Iterm restart or open new tab. Enter this command<br>
echo -e "\ue0a0 \ue0a1 \ue0a2 \ue0b0 \ue0b1 \ue0b2"
<p>
<img src="img/oh-my-zsh/test-output.png" alt="oh-my-zsh output">
</p>
</section>
</section>
<section>
<section>
<h2>Sources</h2>
Plugin wiki<br>
<a href="https://github.com/robbyrussell/oh-my-zsh/wiki/Plugins" target="_blank">https://github.com/robbyrussell/oh-my-zsh/wiki/Plugins</a><br>
Cheatsheet<br>
<a href="https://github.com/robbyrussell/oh-my-zsh/wiki/Cheatsheet" target="_blank">https://github.com/robbyrussell/oh-my-zsh/wiki/Cheatsheet</a>
</section>
<section>
<h2>Directories</h2>
<table>
<thead>
<tr>
<th>Alias</th>
<th>Command</th>
</tr>
</thead>
<tbody>
<tr>
<td align="left"><em>alias</em></td>
<td align="left">list all aliases</td>
</tr>
<tr>
<td align="left">..</td>
<td align="left">cd ..</td>
</tr>
<tr>
<td align="left">...</td>
<td align="left">cd ../..</td>
</tr>
<tr>
<td align="left">....</td>
<td align="left">cd ../../..</td>
</tr>
<tr>
<td align="left">.....</td>
<td align="left">cd ../../../..</td>
</tr>
<tr>
<td align="left">/</td>
<td align="left">cd /</td>
</tr>
<tr>
<td align="left"><em>md</em></td>
<td align="left">mkdir -p</td>
</tr>
<tr>
<td align="left"><em>rd</em></td>
<td align="left">rmdir</td>
</tr>
<tr>
<td align="left"><em>d</em></td>
<td align="left">dirs -v (lists last used directories)</td>
</tr>
<tr>
<td align="left"><em>~3</em></td>
<td align="left">cd to dir -v 3</td>
</tr>
</tbody>
</table>
</section>
<section>
<h2>Usefull git alias</h2>
<table>
<thead>
<tr>
<th>Alias</th>
<th>Command</th>
</tr>
</thead>
<tbody>
<tr>
<td align="left"><em>gst</em></td>
<td align="left">git status</td>
</tr>
<tr>
<td align="left"><em>gf</em></td>
<td align="left">git fetch</td>
</tr>
<tr>
<td align="left"><em>gl</em></td>
<td align="left">git pull</td>
</tr>
<tr>
<td align="left"><em>gp</em></td>
<td align="left">git push</td>
</tr>
<tr>
<td align="left"><em>gaa</em></td>
<td align="left">git add --all</td>
</tr>
<tr>
<td align="left"><em>gco</em></td>
<td align="left">git checkout</td>
</tr>
<tr>
<td align="left"><em>gcmsg</em></td>
<td align="left">git commit -m</td>
</tr>
<tr>
<td align="left"><em>gclean</em></td>
<td align="left">git clean -fd</td>
</tr>
<tr>
<td align="left"><em>gcb</em></td>
<td align="left">git checkout -b</td>
</tr>
<tr>
<td align="left"><em>gcm</em></td>
<td align="left">git checkout master</td>
</tr>
</tbody>
</table>
</section>
<section>
<h2>Jump plugin</h2>
<table>
<thead>
<tr>
<th>Alias</th>
<th>Command</th>
</tr>
</thead>
<tbody>
<tr>
<td align="left"><em>mark</em></td>
<td align="left">mark actual folder with name as mark</td>
</tr>
<tr>
<td align="left"><em>mark yourname</em></td>
<td align="left">mark actual folder with yourname as mark</td>
</tr>
<tr>
<td align="left"><em>jump yourname</em></td>
<td align="left">jump to folder yourname</td>
</tr>
<tr>
<td align="left"><em>unmark yourname</em></td>
<td align="left">remove</td>
</tr>
</tbody>
</table>
</section>
<section>
<h2>OSX plugin</h2>
<table>
<thead>
<tr>
<th align="left">Command</th>
<th align="left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td align="left"><em>tab</em></td>
<td align="left">open the current directory in a new tab</td>
</tr>
<tr>
<td align="left"><em>cdf</em></td>
<td align="left">cd to the current Finder directory</td>
</tr>
</tbody>
</table>
</section>
<section>
<h2>JIRA plugin</h2>
<table>
<thead>
<tr>
<th align="left">Command</th>
<th align="left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td align="left"><em>jira</em></td>
<td align="left">Open new issue form in browser</td>
</tr>
<tr>
<td align="left"><em>jira ABC-123</em></td>
<td align="left">Open issue in browser</td>
</tr>
</tbody>
</table>
</section>
<section>
<h2>History plugin</h2>
<table>
<thead>
<tr>
<th align="left">Alias</th>
<th align="left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td align="left"><em>h</em></td>
<td align="left">List your command history. Equivalent to using <code>history</code>
</td>
</tr>
<tr>
<td align="left"><em>hsi</em></td>
<td align="left">When called without an argument you will get help on <code>grep</code> arguments</td>
</tr>
</tbody>
</table>
</section>
<section>
<h2>Extract plugin</h2>
<table>
<thead>
<tr>
<th align="left">Alias</th>
<th align="left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td align="left"><em>extract filename</em></td>
<td align="left">Extract any compressed file<code>history</code>
</td>
</tr>
</tbody>
</table>
</section>
</section>
<section style="text-align: left;">
<h1>Questions?</h1>
</section>
<section style="text-align: left;">
<h1>Thanks</h1>
</section>
<section style="text-align: left;">
<h1>Follow us!</h1>
<div class="col"><i class="follow-icon"><img src="img/twitter.png" alt="Entwicklungshilfe NRW Twitter"></i> <a href="https://twitter.com/help_for_devs" target="_blank">https://twitter.com/help_for_devs</a></div>
<div class="col"><i class="follow-icon"><img src="img/facebook.png" alt="Entwicklungshilfe NRW Facebook"></i> <a href="https://www.facebook.com/entwicklungshilfe.nrw" target="_blank">https://www.facebook.com/entwicklungshilfe.nrw</a></div>
<div class="col"><i class="follow-icon"><img src="img/github.png" alt="Entwicklungshilfe NRW Github"></i> <a href="https://github.com/entwicklungshilfe-nrw" target="_blank">https://github.com/entwicklungshilfe-nrw</a></div>
</section>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.js"></script>
<script>
// Full list of configuration options available at:
// https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
transition: 'slide', // none/fade/slide/convex/concave/zoom
// Optional reveal.js plugins
dependencies: [
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/highlight/highlight.js', async: true, condition: function() { return !!document.querySelector( 'pre code' ); }, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'plugin/zoom-js/zoom.js', async: true },
{ src: 'plugin/notes/notes.js', async: true }
]
});
</script>
<script src="js/ga.js"></script>
</body>
</html>
| Entwicklungshilfe-NRW/Presentations | oh-my-zsh.html | HTML | mit | 19,608 |
<!DOCTYPE html>
<!--[if lt IE 9]><html class="no-js lt-ie9" lang="en" dir="ltr"><![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js" lang="en" dir="ltr">
<!--<![endif]-->
<!-- Usage: /eic/site/ccc-rec.nsf/tpl-eng/template-1col.html?Open&id=3 (optional: ?Open&page=filename.html&id=x) -->
<!-- Created: ; Product Code: 536; Server: stratnotes2.ic.gc.ca -->
<head>
<!-- Title begins / Début du titre -->
<title>
Groupe Giroux -
Complete profile - Canadian Company Capabilities - Industries and Business - Industry Canada
</title>
<!-- Title ends / Fin du titre -->
<!-- Meta-data begins / Début des métadonnées -->
<meta charset="utf-8" />
<meta name="dcterms.language" title="ISO639-2" content="eng" />
<meta name="dcterms.title" content="" />
<meta name="description" content="" />
<meta name="dcterms.description" content="" />
<meta name="dcterms.type" content="report, data set" />
<meta name="dcterms.subject" content="businesses, industry" />
<meta name="dcterms.subject" content="businesses, industry" />
<meta name="dcterms.issued" title="W3CDTF" content="" />
<meta name="dcterms.modified" title="W3CDTF" content="" />
<meta name="keywords" content="" />
<meta name="dcterms.creator" content="" />
<meta name="author" content="" />
<meta name="dcterms.created" title="W3CDTF" content="" />
<meta name="dcterms.publisher" content="" />
<meta name="dcterms.audience" title="icaudience" content="" />
<meta name="dcterms.spatial" title="ISO3166-1" content="" />
<meta name="dcterms.spatial" title="gcgeonames" content="" />
<meta name="dcterms.format" content="HTML" />
<meta name="dcterms.identifier" title="ICsiteProduct" content="536" />
<!-- EPI-11240 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- MCG-202 -->
<meta content="width=device-width,initial-scale=1" name="viewport">
<!-- EPI-11567 -->
<meta name = "format-detection" content = "telephone=no">
<!-- EPI-12603 -->
<meta name="robots" content="noarchive">
<!-- EPI-11190 - Webtrends -->
<script>
var startTime = new Date();
startTime = startTime.getTime();
</script>
<!--[if gte IE 9 | !IE ]><!-->
<link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="icon" type="image/x-icon">
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/wet-boew.min.css">
<!--<![endif]-->
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/theme.min.css">
<!--[if lt IE 9]>
<link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="shortcut icon" />
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/ie8-wet-boew.min.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew.min.js"></script>
<![endif]-->
<!--[if lte IE 9]>
<![endif]-->
<noscript><link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/noscript.min.css" /></noscript>
<!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER -->
<script>dataLayer1 = [];</script>
<!-- End Google Tag Manager -->
<!-- EPI-11235 -->
<link rel="stylesheet" href="/eic/home.nsf/css/add_WET_4-0_Canada_Apps.css">
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<link href="/app/ccc/srch/css/print.css" media="print" rel="stylesheet" type="text/css" />
</head>
<body class="home" vocab="http://schema.org/" typeof="WebPage">
<!-- EPIC HEADER BEGIN -->
<!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER -->
<noscript><iframe title="Google Tag Manager" src="//www.googletagmanager.com/ns.html?id=GTM-TLGQ9K" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer1'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer1','GTM-TLGQ9K');</script>
<!-- End Google Tag Manager -->
<!-- EPI-12801 -->
<span typeof="Organization"><meta property="legalName" content="Department_of_Industry"></span>
<ul id="wb-tphp">
<li class="wb-slc">
<a class="wb-sl" href="#wb-cont">Skip to main content</a>
</li>
<li class="wb-slc visible-sm visible-md visible-lg">
<a class="wb-sl" href="#wb-info">Skip to "About this site"</a>
</li>
</ul>
<header role="banner">
<div id="wb-bnr" class="container">
<section id="wb-lng" class="visible-md visible-lg text-right">
<h2 class="wb-inv">Language selection</h2>
<div class="row">
<div class="col-md-12">
<ul class="list-inline mrgn-bttm-0">
<li><a href="nvgt.do?V_TOKEN=1492289850357&V_SEARCH.docsCount=3&V_DOCUMENT.docRank=20428&V_SEARCH.docsStart=20427&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=/prfl.do&lang=fra&redirectUrl=/app/scr/imbs/ccc/rgstrtn/updt.sec?_flId?_flxKy=e1s1&estblmntNo=234567041301&profileId=61&_evId=bck&lang=eng&V_SEARCH.showStricts=false&prtl=1&_flId?_flId?_flxKy=e1s1" title="Français" lang="fr">Français</a></li>
</ul>
</div>
</div>
</section>
<div class="row">
<div class="brand col-xs-8 col-sm-9 col-md-6">
<a href="http://www.canada.ca/en/index.html"><object type="image/svg+xml" tabindex="-1" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/sig-blk-en.svg"></object><span class="wb-inv"> Government of Canada</span></a>
</div>
<section class="wb-mb-links col-xs-4 col-sm-3 visible-sm visible-xs" id="wb-glb-mn">
<h2>Search and menus</h2>
<ul class="list-inline text-right chvrn">
<li><a href="#mb-pnl" title="Search and menus" aria-controls="mb-pnl" class="overlay-lnk" role="button"><span class="glyphicon glyphicon-search"><span class="glyphicon glyphicon-th-list"><span class="wb-inv">Search and menus</span></span></span></a></li>
</ul>
<div id="mb-pnl"></div>
</section>
<!-- Site Search Removed -->
</div>
</div>
<nav role="navigation" id="wb-sm" class="wb-menu visible-md visible-lg" data-trgt="mb-pnl" data-ajax-fetch="//cdn.canada.ca/gcweb-cdn-dev/sitemenu/sitemenu-en.html" typeof="SiteNavigationElement">
<h2 class="wb-inv">Topics menu</h2>
<div class="container nvbar">
<div class="row">
<ul class="list-inline menu">
<li><a href="https://www.canada.ca/en/services/jobs.html">Jobs</a></li>
<li><a href="http://www.cic.gc.ca/english/index.asp">Immigration</a></li>
<li><a href="https://travel.gc.ca/">Travel</a></li>
<li><a href="https://www.canada.ca/en/services/business.html">Business</a></li>
<li><a href="https://www.canada.ca/en/services/benefits.html">Benefits</a></li>
<li><a href="http://healthycanadians.gc.ca/index-eng.php">Health</a></li>
<li><a href="https://www.canada.ca/en/services/taxes.html">Taxes</a></li>
<li><a href="https://www.canada.ca/en/services.html">More services</a></li>
</ul>
</div>
</div>
</nav>
<!-- EPIC BODY BEGIN -->
<nav role="navigation" id="wb-bc" class="" property="breadcrumb">
<h2 class="wb-inv">You are here:</h2>
<div class="container">
<div class="row">
<ol class="breadcrumb">
<li><a href="/eic/site/icgc.nsf/eng/home" title="Home">Home</a></li>
<li><a href="/eic/site/icgc.nsf/eng/h_07063.html" title="Industries and Business">Industries and Business</a></li>
<li><a href="/eic/site/ccc-rec.nsf/tpl-eng/../eng/home" >Canadian Company Capabilities</a></li>
</ol>
</div>
</div>
</nav>
</header>
<main id="wb-cont" role="main" property="mainContentOfPage" class="container">
<!-- End Header -->
<!-- Begin Body -->
<!-- Begin Body Title -->
<!-- End Body Title -->
<!-- Begin Body Head -->
<!-- End Body Head -->
<!-- Begin Body Content -->
<br>
<!-- Complete Profile -->
<!-- Company Information above tabbed area-->
<input id="showMore" type="hidden" value='more'/>
<input id="showLess" type="hidden" value='less'/>
<h1 id="wb-cont">
Company profile - Canadian Company Capabilities
</h1>
<div class="profileInfo hidden-print">
<ul class="list-inline">
<li><a href="cccSrch.do?lang=eng&profileId=&prtl=1&key.hitsPerPage=25&searchPage=%252Fapp%252Fccc%252Fsrch%252FcccBscSrch.do%253Flang%253Deng%2526amp%253Bprtl%253D1%2526amp%253Btagid%253D&V_SEARCH.scopeCategory=CCC.Root&V_SEARCH.depth=1&V_SEARCH.showStricts=false&V_SEARCH.sortSpec=title+asc&rstBtn.x=" class="btn btn-link">New Search</a> |</li>
<li><form name="searchForm" method="post" action="/app/ccc/srch/bscSrch.do">
<input type="hidden" name="lang" value="eng" />
<input type="hidden" name="profileId" value="" />
<input type="hidden" name="prtl" value="1" />
<input type="hidden" name="searchPage" value="%2Fapp%2Fccc%2Fsrch%2FcccBscSrch.do%3Flang%3Deng%26amp%3Bprtl%3D1%26amp%3Btagid%3D" />
<input type="hidden" name="V_SEARCH.scopeCategory" value="CCC.Root" />
<input type="hidden" name="V_SEARCH.depth" value="1" />
<input type="hidden" name="V_SEARCH.showStricts" value="false" />
<input id="repeatSearchBtn" class="btn btn-link" type="submit" value="Return to search results" />
</form></li>
<li>| <a href="nvgt.do?V_SEARCH.docsStart=20426&V_DOCUMENT.docRank=20427&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492289857012&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=234567088754&profileId=&key.newSearchLabel=">Previous Company</a></li>
<li>| <a href="nvgt.do?V_SEARCH.docsStart=20428&V_DOCUMENT.docRank=20429&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492289857012&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=234567144903&profileId=&key.newSearchLabel=">Next Company</a></li>
</ul>
</div>
<details>
<summary>Third-Party Information Liability Disclaimer</summary>
<p>Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.</p>
</details>
<h2>
Groupe Giroux
</h2>
<div class="row">
<div class="col-md-5">
<h2 class="h5 mrgn-bttm-0">Legal/Operating Name:</h2>
<p>Groupe Giroux</p>
<div class="mrgn-tp-md"></div>
<p class="mrgn-bttm-0" ><a href="http://www.arpentage.com"
target="_blank" title="Website URL">http://www.arpentage.com</a></p>
<p><a href="mailto:grg@arpentage.com" title="grg@arpentage.com">grg@arpentage.com</a></p>
</div>
<div class="col-md-4 mrgn-sm-sm">
<h2 class="h5 mrgn-bttm-0">Mailing Address:</h2>
<address class="mrgn-bttm-md">
675, boul. Alphonse-Desjardins<br/>
Bureau 102<br/>
LÉVIS,
Quebec<br/>
G6V 5T3
<br/>
</address>
<h2 class="h5 mrgn-bttm-0">Location Address:</h2>
<address class="mrgn-bttm-md">
675, boul. Alphonse-Desjardins<br/>
Bureau 102<br/>
LÉVIS,
Quebec<br/>
G6V 5T3
<br/>
</address>
<p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>:
(418) 652-8838
</p>
<p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>:
(866) 838-9961</p>
<p class="mrgn-bttm-lg"><abbr title="Facsimile">Fax</abbr>:
(418) 652-0119</p>
</div>
<div class="col-md-3 mrgn-tp-md">
</div>
</div>
<div class="row mrgn-tp-md mrgn-bttm-md">
<div class="col-md-12">
<h2 class="wb-inv">Company Profile</h2>
<br> Services en arpentage foncier et de construction.
<br>Cadastres, certificats de localisation, relevés topographiques,
<br>Mesurage d'espaces locatifs, cadastre vertical (copropriété).
<br>Implantation de structures et de bâtiments de toutes natures,
<br>etc..<br>
</div>
</div>
<!-- <div class="wb-tabs ignore-session update-hash wb-eqht-off print-active"> -->
<div class="wb-tabs ignore-session">
<div class="tabpanels">
<details id="details-panel1">
<summary>
Full profile
</summary>
<!-- Tab 1 -->
<h2 class="wb-invisible">
Full profile
</h2>
<!-- Contact Information -->
<h3 class="page-header">
Contact information
</h3>
<section class="container-fluid">
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
ALAIN
GOSSELIN
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
ARPENTEUR-GEOMETRE <br>
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(418) 838-9961
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(418) 832-7180
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
agosseli@riq.qc.ca
</div>
</div>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Company Description -->
<h3 class="page-header">
Company description
</h3>
<section class="container-fluid">
<div class="row">
<div class="col-md-5">
<strong>
Country of Ownership:
</strong>
</div>
<div class="col-md-7">
Canada
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Year Established:
</strong>
</div>
<div class="col-md-7">
1971
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Exporting:
</strong>
</div>
<div class="col-md-7">
No
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Industry (NAICS):
</strong>
</div>
<div class="col-md-7">
541370 - Surveying and Mapping (except Geophysical) Services
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Services
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Number of Employees:
</strong>
</div>
<div class="col-md-7">
12
</div>
</div>
</section>
<!-- Products / Services / Licensing -->
<h3 class="page-header">
Product / Service / Licensing
</h3>
<section class="container-fluid">
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
Land surveying <br>
</div>
</div>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Technology Profile -->
<!-- Market Profile -->
<!-- Sector Information -->
<details class="mrgn-tp-md mrgn-bttm-md">
<summary>
Third-Party Information Liability Disclaimer
</summary>
<p>
Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.
</p>
</details>
</details>
<details id="details-panel2">
<summary>
Contacts
</summary>
<h2 class="wb-invisible">
Contact information
</h2>
<!-- Contact Information -->
<section class="container-fluid">
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
ALAIN
GOSSELIN
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
ARPENTEUR-GEOMETRE <br>
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(418) 838-9961
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(418) 832-7180
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
agosseli@riq.qc.ca
</div>
</div>
</section>
</details>
<details id="details-panel3">
<summary>
Description
</summary>
<h2 class="wb-invisible">
Company description
</h2>
<section class="container-fluid">
<div class="row">
<div class="col-md-5">
<strong>
Country of Ownership:
</strong>
</div>
<div class="col-md-7">
Canada
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Year Established:
</strong>
</div>
<div class="col-md-7">
1971
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Exporting:
</strong>
</div>
<div class="col-md-7">
No
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Industry (NAICS):
</strong>
</div>
<div class="col-md-7">
541370 - Surveying and Mapping (except Geophysical) Services
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Services
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Number of Employees:
</strong>
</div>
<div class="col-md-7">
12
</div>
</div>
</section>
</details>
<details id="details-panel4">
<summary>
Products, services and licensing
</summary>
<h2 class="wb-invisible">
Product / Service / Licensing
</h2>
<section class="container-fluid">
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
Land surveying <br>
</div>
</div>
</section>
</details>
</div>
</div>
<div class="row">
<div class="col-md-12 text-right">
Last Update Date 2017-03-03
</div>
</div>
<!--
- Artifact ID: CBW - IMBS - CCC Search WAR
- Group ID: ca.gc.ic.strategis.imbs.ccc.search
- Version: 3.26
- Built-By: bamboo
- Build Timestamp: 2017-03-02T21:29:28Z
-->
<!-- End Body Content -->
<!-- Begin Body Foot -->
<!-- End Body Foot -->
<!-- END MAIN TABLE -->
<!-- End body -->
<!-- Begin footer -->
<div class="row pagedetails">
<div class="col-sm-5 col-xs-12 datemod">
<dl id="wb-dtmd">
<dt class=" hidden-print">Date Modified:</dt>
<dd class=" hidden-print">
<span><time>2017-03-02</time></span>
</dd>
</dl>
</div>
<div class="clear visible-xs"></div>
<div class="col-sm-4 col-xs-6">
</div>
<div class="col-sm-3 col-xs-6 text-right">
</div>
<div class="clear visible-xs"></div>
</div>
</main>
<footer role="contentinfo" id="wb-info">
<nav role="navigation" class="container wb-navcurr">
<h2 class="wb-inv">About government</h2>
<!-- EPIC FOOTER BEGIN -->
<!-- EPI-11638 Contact us -->
<ul class="list-unstyled colcount-sm-2 colcount-md-3">
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07026.html#pageid=E048-H00000&from=Industries">Contact us</a></li>
<li><a href="https://www.canada.ca/en/government/dept.html">Departments and agencies</a></li>
<li><a href="https://www.canada.ca/en/government/publicservice.html">Public service and military</a></li>
<li><a href="https://www.canada.ca/en/news.html">News</a></li>
<li><a href="https://www.canada.ca/en/government/system/laws.html">Treaties, laws and regulations</a></li>
<li><a href="https://www.canada.ca/en/transparency/reporting.html">Government-wide reporting</a></li>
<li><a href="http://pm.gc.ca/eng">Prime Minister</a></li>
<li><a href="https://www.canada.ca/en/government/system.html">How government works</a></li>
<li><a href="http://open.canada.ca/en/">Open government</a></li>
</ul>
</nav>
<div class="brand">
<div class="container">
<div class="row">
<nav class="col-md-10 ftr-urlt-lnk">
<h2 class="wb-inv">About this site</h2>
<ul>
<li><a href="https://www.canada.ca/en/social.html">Social media</a></li>
<li><a href="https://www.canada.ca/en/mobile.html">Mobile applications</a></li>
<li><a href="http://www1.canada.ca/en/newsite.html">About Canada.ca</a></li>
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html">Terms and conditions</a></li>
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html#p1">Privacy</a></li>
</ul>
</nav>
<div class="col-xs-6 visible-sm visible-xs tofpg">
<a href="#wb-cont">Top of Page <span class="glyphicon glyphicon-chevron-up"></span></a>
</div>
<div class="col-xs-6 col-md-2 text-right">
<object type="image/svg+xml" tabindex="-1" role="img" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/wmms-blk.svg" aria-label="Symbol of the Government of Canada"></object>
</div>
</div>
</div>
</div>
</footer>
<!--[if gte IE 9 | !IE ]><!-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/wet-boew.min.js"></script>
<!--<![endif]-->
<!--[if lt IE 9]>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew2.min.js"></script>
<![endif]-->
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/theme.min.js"></script>
<!-- EPI-10519 -->
<span class="wb-sessto"
data-wb-sessto='{"inactivity": 1800000, "reactionTime": 180000, "sessionalive": 1800000, "logouturl": "/app/ccc/srch/cccSrch.do?lang=eng&prtl=1"}'></span>
<script src="/eic/home.nsf/js/jQuery.externalOpensInNewWindow.js"></script>
<!-- EPI-11190 - Webtrends -->
<script src="/eic/home.nsf/js/webtrends.js"></script>
<script>var endTime = new Date();</script>
<noscript>
<div><img alt="" id="DCSIMG" width="1" height="1" src="//wt-sdc.ic.gc.ca/dcs6v67hwe0ei7wsv8g9fv50d_3k6i/njs.gif?dcsuri=/nojavascript&WT.js=No&WT.tv=9.4.0&dcssip=www.ic.gc.ca"/></div>
</noscript>
<!-- /Webtrends -->
<!-- JS deps -->
<script src="/eic/home.nsf/js/jquery.imagesloaded.js"></script>
<!-- EPI-11262 - Util JS -->
<script src="/eic/home.nsf/js/_WET_4-0_utils_canada.min.js"></script>
<!-- EPI-11383 -->
<script src="/eic/home.nsf/js/jQuery.icValidationErrors.js"></script>
<span style="display:none;" id='app-info' data-project-groupid='' data-project-artifactid='' data-project-version='' data-project-build-timestamp='' data-issue-tracking='' data-scm-sha1='' data-scm-sha1-abbrev='' data-scm-branch='' data-scm-commit-date=''></span>
</body></html>
<!-- End Footer -->
<!--
- Artifact ID: CBW - IMBS - CCC Search WAR
- Group ID: ca.gc.ic.strategis.imbs.ccc.search
- Version: 3.26
- Built-By: bamboo
- Build Timestamp: 2017-03-02T21:29:28Z
-->
| GoC-Spending/data-corporations | html/123456225077.html | HTML | mit | 34,161 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.13"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>alternative Standard Libary: Elementverzeichnis</title>
<link href="../../tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="../../jquery.js"></script>
<script type="text/javascript" src="../../dynsections.js"></script>
<link href="../../navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="../../resize.js"></script>
<script type="text/javascript" src="../../navtreedata.js"></script>
<script type="text/javascript" src="../../navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
</script>
<link href="../../doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="../../Logo128x128.png"/></td>
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">alternative Standard Libary
 <span id="projectnumber">0.29.8</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Erzeugt von Doxygen 1.8.13 -->
<script type="text/javascript" src="../../menudata.js"></script>
<script type="text/javascript" src="../../menu.js"></script>
<script type="text/javascript">
$(function() {
initMenu('../../',false,false,'search.php','Suchen');
});
</script>
<div id="main-nav"></div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('da/d13/classstd_1_1_sys.html','../../');});
</script>
<div id="doc-content">
<div class="header">
<div class="headertitle">
<div class="title">std::Sys Elementverzeichnis</div> </div>
</div><!--header-->
<div class="contents">
<p>Vollständige Aufstellung aller Elemente für <a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a> einschließlich aller geerbten Elemente.</p>
<table class="directory">
<tr class="even"><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#ac9f240e055773c6ef6b320ed3d9f3acf">fClose</a>(void *file)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#ac9cb96093b35fe96793d756c2888a1f1">fEOF</a>(void *file)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#a8fd94047f1bedca9a81b335874d2733a">fError</a>(void *file)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#a610720c05d13d45ac5f1ad892feaef7f">fFlush</a>(void *file)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#ae69ad2e413c751ae56644ccf69daba3a">fGetc</a>(void *file)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#a6e4d49f77b2b856c91a44a38b64c1d53">fIsFile</a>(const char *file)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#aee6ea3afc7237d4234b5bc43dc3231c6">fOpen</a>(const char *file, const char *fmt)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#a025c18bdd6a88e4d26482d10429a95ec">fPrintf</a>(void *file, const char *str)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#a2f3038727c96c808d92532b62382e037">fPutc</a>(int c, void *file)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#a27592f565d19984eac4e5c16dbb52429">fPuts</a>(const char *str, void *file)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#a8e07d03fdef76804b9a6eea7e97e1035">fRead</a>(void *data, const int count, const int size, void *file)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#ac14981aad284603b985b1e6470843e88">fSeek</a>(void *file, int off, int org)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#aca38e582c676c1087650aef98c7c0543">fTell</a>(void *file)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#a8032132dd583eb289416a1b19ce85e37">fWrite</a>(void *data, const int count, const int size, void *file)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#a3ae3057f26fbb3e72e4a8af62efdf5c6">mAlloc</a>(size_t size)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#a04e4cc78efb94cd4b50162d1637288ae">mAllocE</a>(int elements)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#a9c9c270714511ce17ca1ffd134597907">MemCpy</a>(void *to, const void *from, size_t bytes)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#abf561c077094bd7b266b7734c73e66da">MemMove</a>(void *to, const void *from, size_t bytes)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#ad5bfc790ccaf985e62ad98da9c947ab0">MemSet</a>(void *buf, unsigned char value, size_t bytes)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#a9a9b2d41667f1c106815c6f9edc698fc">mFree</a>(void *mem)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#a0d71e77caef7d86e01af361b1cb13353">mReAlloc</a>(void *old, size_t newSize)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#ac4f3ff28de45a311f03a1e72af0c15f9">mutex_init_t</a> enum-Bezeichner</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#af9f019109cea02d650c0da099f1d70a2">mutex_type</a> typedef</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#abfb1f1b9ac68790344334a2200e8021c">mutexDestroy</a>(mutex_type *mutex)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#a6c0d6b0dc8bbe584027581f446d4279d">mutexInit</a>(mutex_type *mutex, mutex_init_t type=mutex_init_t::Normal, bool shared=false, bool robust=false)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#acef59477c62a5153727cba3626c5e259">mutexLock</a>(mutex_type *mutex)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#abe695d31d915cdc7c2476bfbeae35a0e">mutexTryLock</a>(mutex_type *mutex)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#a7221035092b3fa10172d60c821a1064a">mutexUnLock</a>(mutex_type *mutex)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#a2fa77232e349020516438ac4940e8f1a">pTotalMem</a>()</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#a19eaed4ae0cf3ec1e333b6f9901d67a7">spinlk_type</a> typedef</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#a3e7ba115ebb0f563e37927cfb7e85344">spinlockDestroy</a>(spinlk_type *mutex)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#a65e031f3724520464f9a98dc7bb48e9e">spinlockInit</a>(spinlk_type *mutex, const void *attr)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#abcb5c5bcc747c46c3670944a327727af">spinlockLock</a>(spinlk_type *mutex)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#a9453448f147d0c2d83187ec2c8033089">spinlockTryLock</a>(spinlk_type *mutex)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#ae408c7a7438d031c7c853229a31eff63">spinlockUnLock</a>(spinlk_type *mutex)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#a478df7ee0c293a50d589680380c9cbfc">vsnPrintf</a>(char *buffer, size_t count, const char *format, va_list argptr)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#aac49efae5fffa0c4ab9fd88060b8f218">wMemCpy</a>(void *to, const void *from, size_t bytes)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#a3979b4517ff8cad46e14abf65d9604cc">wMemMove</a>(void *to, const void *from, size_t bytes)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html#a7df3f8541dc4ba26336983134b6772d3">wMemSet</a>(void *buf, unsigned char value, size_t bytes)</td><td class="entry"><a class="el" href="../../da/d13/classstd_1_1_sys.html">std::Sys</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
</table></div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="footer">Erzeugt von
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="../../doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
</ul>
</div>
</body>
</html>
| RoseLeBlood/aSTL | docs/html/da/d52/classstd_1_1_sys-members.html | HTML | mit | 15,410 |
<!DOCTYPE html>
<html lang="en">
<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>Stranger Things Wall</title>
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<img src="img/vacio.gif" alt="" id="img" class="img"/>
<p class="txt">Presiona una tecla</p>
<script src="js/script.js"></script>
</body>
</html>
| chepegeek/stranger-things | index.html | HTML | mit | 441 |
<html>
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
<title>Blog | Guilherme Matheus Costa</title>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link href="/css/essentials.min.css" rel="stylesheet" type="text/css"/>
<meta property="og:site_name" content="Guilherme Matheus Costa"/>
</head>
<body>
<h1>Guilherme Matheus Costa</h1>
<h2>Resume</h2>
</body>
</html> | GuilhermeMatheus/GuilhermeMatheus.github.io | pages/resume.html | HTML | mit | 467 |
<article class="home_single_post gallery_post_type" typeof="BlogPosting">
{{ partial "post/image_area.html" . }}
<div class="post_content_area">
<div class="row">
<div class="col-xs-12 col-sm-8 col-md-8 col-lg-8 col-xs-offset-0 col-sm-offset-2 col-md-offset-2 col-lg-offset-2">
<div class="post_list" property="articleBody">
<header><h2><a href="{{ .Permalink }}" property="headline">{{ .Title }}</a></h2></header>
</div>
{{ partial "post/info.html" . }}
</div>
</div>
</div>
</article>
| pcdummy/hugo-theme-persona | layouts/post/list.html | HTML | mit | 617 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.6"/>
<title>/home/pavm/programming/lib/gft/src/gft_stack.cpp File Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<!-- end header part -->
<!-- Generated by Doxygen 1.8.6 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File List</span></a></li>
<li><a href="globals.html"><span>File Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="dir_68267d1309a1af8e8297ef4c3efbcdba.html">src</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#namespaces">Namespaces</a> |
<a href="#func-members">Functions</a> </div>
<div class="headertitle">
<div class="title">gft_stack.cpp File Reference</div> </div>
</div><!--header-->
<div class="contents">
<div class="textblock"><code>#include "<a class="el" href="gft__stack_8h_source.html">gft_stack.h</a>"</code><br/>
</div><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="namespaces"></a>
Namespaces</h2></td></tr>
<tr class="memitem:namespacegft"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft.html">gft</a></td></tr>
<tr class="memdesc:namespacegft"><td class="mdescLeft"> </td><td class="mdescRight">Base namespace for common definitions and prototypes. <br/></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:namespacegft_1_1Stack"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft_1_1Stack.html">gft::Stack</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="func-members"></a>
Functions</h2></td></tr>
<tr class="memitem:aae4b11552918128f72c2c0ce6769ea00"><td class="memItemLeft" align="right" valign="top">Stack * </td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft_1_1Stack.html#aae4b11552918128f72c2c0ce6769ea00">gft::Stack::Create</a> (int n)</td></tr>
<tr class="separator:aae4b11552918128f72c2c0ce6769ea00"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac9833a76111d61f284fe131a8439ea79"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft_1_1Stack.html#ac9833a76111d61f284fe131a8439ea79">gft::Stack::Destroy</a> (Stack **S)</td></tr>
<tr class="separator:ac9833a76111d61f284fe131a8439ea79"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9d1618c9defa1ad3e683b7c57d0e3075"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft_1_1Stack.html#a9d1618c9defa1ad3e683b7c57d0e3075">gft::Stack::Push</a> (Stack *S, int p)</td></tr>
<tr class="separator:a9d1618c9defa1ad3e683b7c57d0e3075"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a58729721489e11127a35700782ed0ae2"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft_1_1Stack.html#a58729721489e11127a35700782ed0ae2">gft::Stack::Pop</a> (Stack *S)</td></tr>
<tr class="separator:a58729721489e11127a35700782ed0ae2"><td class="memSeparator" colspan="2"> </td></tr>
</table>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Wed Feb 25 2015 10:27:50 by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.6
</small></address>
</body>
</html>
| ademirtc/bandeirantes | lib/gft/doc/html/gft__stack_8cpp.html | HTML | mit | 4,861 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.5.0_05) on Thu Jul 03 13:49:54 PDT 2008 -->
<TITLE>
edu.sdsc.inca
</TITLE>
<META NAME="keywords" CONTENT="edu.sdsc.inca package">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
</HEAD>
<BODY BGCOLOR="white">
<FONT size="+1" CLASS="FrameTitleFont">
<A HREF="../../../edu/sdsc/inca/package-summary.html" target="classFrame">edu.sdsc.inca</A></FONT>
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
<TR>
<TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont">
Classes</FONT>
<FONT CLASS="FrameItemFont">
<BR>
<A HREF="Consumer.html" title="class in edu.sdsc.inca" target="classFrame">Consumer</A>
<BR>
<A HREF="ConsumerTest.html" title="class in edu.sdsc.inca" target="classFrame">ConsumerTest</A>
<BR>
<A HREF="ConsumerTest.ConsumerTester.html" title="class in edu.sdsc.inca" target="classFrame">ConsumerTest.ConsumerTester</A>
<BR>
<A HREF="ConsumerTest.MockAgent.html" title="class in edu.sdsc.inca" target="classFrame">ConsumerTest.MockAgent</A>
<BR>
<A HREF="ConsumerTest.MockDepot.html" title="class in edu.sdsc.inca" target="classFrame">ConsumerTest.MockDepot</A></FONT></TD>
</TR>
</TABLE>
</BODY>
</HTML>
| IncaProject/IncaProject.github.io | releases/2.4/docs/javadocs/inca-consumers/edu/sdsc/inca/package-frame.html | HTML | mit | 1,321 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>18 --> 19</title>
<link href="./../../assets/style.css" rel="stylesheet">
</head>
<body>
<h2>You have to be fast</h2>
<a href="./b89c9c584be36686b5c8c1699d0ab37f2ca82f649a1f817843cceb1bafd56a45.html">Teleport</a>
<hr>
<a href="./../../about.md">About</a> (Spoilers! )
<script src="./../../assets/md5.js"></script>
<script>
window.currentLevel = 7;
</script>
<script src="./../../assets/script.js"></script>
</body>
</html> | simonmysun/praxis | TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/c5cb57467c267c20a35f92318f4692026c064ad7ef73843ba6db5d1bcd65b843.html | HTML | mit | 550 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>18 --> 19</title>
<link href="./../../assets/style.css" rel="stylesheet">
</head>
<body>
<h2>You have to be fast</h2>
<a href="./111c39a5fd93aebe64e0345eaa4a3fa383b808cd19ce3e292b38f80817041e92.html">Teleport</a>
<hr>
<a href="./../../about.md">About</a> (Spoilers! )
<script src="./../../assets/md5.js"></script>
<script>
window.currentLevel = 7;
</script>
<script src="./../../assets/script.js"></script>
</body>
</html> | simonmysun/praxis | TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/cfa46991bdb810d48aaad070e86d32606ad11ab98dba37c82ee2433179f9b2ce.html | HTML | mit | 550 |
<html>
<head>
<title>OGRE: OgreProperty.h File Reference - OGRE Documentation</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link type="text/css" rel="stylesheet" href="doxygen.css">
<link type="text/css" rel="stylesheet" href="tabs.css">
</head>
<body>
<!-- Generated by Doxygen 1.6.2 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li><a href="dirs.html"><span>Directories</span></a></li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File List</span></a></li>
<li><a href="globals.html"><span>File Members</span></a></li>
</ul>
</div>
<div class="navpath"><a class="el" href="dir_0b8281b69943ad565aee8137b1bafaf9.html">Components</a> » <a class="el" href="dir_2ea5e14f44ca0532a19372d0108d4e30.html">Property</a> » <a class="el" href="dir_d0b811453e63f36c97352e3f2c575189.html">include</a>
</div>
</div>
<div class="contents">
<h1>OgreProperty.h File Reference</h1>
<p>OGRE's property system allows you to associate values of arbitrary type with names, and have those values exposed via a self-describing interface.
<a href="#_details">More...</a></p>
<code>#include "<a class="el" href="OgrePropertyPrerequisites_8h_source.html">OgrePropertyPrerequisites.h</a>"</code><br/>
<code>#include "<a class="el" href="OgreAny_8h_source.html">OgreAny.h</a>"</code><br/>
<code>#include "<a class="el" href="OgreIteratorWrappers_8h_source.html">OgreIteratorWrappers.h</a>"</code><br/>
<code>#include "<a class="el" href="OgreString_8h_source.html">OgreString.h</a>"</code><br/>
<code>#include "<a class="el" href="OgreException_8h_source.html">OgreException.h</a>"</code><br/>
<code>#include "<a class="el" href="OgreVector2_8h_source.html">OgreVector2.h</a>"</code><br/>
<code>#include "<a class="el" href="OgreVector3_8h_source.html">OgreVector3.h</a>"</code><br/>
<code>#include "<a class="el" href="OgreVector4_8h_source.html">OgreVector4.h</a>"</code><br/>
<code>#include "<a class="el" href="OgreColourValue_8h_source.html">OgreColourValue.h</a>"</code><br/>
<code>#include "<a class="el" href="OgreQuaternion_8h_source.html">OgreQuaternion.h</a>"</code><br/>
<code>#include "<a class="el" href="OgreMatrix3_8h_source.html">OgreMatrix3.h</a>"</code><br/>
<code>#include "<a class="el" href="OgreMatrix4_8h_source.html">OgreMatrix4.h</a>"</code><br/>
<code>#include <boost/bind.hpp></code><br/>
<code>#include <boost/function.hpp></code><br/>
<p><a href="OgreProperty_8h_source.html">Go to the source code of this file.</a></p>
<table border="0" cellpadding="0" cellspacing="0">
<tr><td colspan="2"><h2>Classes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class </td><td class="memItemRight" valign="bottom"><a class="el" href="classOgre_1_1PropertyDef.html">Ogre::PropertyDef</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Definition of a property of an object. <a href="classOgre_1_1PropertyDef.html#_details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class </td><td class="memItemRight" valign="bottom"><a class="el" href="classOgre_1_1PropertyBase.html">Ogre::PropertyBase</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Base interface for an instance of a property. <a href="classOgre_1_1PropertyBase.html#_details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class </td><td class="memItemRight" valign="bottom"><a class="el" href="classOgre_1_1Property.html">Ogre::Property< T ></a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="classOgre_1_1Property.html" title="Property instance with passthrough calls to a given object.">Property</a> instance with passthrough calls to a given object. <a href="classOgre_1_1Property.html#_details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">struct </td><td class="memItemRight" valign="bottom"><a class="el" href="structOgre_1_1PropertyValue.html">Ogre::PropertyValue</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">A simple structure designed just as a holder of property values between the instances of objects they might target. <a href="structOgre_1_1PropertyValue.html#_details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class </td><td class="memItemRight" valign="bottom"><a class="el" href="classOgre_1_1PropertySet.html">Ogre::PropertySet</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Defines a complete set of properties for a single object instance. <a href="classOgre_1_1PropertySet.html#_details">More...</a><br/></td></tr>
<tr><td colspan="2"><h2>Namespaces</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">namespace </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceOgre.html">Ogre</a></td></tr>
<p><tr><td class="mdescLeft"> </td><td class="mdescRight"><p>----------------------------------------------------------------------------- This source file is part of OGRE (Object-oriented Graphics Rendering Engine) For the latest info, see <a href="http://www.ogre3d.org/">http://www.ogre3d.org/</a> </p>
<br/></td></tr>
</p>
<tr><td colspan="2"><h2>Typedefs</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">typedef map< String, <br class="typebreak"/>
PropertyDef >::type </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Property.html#gaa2af9dd0402adef0e54243e3ee3dc86e">Ogre::PropertyDefMap</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Map from property name to shared definition. <a href="group__Property.html#gaa2af9dd0402adef0e54243e3ee3dc86e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">typedef map< String, <br class="typebreak"/>
PropertyValue >::type </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Property.html#gac473fdb476888c7a1a0a4a857948cc5c">Ogre::PropertyValueMap</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Defines a transferable map of properties using wrapped value types (<a class="el" href="classOgre_1_1Any.html" title="Variant type that can hold Any other type.">Ogre::Any</a>). <a href="group__Property.html#gac473fdb476888c7a1a0a4a857948cc5c"></a><br/></td></tr>
<tr><td colspan="2"><h2>Enumerations</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">enum </td><td class="memItemRight" valign="bottom"><a class="el" href="group__Property.html#ga0883a5af9197151407965df0bacc4f3a">Ogre::PropertyType</a> { <br/>
<a class="el" href="group__Property.html#gga0883a5af9197151407965df0bacc4f3aa19d90ad1680589279aafec448c4e75d3">Ogre::PROP_SHORT</a> = 0,
<a class="el" href="group__Property.html#gga0883a5af9197151407965df0bacc4f3aa8807d302197c648340522a66196f46f1">Ogre::PROP_UNSIGNED_SHORT</a> = 1,
<a class="el" href="group__Property.html#gga0883a5af9197151407965df0bacc4f3aa93d4b54300df506764ebb8af6bf4d5c8">Ogre::PROP_INT</a> = 2,
<a class="el" href="group__Property.html#gga0883a5af9197151407965df0bacc4f3aa9fb3644ad2ce148f77291a0d3eaea6a1">Ogre::PROP_UNSIGNED_INT</a> = 3,
<br/>
<a class="el" href="group__Property.html#gga0883a5af9197151407965df0bacc4f3aa3d3a41849ca836ff178c8f2618629794">Ogre::PROP_LONG</a> = 4,
<a class="el" href="group__Property.html#gga0883a5af9197151407965df0bacc4f3aabb2c30d9d8af27d83d4aafed018aa84d">Ogre::PROP_UNSIGNED_LONG</a> = 5,
<a class="el" href="group__Property.html#gga0883a5af9197151407965df0bacc4f3aa269350183053663ed0e36a69b72dc4c8">Ogre::PROP_REAL</a> = 6,
<a class="el" href="group__Property.html#gga0883a5af9197151407965df0bacc4f3aa7964244e71bea1a0b721d42e6fa4ae53">Ogre::PROP_STRING</a> = 7,
<br/>
<a class="el" href="group__Property.html#gga0883a5af9197151407965df0bacc4f3aa5f081dc286c25333c43e8467d6c7c8b6">Ogre::PROP_VECTOR2</a> = 8,
<a class="el" href="group__Property.html#gga0883a5af9197151407965df0bacc4f3aacd225d4bbfbd47f0473b7d56f834f3b6">Ogre::PROP_VECTOR3</a> = 9,
<a class="el" href="group__Property.html#gga0883a5af9197151407965df0bacc4f3aaa5b410ea31e3954eeba233240dfb67ec">Ogre::PROP_VECTOR4</a> = 10,
<a class="el" href="group__Property.html#gga0883a5af9197151407965df0bacc4f3aa4dbf2ba96cd6b8774fc4cd98b0bfca01">Ogre::PROP_COLOUR</a> = 11,
<br/>
<a class="el" href="group__Property.html#gga0883a5af9197151407965df0bacc4f3aa4811d3c1f6bce61a13fedbcfa19e1b32">Ogre::PROP_BOOL</a> = 12,
<a class="el" href="group__Property.html#gga0883a5af9197151407965df0bacc4f3aa161aabceab220d04e7aa8704ff8e5293">Ogre::PROP_QUATERNION</a> = 13,
<a class="el" href="group__Property.html#gga0883a5af9197151407965df0bacc4f3aa1a10d1f71eb0804ab6ec20a598a1ac93">Ogre::PROP_MATRIX3</a> = 14,
<a class="el" href="group__Property.html#gga0883a5af9197151407965df0bacc4f3aad1ccdd4ffa8de819d5f96bac1a405a32">Ogre::PROP_MATRIX4</a> = 15,
<br/>
<a class="el" href="group__Property.html#gga0883a5af9197151407965df0bacc4f3aa593a0408d46ccf3061cb27c372b25e8d">Ogre::PROP_UNKNOWN</a> = 999
<br/>
}</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight"><p>The type of a property. </p>
<a href="group__Property.html#ga0883a5af9197151407965df0bacc4f3a">More...</a><br/></td></tr>
</table>
<hr/><a name="_details"></a><h2>Detailed Description</h2>
<p>OGRE's property system allows you to associate values of arbitrary type with names, and have those values exposed via a self-describing interface. </p>
<p>Unlike <a class="el" href="classOgre_1_1StringInterface.html" title="Class defining the common interface which classes can use to present a reflection-style...">Ogre::StringInterface</a>, the values are passed as their native types without needing conversion to or from strings; they are simply wrapped in an <a class="el" href="classOgre_1_1Any.html" title="Variant type that can hold Any other type.">Ogre::Any</a> and casts are performed to access them. </p>
<dl class="user"><dt><b></b></dt><dd>Property values are actually not stored in this system; instead the property definitions reference getter & setter methods which provide the 'backing' for the property. This means you can directly expose features of your classes as properties without any duplication. </dd></dl>
<dl class="user"><dt><b></b></dt><dd>There are two aspects to exposing a property on your class. One is exposing the definition of the property (PropertyDef), which should be shared between all instances and probably stored in a static PropertyDefMap somewhere. The second is the instance 'wiring' which ensures that a call to set a property calls a method on this particular instance of the class; this is formed by a number of Property instances, contained in a PropertySet. Each Property has an explicit binding to getter and setter instance methods. </dd></dl>
<dl class="user"><dt><b></b></dt><dd>So, here's an example of setting up properties on an instance:</dd></dl>
<div class="fragment"><pre class="fragment"> <span class="comment">// Make sure the property definition is created </span>
<span class="comment">// propertyDefs is a variable of type PropertyDefMap, shared between instances</span>
PropertyDefMap::iterator defi = propertyDefs.find(<span class="stringliteral">"name"</span>);
<span class="keywordflow">if</span> (defi == propertyDefs.end())
{
defi = propertyDefs.insert(PropertyDefMap::value_type(<span class="stringliteral">"name"</span>,
PropertyDef(<span class="stringliteral">"name"</span>,
<span class="stringliteral">"The name of the object."</span>, <a class="code" href="group__Property.html#gga0883a5af9197151407965df0bacc4f3aa7964244e71bea1a0b721d42e6fa4ae53">PROP_STRING</a>))).first;
}
<span class="comment">// This has established the property definition, and its description.</span>
<span class="comment">// Now, we need to 'wire' a property instance for this object instance</span>
<span class="comment">// We assume the class is called 'Foo' and the instance is pointed to by a variable called 'inst'</span>
<span class="comment">// 'props' is a PropertySet, specific to the instance</span>
props.addProperty(
<a class="code" href="group__Memory.html#gab5fc1358fd5a889de0a06d07e45df1ff">OGRE_NEW</a> Property<String>(&(defi->second),
boost::bind(&Foo::getName, inst),
boost::bind(&Foo::setName, inst, _1)));
</pre></div>
<p>Definition in file <a class="el" href="OgreProperty_8h_source.html">OgreProperty.h</a>.</p>
</div>
<hr>
<p>
Copyright © 2012 Torus Knot Software Ltd<br />
<!--Creative Commons License--><a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-sa/3.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons Attribution-ShareAlike 3.0 Unported License</a>.<br/>
<!--/Creative Commons License--><!-- <rdf:RDF xmlns="http://web.resource.org/cc/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<Work rdf:about="">
<license rdf:resource="http://creativecommons.org/licenses/by-sa/2.5/" />
<dc:type rdf:resource="http://purl.org/dc/dcmitype/Text" />
</Work>
<License rdf:about="http://creativecommons.org/licenses/by-sa/2.5/"><permits rdf:resource="http://web.resource.org/cc/Reproduction"/><permits rdf:resource="http://web.resource.org/cc/Distribution"/><requires rdf:resource="http://web.resource.org/cc/Notice"/><requires rdf:resource="http://web.resource.org/cc/Attribution"/><permits rdf:resource="http://web.resource.org/cc/DerivativeWorks"/><requires rdf:resource="http://web.resource.org/cc/ShareAlike"/></License></rdf:RDF> -->
Last modified Sun Sep 2 08:16:13 2012
</p>
</body>
</html>
| lennonchan/OgreSource | Docs/api/html/OgreProperty_8h.html | HTML | mit | 14,771 |
<div>
<table class="table table-bordered">
<tr>
<td>
<div km-term-check name="root-traits" locales="locales" required ng-change="onRootTraitsChange()"
ng-model="rootTraits" terms="options.rootTraits()" binding-type="term[]"></div>
</td>
</tr>
<tr ng-if="traits['81799D15-669E-4346-9AEC-6834893D2BE4'].selected">
<td>
<legend>Resistencia a enfermedades y plagas</legend>
<div km-term-check name="traits" locales="locales" required
ng-model="traits['81799D15-669E-4346-9AEC-6834893D2BE4'].items" ng-change="onTraitsChange()"
terms="options.traits('81799D15-669E-4346-9AEC-6834893D2BE4')" binding-type="term[]"></div>
</td>
</tr>
<tr ng-if="traits['0C74FEB2-78E8-4163-81EF-2D410FB2FBBC'].selected">
<td>
<legend>Resistencia a herbicidas</legend>
<div km-term-check name="traits" locales="locales" required
ng-model="traits['0C74FEB2-78E8-4163-81EF-2D410FB2FBBC'].items" ng-change="onTraitsChange()"
terms="options.traits('0C74FEB2-78E8-4163-81EF-2D410FB2FBBC')" binding-type="term[]"></div>
</td>
</tr>
<tr ng-if="traits['87D98E42-4757-42DE-9C3F-815BFAA35218'].selected">
<td>
<legend>Resistencia a los antibióticos</legend>
<div km-term-check name="traits" locales="locales" required
ng-model="traits['87D98E42-4757-42DE-9C3F-815BFAA35218'].items" ng-change="onTraitsChange()"
terms="options.traits('87D98E42-4757-42DE-9C3F-815BFAA35218')" binding-type="term[]"></div>
</td>
</tr>
<tr ng-if="traits['31396BD1-9E3E-4EB3-A29E-9A22B7230221'].selected">
<td>
<legend>Tolerancia al estrés abiótico</legend>
<div km-term-check name="traits" locales="locales" required
ng-model="traits['31396BD1-9E3E-4EB3-A29E-9A22B7230221'].items" ng-change="onTraitsChange()"
terms="options.traits('31396BD1-9E3E-4EB3-A29E-9A22B7230221')" binding-type="term[]"></div>
</td>
</tr>
<tr ng-if="traits['337747E5-522D-42DF-8C57-FE626C1572EC'].selected">
<td>
<legend>Cambios en la fisiología y/o producción</legend>
<div km-term-check name="traits" locales="locales" required
ng-model="traits['337747E5-522D-42DF-8C57-FE626C1572EC'].items" ng-change="onTraitsChange()"
terms="options.traits('337747E5-522D-42DF-8C57-FE626C1572EC')" binding-type="term[]"></div>
</td>
</tr>
<tr ng-if="traits['3B427EA6-5260-47F1-B424-FAAA5960FB52'].selected">
<td>
<legend>Cambios en la calidad y/o el contenido metabólico</legend>
<div km-term-check name="traits" locales="locales" required
ng-model="traits['3B427EA6-5260-47F1-B424-FAAA5960FB52'].items" ng-change="onTraitsChange()"
terms="options.traits('3B427EA6-5260-47F1-B424-FAAA5960FB52')" binding-type="term[]"></div>
</td>
</tr>
<tr ng-if="traits['5B9DB3B4-90A1-451A-A10C-E3A47995344F'].selected">
<td>
<legend>Producción de compuestos médicos o farmacéuticos (humanos o animales)</legend>
<div km-term-check name="traits" locales="locales" required
ng-model="traits['5B9DB3B4-90A1-451A-A10C-E3A47995344F'].items" ng-change="onTraitsChange()"
terms="options.traits('5B9DB3B4-90A1-451A-A10C-E3A47995344F')" binding-type="term[]"></div>
</td>
</tr>
<tr ng-if="traits['C8C662E2-D633-4C69-96EA-C9853997A3A5'].selected">
<td>
<legend>Uso en aplicaciones industriales</legend>
<div km-term-check name="traits" locales="locales" required
ng-model="traits['C8C662E2-D633-4C69-96EA-C9853997A3A5'].items" ng-change="onTraitsChange()"
terms="options.traits('C8C662E2-D633-4C69-96EA-C9853997A3A5')" binding-type="term[]"></div>
</td>
</tr>
<tr ng-if="traits['75DE5726-4C52-442C-8BF8-B77A6EBE48E2'].selected">
<td>
<legend>Modificación genética por aplicación de impulsores genéticos</legend>
<div km-term-check name="traits" locales="locales" required ng-change="onTraitsChange()"
ng-model="traits['75DE5726-4C52-442C-8BF8-B77A6EBE48E2'].items" terms="options.traits('75DE5726-4C52-442C-8BF8-B77A6EBE48E2')" binding-type="term[]"></div>
</td>
</tr>
<tr ng-if="traits['traitsOtherSection'].selected">
<td>
<div km-term-check name="traits" locales="locales" required ng-change="onTraitsChange()"
ng-model="traits['traitsOtherSection'].items" terms="options.traitsOtherSection()" binding-type="term[]">
</div>
</td>
</tr>
<tr ng-if="traits['0C74FEB2-78E8-4163-81EF-2D410FB2FBBC'].selected">
<td>
</td>
</tr>
</table>
</div>
| scbd/absch.cbd.int | i18n/es/app/views/forms/directives/traits-selector.directive.html | HTML | mit | 5,390 |
<div class="panel panel-default movie-container">
<div class="panel-body">
<div class="row top-part">
<div class="col-xs-12 col-md-4 movie-image">
<img ng-show="movie.Poster" class="img-rounded" src="{{movie.Poster}}" />
<div ng-show="!movie.Poster" class="img-rounded img-alt">
<span>{{movie.Title}}</span>
</div>
</div>
<div class="col-xs-12 col-md-8 movie-desc">
<h2 ng-show="movie.Title">{{movie.Title}}<span ng-show="movie.Year">-{{movie.Year}}</span></h2>
<p ng-show="movie.Plot"><span ng-show="movie.Type"><strong>In this {{movie.Type}}, </strong></span>{{movie.Plot}}</p>
<p ng-hide="!movie.Released && !movie.Runtime && !movie.Rated">
<span ng-show="movie.Released && movie.Released!=='N/A'" class="badge">{{movie.Released}}</span>
<span ng-show="movie.Runtime && movie.Runtime!=='N/A'" class="badge">{{movie.Runtime}}</span>
<span ng-show="movie.Rated && movie.Rated!=='N/A'" class="badge">{{movie.Rated}}</span>
</p>
<p class="movieGenra" ng-show="movie.Genre[0]!==''">
<span ng-repeat="Genre in movie.Genre" class="badge">{{Genre}}</span>
</p>
<p class="movieActors" ng-show="movie.Actors[0]!==''">
<span><strong>Starring - </strong></span>
<span ng-repeat="Actors in movie.Actors">{{Actors}}<span ng-hide="$index===(movie.Actors.length-1)">,</span></span>
</p>
<p class="movieDirector" ng-show="movie.Director[0] !== ''">
<span><strong>Directed By - </strong></span>
<span ng-repeat="Director in movie.Director">{{Director}}</span>
</p>
<p class="movieWriter" ng-show="movie.Writer[0] !== ''">
<span><strong>Written By -</strong></span>
<span ng-repeat="Writer in movie.Writer">{{Writer}}<span ng-hide="$index===(movie.Writer.length-1)">,</span></span>
</p>
</div>
</div>
<div class="bottom-part">
<div class="row">
<div class="col-xs-12 col-md-6 languageAc">
<div class="panel-group" id="langAccordion" role="tablist" aria-multiselectable="true">
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="langHeading">
<h4 class="panel-title">
<a data-toggle="collapse" onclick="return false;" data-parent="#langAccordion" href="#Lcollapse" aria-expanded="true" aria-controls="Lcollapse">
Language Availability
</a>
</h4>
</div>
<div id="Lcollapse" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="langHeading">
<div class="panel-body">
<span ng-repeat="lan in movie.Language">{{lan}}<span ng-hide="$index===(movie.Language.length-1)">,</span></span>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-md-6 countryAc">
<div class="panel-group" id="counAccordion" role="tablist" aria-multiselectable="true">
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="conHeading">
<h4 class="panel-title">
<a data-toggle="collapse" onclick="return false;" data-parent="#counAccordion" href="#Ccollapse" aria-expanded="true" aria-controls="Ccollapse">
Country Availability
</a>
</h4>
</div>
<div id="Ccollapse" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="conHeading">
<div class="panel-body">
<span ng-repeat="con in movie.Country">{{con}}<span ng-hide="$index===(movie.Country.length-1)">,</span></span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row imdbrow">
<div class="col-xs-12 col-md-12 imdbAc">
<div class="panel-group" id="imdbAccordion" role="tablist" aria-multiselectable="true">
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="imdbHeading">
<h4 class="panel-title">
<a data-toggle="collapse" onclick="return false;" data-parent="#imdbAccordion" href="#imdbcollapse" aria-expanded="true" aria-controls="imdbcollapse">
IMDB DATA
</a>
</h4>
</div>
<div id="imdbcollapse" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="imdbHeading">
<div class="panel-body">
<div class="col-xs-12 col-md-6">
<span>IMDB Rating -</span><span>> {{movie.imdbRating}}</span>
<!-- rating -->
<div class="critic-rating">
<h5>Relative Star Rating</h5>
<div class="rating star-{{movie.imdbRating | getRatingClass}}">
<i class="fa fa-star star-1-on"></i>
<i class="fa fa-star star-off star-1-off"></i>
<i class="fa fa-star-half star-1-half"></i>
<i class="fa fa-star star-2-on"></i>
<i class="fa fa-star star-off star-2-off"></i>
<i class="fa fa-star-half star-2-half"></i>
<i class="fa fa-star star-3-on"></i>
<i class="fa fa-star star-off star-3-off"></i>
<i class="fa fa-star-half star-3-half"></i>
<i class="fa fa-star star-4-on"></i>
<i class="fa fa-star star-off star-4-off"></i>
<i class="fa fa-star-half star-4-half"></i>
<i class="fa fa-star star-5-on"></i>
<i class="fa fa-star star-off star-5-off"></i>
<i class="fa fa-star-half star-5-half"></i>
<!-- commented as we created half equivalent 5 star according to IMDB data
<i class="fa fa-star star-6-on"></i>
<i class="fa fa-star star-off star-6-off"></i>
<i class="fa fa-star-half star-6-half"></i>
<i class="fa fa-star star-7-on"></i>
<i class="fa fa-star star-off star-7-off"></i>
<i class="fa fa-star-half star-7-half"></i>
<i class="fa fa-star star-8-on"></i>
<i class="fa fa-star star-off star-8-off"></i>
<i class="fa fa-star-half star-8-half"></i>
<i class="fa fa-star star-9-on"></i>
<i class="fa fa-star star-off star-9-off"></i>
<i class="fa fa-star-half star-9-half"></i>
<i class="fa fa-star star-10-on"></i>
<i class="fa fa-star star-off star-10-off"></i>
<i class="fa fa-star-half star-10-half"></i> -->
</div>
</div>
<!-- end rating-->
</div>
<div class="col-xs-12 col-md-6">
<span>IMDB Votes-</span><span>> {{movie.imdbVotes}}</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
| bhavindesai20/MovieBazar | public/templates/movie.html | HTML | mit | 9,600 |
<!DOCTYPE html><html><head><title>https://andrivanoff.github.io/categories/%D0%B8%D0%B7-%D1%87%D0%B5%D0%B3%D0%BE/</title><link rel="canonical" href="https://andrivanoff.github.io/categories/%D0%B8%D0%B7-%D1%87%D0%B5%D0%B3%D0%BE/"/><meta http-equiv="content-type" content="text/html; charset=utf-8" /><meta http-equiv="refresh" content="0; url=https://andrivanoff.github.io/categories/%D0%B8%D0%B7-%D1%87%D0%B5%D0%B3%D0%BE/" /></head></html> | andrivanoff/andrivanoff.github.io | categories/из-чего/page/1/index.html | HTML | mit | 440 |
<ul class="menu-item">
<li class="home"><a href="/">{{ site.title }}</a></li>
{% for link in site.data.navigation %}
{% if link.url_en contains 'http' %}
{% assign domain = '' %}
{% else %}
{% assign domain = site.url_en %}
{% endif %}
<li><a href="{{ domain }}{{ link.url_en }}" {% if link.url contains 'http' %}target="_blank"{% endif %}>{{ link.title_en }}</a></li>
{% endfor %}
</ul> | TsinStudio/tsinstudio.github.com | _includes/navigation_en.html | HTML | mit | 427 |
{% extends 'swp/base.html' %}
{% load static %}
{% block content %}
<div class="container-fluid">
<div class="page-header">
<h1>{{ event.title }}</h1>
</div>
{% if user.is_authenticated %}
<form
action="{% url 'new_event' event.slug.hex %}" method="POST"
enctype="multipart/form-data" class="form-inline"
>
{% csrf_token %}
<div class="form-group">
<input
type="text" name="caption" value="" placeholder="Caption"
required="required" class="form-control" autocomplete="off"
/>
</div>
<div class="form-group">
<label for="new-photo-original">Original</label>
<input
id="new-photo-original" type="file" name="original"
required="required" class="form-control"
/>
</div>
<div class="form-group">
<label for="new-photo-enhanced">Enhanced (optional)</label>
<input
id="new-photo-enhanced" type="file" name="enhanced"
class="form-control"
/>
</div>
<button type="submit" class="btn btn-primary">Upload</button>
</form>
{% endif %}
<div class="row">
{% for photo in photos %}
<div class="col-xs-12 col-md-4">
<a
href="#" data-toggle="modal" data-target="#swp-all-images-dialog"
><img
src="{% static photo.image.thumbnail_path %}"
alt="{{ photo.caption }}" class="swp-thumbnail"
/></a>
<br/>
{% if user.is_authenticated %}
{% if photo.enhanced %}
<div class="btn-group" role="group">
<a
href="{% url 'original_file' photo.original.slug.hex %}"
role="button" class="btn btn-default btn-sm"
>Original</a>
<a
href="{% url 'original_file' photo.enhanced.slug.hex %}"
role="button" class="btn btn-default btn-sm"
>Full resolution</a>
</div>
{% else %}
<a
href="{% url 'original_file' photo.original.slug.hex %}"
role="button" class="btn btn-default btn-sm"
>Full resolution</a>
{% endif %}
{% endif %}
</div>
{% endfor %}
</div>
</div>
<div
class="modal fade" id="swp-all-images-dialog" tabindex="-1" role="dialog"
>
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"
><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel">Image Slideshow</h4>
</div>
<div class="modal-body">
<div
id="swp-all-images-carousel" class="carousel slide"
data-ride="carousel" data-interval="false"
>
<!-- Indicators -->
<ol class="carousel-indicators">
{% for photo in photos %}
<li
data-target="SWPCarousel"
data-slide-to="{{ forloop.counter0 }}"
{% if forloop.counter0 == 0 %}
class="active"
{% endif %}
></li>
{% endfor %}
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
{% for photo in photos %}
<div
class="item {% if forloop.counter0 == 0 %}active{% endif %}"
>
<img
src="{% static photo.image.image_path %}"
class="swp-carousel-image"
alt="{{ photo.caption }}"
/>
<div class="carousel-caption">
<h3>{{ photo.caption }}</h3>
</div>
</div>
{% endfor %}
</div>
<!-- Left and right controls -->
<a
class="left carousel-control" href="#swp-all-images-carousel"
role="button" data-slide="prev"
>
<span
class="glyphicon glyphicon-chevron-left" aria-hidden="true"
></span>
<span class="sr-only">Previous</span>
</a>
<a
class="right carousel-control" href="#swp-all-images-carousel"
role="button" data-slide="next"
>
<span
class="glyphicon glyphicon-chevron-right" aria-hidden="true"
></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
</div>
{% endblock %}
| merry-bits/SWP | swp/templates/swp/event.html | HTML | mit | 4,577 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="An approach to developing modern web applications">
<meta name="author" content="Marc J. Greenberg">
<title>ElectricDiscoTech</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="css/style.min.css" type="text/css">
<script src="js/jquery.min.js"></script>
<script src="js/uikit.min.js"></script>
<script src="js/clipboard.min.js"></script>
<script src="js/edt.min.js"></script>
</head>
<body class="edt-background">
<div class="inc:site/header.html"></div>
<div class="uk-grid" data-uk-grid-margin>
<div class="uk-width-medium-1-1">
<div class="edt-front2"></div>
</div>
</div>
<div class="edt-middle">
<div class="uk-container uk-container-center">
<div class="uk-grid" data-uk-grid-margin>
<div class="edt-sidebar uk-width-medium-1-4 uk-hidden-small">
<ul class="edt-nav uk-nav" data-uk-nav>
<li class="uk-nav-header">Conceptual</li>
<li><a href="readme.html">Dance Floor</a></li>
<li><a href="source.html">First Steps</a></li>
<li><a href="tools.html">Do the Hustle</a></li>
<ul class="uk-nav uk-margin-left">
<li><a href="winivp.html"><i class="uk-icon-windows uk-margin-right"></i>Windows (ivp)</a></li>
<li><a href="linuxivp.html"><i class="uk-icon-linux uk-margin-right"></i>Linux (ivp)</a></li>
<li class="uk-active"><a href="osxivp.html"><i class="uk-icon-apple uk-margin-right"></i>Mac OS X (ivp)</a></li>
</ul>
<li><a href="bower.html">Disco Duck</a></li>
<li><a href="tasks.html">Disco Pig</a></li>
<li class="uk-nav-header"></li>
<li><a href=""></a></li>
</ul>
</div>
<div class="edt-main uk-width-medium-3-4">
<article class="uk-article">
<h2 id="osxivp">
<img src="img/osx.png" width="48"/>
<a href="#osxivp" class="uk-link-reset"> Mac OS X ivp for <i class="edt-tla2">EDT</i></a>
</h2>
<hr class="uk-article-divider">
<div class="uk-grid">
<div class="uk-width-medium-1-2">
<p>
<a href="http://www.apple.com/osx/">Mac OS X</a> is currently my favorite dance partner.
It is a common practice among dance instructors, to have the students
switch partners frequently during the class in order to get them used to
dancing with different partners. Using OS X as a base platform I can seamlessly
run virtualized windows and/or linux on demand.
</p>
<p>
While I mentioned this before, a good code editor is the hammer in a modern web application developers toolbox.
For this project I am using one of Microsoft's latest concoctions, <a href=https://code.visualstudio.com/>
Visual Studio Code</a>. It runs on windows, linux and os x. It's open source and
<a href="https://github.com/Microsoft/vscode">forkable on github</a> and I really like.
</p>
</div>
<div class="uk-width-medium-1-4">
<img src="img/discothink.png" width="80%"></a>
</div>
</div>
</article>
</div>
<div class="uk-width-medium-1-4">
</div>
</div>
<!-- Git -->
<div class="uk-grid">
<div class="uk-width-medium-1-4">
<a href="https://github.com/explore">
<img style="margin-top:2.5em;margin-left:-18px;" src="img/github-octocat.png">
</a>
</div>
<div class="uk-width-medium-2-4">
<hr class="uk-article-divider" style="margin-top:-48px;">
<h4><a href="http://git-scm.com/">Git</a></h4>
<!--//http://git-scm.com/-->
<p>Let's start a shell and validate the ability to run git from the command prompt:</p>
<button class="edt-clip" data-clipboard-text="git --version"><i class="uk-icon-clipboard"></i></button>
<pre class="edt-border uk-margin-bottom">$ git --version
git version 2.4.9 (Apple Git-60)
</pre>
<p>
If for some reason you don't have git installed, you can download the
<a href="http://git-scm.com/download/mac">git-osx-installer</a>
from <a href="http://git-scm.com/">get-scm.com</a> If you can use use git then
clone a copy of <span class="edt-tla2">EDT</span>:
</p>
<button class="edt-clip" data-clipboard-text="git clone https://github.com/codemarc/ElectricDiscoTech"><i class="uk-icon-clipboard"></i></button>
<pre class="edt-border">$ git clone https://github.com/codemarc/ElectricDiscoTech
Cloning into 'ElectricDiscoTech'...
remote: Counting objects: 254, done.
remote: Compressing objects: 100% (30/30), done.
remote: Total 254 (delta 10), reused 0 (delta 0), pack-reused 223
Receiving objects: 100% (254/254), 5.69 MiB | 3.31 MiB/s, done.
Resolving deltas: 100% (101/101), done.
Checking connectivity... done.
</pre>
</div>
</div>
<!-- NODE/NPM -->
<div class="uk-grid">
<div class="uk-width-medium-1-4">
<a href="https://nodejs.org/">
<img style="margin-top:3.5em" src="img/nodejs-npm.png" width="70%">
</a>
</div>
<div class="uk-width-medium-2-4">
<hr class="uk-article-divider">
<h4><a href="https://www.npmjs.com/">Npm</a></h4>
<p>Now let's see which version of npm is installed:</p>
<button class="edt-clip" data-clipboard-text="npm -v"><i class="uk-icon-clipboard"></i></button>
<pre>$ npm -v
-bash: npm: command not found
</pre>
<p>
Oops, forgot to install node. <a href="https://www.npmjs.com/">npm</a> is part of <a href="https://nodejs.org">Node.js</a>.
On the Node.js website you can quickly find the download for installable package for OS X (x64).
</p>
<button class="edt-clip" data-clipboard-text="npm -v"><i class="uk-icon-clipboard"></i></button>
<pre class="edt-border">$ npm -v
2.14.7
</pre>
<p>
You can use npm to update npm.
</p>
<button class="edt-clip" data-clipboard-text="sudo npm install -g npm"><i class="uk-icon-clipboard"></i></button>
<pre class="edt-border uk-margin-large-bottom">$ sudo npm install -g npm
⋮
$ npm -v
3.5.0
</pre>
</div>
</div>
<!-- BOWER -->
<div class="uk-grid">
<div class="uk-width-medium-1-4">
<a href="http://bower.io/">
<img class="uk-margin-left" src="img/bower.png" width="45%">
</a>
</div>
<div class="uk-width-medium-2-4">
<hr class="uk-article-divider" style="margin-top:-36px;">
<h4><a href="http://bower.io/">Bower</a></h4>
<p><a href="http://bower.io/">bower</a> is billed as a package manager for the web. What it saves you from is endless hours
of searching for source components. If you know the name of a component and its author has created a package for it (most
popular components have the by now) then all you need to do to grab a copy using:
<span class="uk-margin-left uk-text-primary">bower install
<package></span>
</p>
<p>To install or update bower run:</p>
<button class="edt-clip" data-clipboard-text="npm install -g bower"><i class="uk-icon-clipboard"></i></button>
<pre>$ npm install -g bower
⋮
$ bower -version
1.6.5
</pre>
</div>
</div>
</div>
<div class="inc:site/footer.html"></div>
</body>
<script>new Clipboard('.edt-clip');</script>
</html> | codemarc/ElectricDiscoTech | dev/docs/osxivp.html | HTML | mit | 10,042 |
<p>This is the test-route view.</p>
| heynemann/tornado-angular | tests/sandbox/app/views/test-route.html | HTML | mit | 36 |
<ul class="breadcrumb">
{% for url, label in breadcrumbs %}
<li>
{% ifnotequal forloop.counter breadcrumbs_total %}
<a href="{{ url }}">{{ label|safe }}</a>
{% else %}
{{ label|safe }}
{% endifnotequal %}
{% if not forloop.last %}
<span class="divider">/</span>
{% endif %}
</li>
{% endfor %}
</ul>
| WhySoGeeky/DroidPot | venv/lib/python2.7/site-packages/django_bootstrap_breadcrumbs/templates/django_bootstrap_breadcrumbs/bootstrap2.html | HTML | mit | 431 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>metacoq-erasure: 3 m 5 s</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.9.0 / metacoq-erasure - 1.0~alpha+8.9</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
metacoq-erasure
<small>
1.0~alpha+8.9
<span class="label label-success">3 m 5 s</span>
</small>
</h1>
<p><em><script>document.write(moment("2020-07-26 11:43:01 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-07-26 11:43:01 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.12 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-m4 1 Virtual package relying on m4
coq 8.9.0 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.04.2 The OCaml compiler (virtual package)
ocaml-base-compiler 4.04.2 Official 4.04.2 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.8.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "matthieu.sozeau@inria.fr"
homepage: "https://metacoq.github.io/metacoq"
dev-repo: "git+https://github.com/MetaCoq/metacoq.git#coq-8.8"
bug-reports: "https://github.com/MetaCoq/metacoq/issues"
authors: ["Abhishek Anand <aa755@cs.cornell.edu>"
"Simon Boulier <simon.boulier@inria.fr>"
"Cyril Cohen <cyril.cohen@inria.fr>"
"Yannick Forster <forster@ps.uni-saarland.de>"
"Fabian Kunze <fkunze@fakusb.de>"
"Gregory Malecha <gmalecha@gmail.com>"
"Matthieu Sozeau <matthieu.sozeau@inria.fr>"
"Nicolas Tabareau <nicolas.tabareau@inria.fr>"
"Théo Winterhalter <theo.winterhalter@inria.fr>"
]
license: "MIT"
build: [
["sh" "./configure.sh"]
[make "-j%{jobs}%" "-C" "erasure"]
[make "test-suite"] {with-test}
]
install: [
[make "-C" "erasure" "install"]
]
depends: [
"ocaml" {> "4.02.3"}
"coq" {>= "8.9" & < "8.10~"}
"coq-metacoq-template" {= version}
"coq-metacoq-checker" {= version}
"coq-metacoq-pcuic" {= version}
"coq-metacoq-safechecker" {= version}
]
synopsis: "Implementation and verification of an erasure procedure for Coq"
description: """
MetaCoq is a meta-programming framework for Coq.
The Erasure module provides a complete specification of Coq's so-called
\"extraction\" procedure, starting from the PCUIC calculus and targeting
untyped call-by-value lambda-calculus.
The `erasure` function translates types and proofs in well-typed terms
into a dummy `tBox` constructor, following closely P. Letouzey's PhD
thesis.
"""
url {
src: "https://github.com/MetaCoq/metacoq/archive/1.0-alpha+8.9.tar.gz"
checksum: "sha256=899ef4ee73b1684a0f1d2e37ab9ab0f9b24424f6d8a10a10efd474c0ed93488e"
}</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-metacoq-erasure.1.0~alpha+8.9 coq.8.9.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 4000000; timeout 2h opam install -y --deps-only coq-metacoq-erasure.1.0~alpha+8.9 coq.8.9.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>25 m 27 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 2h opam install -y -v coq-metacoq-erasure.1.0~alpha+8.9 coq.8.9.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>3 m 5 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 13 M</p>
<ul>
<li>3 M <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/ErasureFunction.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/ErasureCorrectness.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/SafeErasureFunction.vo</code></li>
<li>980 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/ESubstitution.vo</code></li>
<li>897 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/metacoq_erasure_plugin.cmxs</code></li>
<li>866 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/SafeTemplateErasure.vo</code></li>
<li>824 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/Prelim.vo</code></li>
<li>794 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EArities.vo</code></li>
<li>793 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/Extraction.vo</code></li>
<li>756 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EInversion.vo</code></li>
<li>364 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/ELiftSubst.vo</code></li>
<li>177 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/metacoq_erasure_plugin.cmi</code></li>
<li>172 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/Extract.vo</code></li>
<li>158 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/ErasureCorrectness.glob</code></li>
<li>123 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/ELiftSubst.glob</code></li>
<li>114 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EAll.vo</code></li>
<li>114 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EWcbvEval.vo</code></li>
<li>108 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/ErasureFunction.glob</code></li>
<li>97 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EAstUtils.vo</code></li>
<li>79 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EArities.glob</code></li>
<li>77 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/SafeErasureFunction.glob</code></li>
<li>70 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/metacoq_erasure_plugin.cmx</code></li>
<li>68 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EWcbvEval.glob</code></li>
<li>66 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/ESubstitution.glob</code></li>
<li>63 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EAst.vo</code></li>
<li>63 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EPretty.vo</code></li>
<li>53 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/ETyping.vo</code></li>
<li>49 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/Prelim.glob</code></li>
<li>49 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/ErasureCorrectness.v</code></li>
<li>42 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EInduction.vo</code></li>
<li>38 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/Extract.glob</code></li>
<li>37 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EAstUtils.glob</code></li>
<li>36 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EWndEval.vo</code></li>
<li>34 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/Loader.vo</code></li>
<li>30 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/ErasureFunction.v</code></li>
<li>26 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/SafeErasureFunction.v</code></li>
<li>26 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/SafeTemplateErasure.glob</code></li>
<li>26 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EPretty.glob</code></li>
<li>23 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EWcbvEval.v</code></li>
<li>22 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EArities.v</code></li>
<li>22 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EInversion.glob</code></li>
<li>17 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/ELiftSubst.v</code></li>
<li>15 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/ESubstitution.v</code></li>
<li>13 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EAst.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/Prelim.v</code></li>
<li>11 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/ETyping.glob</code></li>
<li>9 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/SafeTemplateErasure.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EAstUtils.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EInduction.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/Extract.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EPretty.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/metacoq_erasure_plugin.cmxa</code></li>
<li>6 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EAst.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/ETyping.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EWndEval.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EInversion.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EInduction.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EWndEval.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/Extraction.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/Extraction.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EAll.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/Loader.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/Loader.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EAll.v</code></li>
</ul>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-metacoq-erasure.1.0~alpha+8.9</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.04.2-2.0.5/released/8.9.0/metacoq-erasure/1.0~alpha+8.9.html | HTML | mit | 15,736 |
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>NTU D3js HW01</title>
<link rel="stylesheet" type="text/css" href="main.css">
<script src="https://d3js.org/d3.v3.min.js"></script>
</head>
<body>
<!-- page 4 -->
關 關 雎 鳩<br>
在 河 之 洲<br>
<!-- 註 解 此 行 -->
窈 窕 淑 女<br>
君 子 好 逑<br><br>
詩.周南.關睢
<!-- page 8 -->
<div>
<hr>
<h1>小王子</h1>
<p>然後他又回到狐狸那裡。</p>
<p>「再見了!」小王子說。</p>
<p>「再見了!」狐狸說。</p>
<blockquote>
「我的秘密很簡單:<strong>唯有心才能看得清楚,眼睛是看不到真正重要的東西的</strong>。」
</blockquote>
<p>小王子複述一遍:「真正的東西不是用眼睛可以看得到的。」</p>
</div>
<hr>
<!-- page 13 -->
<table border="1">
<tr>
<th colspan = "4">直轄市長辦公地址</th>
</tr>
<tr>
<th>直轄市</th>
<th>職稱</th>
<th>姓名</th>
<th>辦公地址</th>
</tr>
<tr>
<td>臺北市</td>
<td rowspan = "6">市長</td>
<td>柯文哲</td>
<td>臺北市信義區西村里市府路1號</td>
</tr>
<tr>
<td>高雄市</td>
<td>陳菊</td>
<td>高雄市苓雅區晴朗里四維3路2號</td>
</tr>
<tr>
<td>新北市</td>
<td>朱立倫</td>
<td>新北市板橋區中山路1段161號</td>
</tr>
<tr>
<td>臺中市</td>
<td>林佳龍</td>
<td>臺中市西屯區臺灣大道3段99號</td>
</tr>
<tr>
<td>臺南市</td>
<td>賴清德</td>
<td>臺南市安平區永華路2段6號</td>
</tr>
<tr>
<td>桃園市</td>
<td>鄭文燦</td>
<td>桃園市桃園區光興里縣府路1號</td>
</tr>
</table>
<hr>
<!-- page 17 -->
<a href="http://www.google.com/doodles/evidence-of-water-found-on-mars" target = "_new">
<img src="http://www.google.com/logos/doodles/2015/evidence-of-water-found-on-mars-5652760466817024.2-hp2x.gif" alt="在火星上發現水存在的證據" width = "400">
</a>
<hr>
<!--02 page 58 -->
<h1>一個1911~2016之間的數字</h1>
<p id='num1'></p>
<input type="button" onclick="launch()" value="啟動">
<script>
function launch(){
var number = Math.floor(Math.random()*106)+1911;
d3.select('#num1').text(number);
}
</script>
</body>
</html> | bill9800/NTU_D3js | HW01/index.html | HTML | mit | 2,618 |
MIME-Version: 1.0
Server: CERN/3.0
Date: Monday, 16-Dec-96 23:33:46 GMT
Content-Type: text/html
Content-Length: 3390
Last-Modified: Tuesday, 20-Feb-96 22:21:50 GMT
<html>
<head>
<title> CodeWarrior for CS100 </title>
</head>
<body>
<h2> Setting Up CodeWarrior for CS100 </h2>
CodeWarrior can be run on your own personal Macintosh. Copies of
CodeWarrior 8 can be purchased from the Campus Store. The CodeWarrior
installed in the CIT labs is just like the one you would install on
your Mac, except for a few things we have added -- the CSLib library
and the CS100 Basic project stationery. <p>
<strong>Note:</strong> These additions were built using CodeWarrior
version 8, so it is possible that they will not work with earlier
versions of CodeWarrior (although we have heard from people that they
do). <p>
Once you have retrieved the CS100 Additions folder, install the
additions as follows:
<ul>
<li> Open the CS100 Additions folder. Inside it there is a SimpleText
file containing instructions similar to these. There are two folders
called INTO MacOS Support and INTO (Project Stationery). The folder
structure in the CS100 Additions folder is meant to mirror the folder
structure inside the Metrowerks CodeWarrior folder of your copy of
CodeWarrior, to make it easy to follow these instructions. <p>
<li> Open your CodeWarrior8 or CW 8 Gold folder. Open the Metrowerks
CodeWarrior folder inside it. <p>
<li> Open the INTO MacOS Support folder in the CS100 additions. Move
the CS100 Support folder into the MacOS Support folder in your
Metrowerks CodeWarrior folder. <p>
<li> Open the INTO (Project Stationery) folder. Move the CS100 Basic
68K.mu file into the (Project Stationery) folder in your Metrowerks
CodeWarrior folder. <p>
<li> Open the INTO Proj. Stat. Support folder in the INTO (Project
Stationery) folder. Move the <replace me CS100>.c file into the
Project Stationery Support folder in the (Project Stationery) folder
of your CodeWarrior. <p>
</ul>
When you open a new project with CodeWarrior, you should now be able
to select the CS100 Basic 68K stationery. This will include the CSLib
library, which should also now be available to you.
<hr>
Click here to get the CS100 Additions folder. <p>
<a href =
"ftp://ftp.cs.cornell.edu/pub/courses/cs100-s96/CS100Additions.sea.hqx">
CS100 Additions Folder </a>
<hr>
<h3>Other Machines</h3>
If you have a copy of CodeWarrior for a computer other than the Mac,
you may still be able to set up the CS100 environment. However, the
course staff will not be able support this.
<ol>
<li> Build the CSLib library. Get the source code for by anonymous
FTP from Addison-Wesley. Follow the instructions on page 670 in the
Roberts textbook (Appendix B, Library Sources). Compile the source
code on your machine using CodeWarrior. (To create the CSLib library
for CS100 we only compiled the <code>genlib</code>,
<code>simpio</code>, <code>string</code>, <code>random</code>, and
<code>exception</code> parts of the library; we left out the graphics
stuff. If everything seems to work for your machine, feel free to
compile all of it.) Put the compiled library and the library header
files into the support directory for your CodeWarrior. <p>
<li> Make the CS100 Basic project stationery. Our project stationery
is based on the ANSI project stationery, with the CSLib library added.
Put your project stationery in the project stationery directory of
your CodeWarrior.
</ol>
</body>
<hr>
<address>
CS100 Spring 1996 <br>
pierce@cs.cornell.edu
</address>
</html>
| ML-SWAT/Web2KnowledgeBase | webkb/other/cornell/http:^^www.cs.cornell.edu^Info^Courses^Spring-96^CS100^info^codewarrior.html | HTML | mit | 3,562 |
<div ng-class="{ invalid: !ngDisabled && !valid }">
<div class="form-group">
<label ng-show="ngLabel" class="control-label">{{ngLabel}}<small ng-show="ngTip">({{ngTip}})</small></label>
<div class="row coordinates-container">
<div class="col-sm-6 form-control-feedback-container" ng-class="{ 'has-error': !ngDisabled && !valid && coordinates.longitude === '', 'has-feedback': !ngDisabled && !valid && coordinates.longitude === '' }">
<input type="text" class="form-control" ng-disabled="ngDisabled" ng-class="{ 'coordinates-invalid': !ngDisabled && !valid && coordinates.longitude === '' }" ng-model="coordinates.longitude" ng-change="changed()" placeholder="longitude" ng-keypress="preventInvalidCharaters($event)" />
<span ng-show="!ngDisabled && !valid && coordinates.longitude === ''" tooltip="value is required" class="glyphicon glyphicon-ban-circle form-control-feedback"></span>
</div>
<div class="col-sm-6 form-control-feedback-container" ng-class="{ 'has-error': !ngDisabled && !valid && coordinates.latitude === '', 'has-feedback': !ngDisabled && !valid.latitude === '' }">
<input type="text" class="form-control" ng-disabled="ngDisabled" ng-class="{ 'coordinates-invalid': !ngDisabled && !valid && coordinates.latitude === '' }" ng-model="coordinates.latitude" ng-change="changed()" placeholder="latitude" ng-keypress="preventInvalidCharaters($event)" />
<span ng-show="!ngDisabled && !valid && coordinates.latitude === ''" tooltip="value is required" class="glyphicon glyphicon-ban-circle form-control-feedback"></span>
</div>
</div>
<div class="map-container" ng-class="{ 'map-disabled': ngDisabled }">
<div id="map{{id}}" class="form-map" ng-style="{ 'height': height }"></div>
</div>
</div>
</div> | akonoupakis/jsnbt | src/web/admin/tmpl/core/controls/form/ctrlMap.html | HTML | mit | 1,887 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Submission 944</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">
<img src="gallery/submissions/944.jpg" height="400">
</body>
</html>
| heyitsgarrett/envelopecollective | gallery_submission.php-id=944.html | HTML | mit | 367 |
{{<govuk_template}}
{{$head}}
{{>includes/elements_head}}
{{>includes/elements_scripts}}
{{/head}}
{{$propositionHeader}}
{{>includes/propositional_navigation4}}
{{/propositionHeader}}
{{$headerClass}}with-proposition{{/headerClass}}
{{$content}}
<script>
if(sessionStorage.condition) {
sessionStorage.removeItem('condition');
}
function start() {
window.location.href = 'condition-selection';
}
</script>
<main id="page-container" role="main">
{{>includes/phase_banner}}
<div id="notify" class="starthidden">
<div class="grid-row" style="margin-top:1.5em">
<div class="column-two-thirds">
<h1 style="margin-top:0.5em;" class="form-title heading-xlarge">
Tell DVLA about your medical condition
</h1>
<p>You can use this service to tell DVLA about your medical condition.</p>
<p>It is a legal requirement to tell DVLA of a medical condition that might affect your driving.</p>
<div style="padding-top: 0px; padding-bottom: 5px;" class="panel-indent">
<!--div class="help-notice">
<h2 class="heading-medium">Don’t worry</h2>
</div-->
<h2 class="heading-medium">Don’t worry</h2>
<p>Most drivers are allowed to continue driving.</p>
</div>
<h2 class="heading-medium">What you'll need</h2>
<ul class="list-bullet" style="margin-bottom: 0;">
<li>to be a resident in Great Britain - there is a different process in <a href="http://amdr.herokuapp.com/COA_Direct_v4/Landing_page">Northern Ireland, Isle of Man and the Channel Islands</a>
<li>your healthcare professionals' (eg GP, nurse, consultant) details</li>
</ul>
<!--details style="margin-top: 1em;">
<summary>
<span class="summary">
What you'll need
</span>
</summary>
<div class="panel-indent">
<ul class="list-bullet" style="margin-bottom: 0;">
<li>to be a resident in Great Britain - there is a different process in <a href="http://amdr.herokuapp.com/COA_Direct_v4/Landing_page">Northern Ireland, Isle of Man and the Channel Islands</a>.
<li>your personal details</li>
<li>your healthcare professionals' (e.g. GP, Nurse, Consultant) details</li>
</ul>
</div>
</details-->
<br/><br/>
<div style="">
<h2 style="display: inline;">
<img src="/public/images/verify-logo-inline.png" style="width: 100px; display: inline; float: left;"/>
<strong>GOV.UK</strong>
<br/>
VERIFY
</h2>
</div>
<br/>
<p>This service uses GOV.UK Verify to check your identity.</p>
<br/>
<a href="javascript:start();" class="button button-get-started" role="button">Start now</a>
</div>
<div class="column-third" style=";margin-bottom:0.75em">
<nav class="popular-needs">
<h3 class="heading-medium" style="border-top:10px solid #005ea5;margin-top:1em;padding-top:1em">Driving with a medical condition</h3>
<ul style="list-style-type: none;">
<li style="margin-top: 0.5em;"><a href="https://www.gov.uk/health-conditions-and-driving">Conditions that need to be reported</a></li>
<li style="margin-top: 0.5em;"><a href="https://www.gov.uk/driving-licence-categories">Types of driving licences</a></li>
<li style="margin-top: 0.5em;"><a href="https://www.gov.uk/giving-up-your-driving-licence">I want to give up my licence</a></li>
</ul>
</nav>
</div>
</div>
</div>
<div id="renewal" class="starthidden">
<div class="grid-row" style="margin-top:1.5em">
<div class="column-two-thirds">
<h1 style="margin-top:0.5em;" class="form-title heading-xlarge">
Renew your medical driving licence
</h1>
<p>Use this service to:</p>
<ul class="list-bullet">
<li>renew your medical driving licence</li>
</ul>
<p>If you need to tell DVLA about a different condition, download and complete the paper form – then post it to DVLA.</p>
<a href="javascript:start();" class="button button-get-started" role="button">Start now</a>
<h2 class="heading-medium" style="margin-top:0.75em">Other ways to apply</h2>
<h2 class="heading-small" style="margin-top:0.75em">By post</h2> Please provide the following:
<ul class="list-bullet">
<li>your full name and address</li>
<li>your driving licence number (or your date of birth if you do not know your driving licence number)</li>
<li>details about your medical condition</li>
</ul>
<p>Send to:</p>
Drivers Medical Group
<br> DVLA
<br> Swansea
<br> SA99 1TU
</div>
<div class="column-third" style=";margin-bottom:0.75em">
<nav class="popular-needs">
<h3 class="heading-medium" style="border-top:10px solid #005ea5;margin-top:1em;padding-top:1em">Driving with a medical condition</h3>
<ul style=";list-style-type: none">
<li style="margin-top: 0.5em;"><a href="https://www.gov.uk/health-conditions-and-driving">Conditions that need to be reported</a></li>
<li style="margin-top: 0.5em;"><a href="https://www.gov.uk/driving-licence-categories">Types of driving licences</a></li>
<li style="margin-top: 0.5em;"><a href="https://www.gov.uk/giving-up-your-driving-licence">I want to give up my licence</a></li>
</ul>
</nav>
</div>
</div>
</div>
<script>
show((QueryString.service == null) ? 'notify' : QueryString.service);
</script>
</main>
{{/content}}
{{$bodyEnd}}
{{/bodyEnd}}
{{/govuk_template}} | hannifd/F2D-Build | app/views/index.html | HTML | mit | 5,726 |
---
---
<!doctype html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Photo - A History of UCSF</title>
<link href='http://fonts.googleapis.com/css?family=Gilda+Display%7CPT+Sans+Narrow:300' rel='stylesheet' type='text/css'>
<link href="ucsf_history.css" rel="stylesheet" type="text/css" media="all" />
{% include google_analytics.html %}
</head>
<body>
<div id="mainbody">
{% include ucsf_banner.html %}
<div class="banner"><h1><a href="/">A History of UCSF</a></h1></div>
<div id="insidebody">
<div id="photocopy">
<div id="photocopy_text"><h2 class="title"><span class="title-primary">Photos</span></h2>
<div id="subhead">William Searby (1835-1909)</div>
<br />
<img src="images/pictures/Searby.jpg" width="550" height="563"/><br />
<br/>
<br/><br/>
<br/>
</div>
</div>
<div id="sidebar">
<div id="sidenav_inside">{% include search_include.html %}<br />
<div id="sidenavtype">
<a href="story.html" class="sidenavtype"><strong>THE STORY</strong></a><br/>
<br/>
<a href="special_topics.html" class="sidenavtype"><strong>SPECIAL TOPICS</strong></a><br/><br/>
<a href="people.html" class="sidenavtype"><strong>PEOPLE</strong></a><br/>
<br/>
<div id="sidenav_subnav_header"><strong><a href="photos.html" class="sidenav_subnav_type_visited">PHOTOS</a></strong></div>
<br/>
<a href="buildings.html" class="sidenavtype"><strong>BUILDINGS</strong></a><br/>
<br/>
<a href="index.html" class="sidenavtype"><strong>HOME</strong></a></div>
</div>
</div>
</div>
{% include footer.html %}
</div>
{% include bottom_js.html %}
</body>
</html>
| mizejewski/ucsf-history-website | photo_searby.html | HTML | mit | 1,731 |
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Relationships</h3>
</div>
<div class="panel-body">
<div ng-repeat="relationship in contactGroupMember.Relationships">
<div class="form-group">
<label for="inputRelationship" class="col-sm-2 control-label">Relationship</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputRelationship" placeholder="Relationship" ng-model="relationship.Name" />
</div>
</div>
<div class="form-group">
<div class="col-sm-10 col-sm-offset-2">
<button type="button" class="btn btn-default btn-xs" ng-click="contactGroupMember.removeRelationship(relationship)"><span class="glyphicon glyphicon-remove"></span> Remove</button>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<button type="button" class="btn btn-default btn-xs" ng-click="contactGroupMember.addRelationship('')"><span class="glyphicon glyphicon-plus"></span> Add a Relationship</button>
</div>
</div>
</div>
</div>
| ekyoung/contact-repository | Source/Web/Content/ContactGroups/EditContactGroupMemberRelationships.html | HTML | mit | 1,261 |