code
stringlengths 3
1.01M
| repo_name
stringlengths 5
116
| path
stringlengths 3
311
| language
stringclasses 30
values | license
stringclasses 15
values | size
int64 3
1.01M
|
|---|---|---|---|---|---|
jsonp({"cep":"81720470","logradouro":"Rua Francisco Castilho Filho","bairro":"Xaxim","cidade":"Curitiba","uf":"PR","estado":"Paran\u00e1"});
|
lfreneda/cepdb
|
api/v1/81720470.jsonp.js
|
JavaScript
|
cc0-1.0
| 141
|
jsonp({"cep":"93544140","logradouro":"Rua Ibsen","bairro":"Canudos","cidade":"Novo Hamburgo","uf":"RS","estado":"Rio Grande do Sul"});
|
lfreneda/cepdb
|
api/v1/93544140.jsonp.js
|
JavaScript
|
cc0-1.0
| 135
|
jsonp({"cep":"21020978","logradouro":"Rua Belis\u00e1rio Pena","bairro":"Penha","cidade":"Rio de Janeiro","uf":"RJ","estado":"Rio de Janeiro"});
|
lfreneda/cepdb
|
api/v1/21020978.jsonp.js
|
JavaScript
|
cc0-1.0
| 145
|
package com.stepsoft.common.encrypt;
import javax.crypto.Cipher;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.SecretKeySpec;
import org.apache.mina.util.Base64;
import com.stepsoft.common.constant.ConstantData;
/***
* General encryptor, this class can be used to encrypt password or some other
* context.
*
* @author sam
*
*/
public class GeneralEncryptor {
public static final String AES = "AES";
private static final String KEY1 = "CommonUtil_1@3$5";// Stepsoft_CommonUtil
private static final String KEY2 = "P@sswo_$d_!23$5^";// Stepsoft_CommonUtil
/***
* Encrypt text
*
* @param value
* ,明文
* @return 密文
*/
public static String encrypt(String value) {
try {
IvParameterSpec iv = new IvParameterSpec(
KEY2.getBytes(ConstantData.CHARSET_UTF8));
SecretKeySpec skeySpec = new SecretKeySpec(
KEY1.getBytes(ConstantData.CHARSET_UTF8), "AES");
Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5PADDING");
cipher.init(Cipher.ENCRYPT_MODE, skeySpec, iv);
byte[] encrypted = cipher.doFinal(value.getBytes());
System.out.println("encrypted string:"
+ Base64.encodeBase64(encrypted));
return new String(Base64.encodeBase64(encrypted),
ConstantData.CHARSET_UTF8);
} catch (Exception ex) {
ex.printStackTrace();
}
return null;
}
/***
* Decrypt cipher
*
* @param encrypted
* ,密文
* @return 明文
*/
public static String decrypt(String encrypted) {
try {
IvParameterSpec iv = new IvParameterSpec(
KEY2.getBytes(ConstantData.CHARSET_UTF8));
SecretKeySpec skeySpec = new SecretKeySpec(
KEY1.getBytes(ConstantData.CHARSET_UTF8), "AES");
Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5PADDING");
cipher.init(Cipher.DECRYPT_MODE, skeySpec, iv);
byte[] original = cipher.doFinal(Base64.decodeBase64(encrypted
.getBytes(ConstantData.CHARSET_UTF8)));
return new String(original);
} catch (Exception ex) {
ex.printStackTrace();
}
return null;
}
}
|
40925645/CommonUtil
|
src/main/java/com/stepsoft/common/encrypt/GeneralEncryptor.java
|
Java
|
cc0-1.0
| 2,034
|
<!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"><!-- Begin Jekyll SEO tag v2.6.1 -->
<title>AWS - How to Serve Traffic from a Load Balancer | Kabads. Musings, mutterings and murmerings.</title>
<meta name="generator" content="Jekyll v3.8.5" />
<meta property="og:title" content="AWS - How to Serve Traffic from a Load Balancer" />
<meta property="og:locale" content="en_US" />
<meta name="description" content="Amazon Web Services (AWS) allows you to serve private network traffic from behind a public load balancer. This offers extra security benefits as it detects DDOS traffic and other exploits and offers a layer of protection." />
<meta property="og:description" content="Amazon Web Services (AWS) allows you to serve private network traffic from behind a public load balancer. This offers extra security benefits as it detects DDOS traffic and other exploits and offers a layer of protection." />
<link rel="canonical" href="http://localhost:4000/sysadmin/2017/09/20/AWS-how-to-serve-traffic-from-load-balancer.html" />
<meta property="og:url" content="http://localhost:4000/sysadmin/2017/09/20/AWS-how-to-serve-traffic-from-load-balancer.html" />
<meta property="og:site_name" content="Kabads. Musings, mutterings and murmerings." />
<meta property="og:type" content="article" />
<meta property="article:published_time" content="2017-09-20T01:00:00+01:00" />
<script type="application/ld+json">
{"description":"Amazon Web Services (AWS) allows you to serve private network traffic from behind a public load balancer. This offers extra security benefits as it detects DDOS traffic and other exploits and offers a layer of protection.","@type":"BlogPosting","headline":"AWS - How to Serve Traffic from a Load Balancer","dateModified":"2017-09-20T01:00:00+01:00","datePublished":"2017-09-20T01:00:00+01:00","url":"http://localhost:4000/sysadmin/2017/09/20/AWS-how-to-serve-traffic-from-load-balancer.html","mainEntityOfPage":{"@type":"WebPage","@id":"http://localhost:4000/sysadmin/2017/09/20/AWS-how-to-serve-traffic-from-load-balancer.html"},"@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
<link rel="stylesheet" href="/assets/main.css"><link type="application/atom+xml" rel="alternate" href="http://localhost:4000/feed.xml" title="Kabads. Musings, mutterings and murmerings." /></head>
<body><header class="site-header" role="banner">
<div class="wrapper"><a class="site-title" rel="author" href="/">Kabads. Musings, mutterings and murmerings.</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="/about/">About</a></div>
</nav></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">AWS - How to Serve Traffic from a Load Balancer</h1>
<p class="post-meta">
<time class="dt-published" datetime="2017-09-20T01:00:00+01:00" itemprop="datePublished">Sep 20, 2017
</time></p>
</header>
<div class="post-content e-content" itemprop="articleBody">
<p><a href="http://aws.amazon.com">Amazon Web Services</a> (AWS) allows you to serve private network traffic from behind a public load balancer. This offers extra security benefits as it detects DDOS traffic and other exploits and offers a layer of protection.</p>
<p>There are some things you should know before you start this tutorial. You should know:</p>
<ol>
<li>How to create a <a href="https://en.wikipedia.org/wiki/Virtual_private_cloud">VPC</a></li>
<li>How to configure <a href="https://en.wikipedia.org/wiki/Subnetwork">subnets</a></li>
<li>How to create an EC2 instance</li>
<li>How to ensure an EC2 instance is within an particular subnet</li>
<li>How to ssh to an EC2 instance</li>
</ol>
<p>You will create a new VPC. You can use your default VPC, but this isn’t recommended. Default VPCs are for legacy ec2-classic instances. You should identify a CIDR block range for your VPC (e.g. 10.0.0.0/16).</p>
<p>Then, create two new subnets under the new VPC. One will be private and one will be public. The load balancer will use the public subnet and the EC2 instance will use the private subnet. Each subnet will have a different route table, one allowing traffic in and the other not. The first subnet should have a CIDR block range of 10.0.1.0/24. Next create your private subnet with a CIDR of 10.0.2.0/24 - this can be in the same availibility zone as the first subnet.</p>
<p>For high availability, it is a good idea to place your next elastic load balancer in a different availability zone. When you configure your load balancer you will need to choose two subnets. Therefore we have to create another public subnet that has a different availability zone. This has a CIDR range of 10.0.3.0/24 and is belongs in a different availability zone.</p>
<p>You should have three subnets as this image shows.</p>
<blockquote class="imgur-embed-pub" lang="en" data-id="a/KFrjH"><a href="//imgur.com/KFrjH"></a></blockquote>
<script async="" src="//s.imgur.com/min/embed.js" charset="utf-8"></script>
<p>Next you need to create an Internet Gateway and attach it to the public subnet. This is what makes the load balancer world accessible. Click on Internet Gateway, then create an internet gateway, with a name tag. Then, attach it to the VPC that you have created (only one Internet Gateway can be attached to a VPC). Click the Attach to VPC button and then choose the new VPC that you created earlier. This means you will be able to access the EC2 instance for the time being.</p>
<p>Next add a route table. Create a Route Table and add a route of 0.0.0.0/0 and choose the target of your new Internet Gateway. This means you can now access your EC2 instance.</p>
<p>This route table is associated with all of the subnets, which means they are all now public. We will later make the private subnet private.</p>
<p>Now, create your EC2 instance. Launch it in the private subnet (even though it is still public at the moment).</p>
<p>When you create your EC2 instance create a rule that allows port 80 for HTTP.</p>
<p>Now create a load balancer. This will be a classic type of load balancer. Do not create an internal load balancer, as that will only be accessible from within the VPC. We want traffic from anywhere. Listen on port 80. Now we select the two public subnets that we created earlier. One of them has to be in the same availability zone as the EC2 instance (which it is). The other one can be in a different availibility zone. Assign the security group that was created when you created the VPC.</p>
<p>With load balancers you have to configure the health check. This is best done over TCP protocol on port 22. Then you add an EC2 instance to the load balancer. Use the one that we created earlier. Add tags, review and launch.</p>
<p>Now we need to SSH in to the instance and install a httpd server. ssh in using your key, ssh -i pem-key.pem ec2-user@34.3.124.41 - do not forget that your pem key file must have permissions of 400 or less.</p>
<p>Start the httpd service - sudo service start httpd</p>
<p>Check using the public ip address of the EC2 instance. You’ll notice that this works as the EC2 instance is still in a public route table.</p>
<p>Let’s fix that by creating a new route table. The new route table must only have a route that allows the local traffic (i.e. no 0.0.0.0/0). Then go to the private subnet and then change the route for the subnet to the new route table that doesn’t have a public route.</p>
<blockquote class="imgur-embed-pub" lang="en" data-id="a/CzkdB"><a href="//imgur.com/CzkdB"></a></blockquote>
<script async="" src="//s.imgur.com/min/embed.js" charset="utf-8"></script>
<p>You can test if your load balancer is still forwarding the traffic by clicking on load balancer link, selecting the active load balancer and then using the DNS information</p>
<blockquote class="imgur-embed-pub" lang="en" data-id="a/mPIkP"><a href="//imgur.com/mPIkP"></a></blockquote>
<script async="" src="//s.imgur.com/min/embed.js" charset="utf-8"></script>
<p>Copy and paste that link into your browser. You should be forwarded to the HTTP welcome page that the private EC2 instance is server.</p>
<p>If you have any comments, please post them in the disqus below.</p>
</div><a class="u-url" href="/sysadmin/2017/09/20/AWS-how-to-serve-traffic-from-load-balancer.html" hidden></a>
</article>
</div>
</main><footer class="site-footer h-card">
<data class="u-url" href="/"></data>
<div class="wrapper">
<h2 class="footer-heading">Kabads. Musings, mutterings and murmerings.</h2>
<div class="footer-col-wrapper">
<div class="footer-col footer-col-1">
<ul class="contact-list">
<li class="p-name">Kabads. Musings, mutterings and murmerings.</li><li><a class="u-email" href="mailto:adam@monkeez.org">adam@monkeez.org</a></li></ul>
</div>
<div class="footer-col footer-col-2"><ul class="social-media-list"><li><a href="https://github.com/jekyll"><svg class="svg-icon"><use xlink:href="/assets/minima-social-icons.svg#github"></use></svg> <span class="username">jekyll</span></a></li><li><a href="https://www.twitter.com/jekyllrb"><svg class="svg-icon"><use xlink:href="/assets/minima-social-icons.svg#twitter"></use></svg> <span class="username">jekyllrb</span></a></li></ul>
</div>
<div class="footer-col footer-col-3">
<p>I worked in education for 20 years and always had a hand in Technology. For the last couple of years, I've been working in Cloud Automation.</p>
</div>
</div>
</div>
</footer>
</body>
</html>
|
kabads/kabads.monkeez.org
|
_site/sysadmin/2017/09/20/AWS-how-to-serve-traffic-from-load-balancer.html
|
HTML
|
cc0-1.0
| 10,634
|
jsonp({"cep":"03462020","logradouro":"Rua Alto Cafezal","bairro":"Jardim Record","cidade":"S\u00e3o Paulo","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/03462020.jsonp.js
|
JavaScript
|
cc0-1.0
| 146
|
<!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 (1.8.0_45-internal) on Sat Jul 25 18:14:30 BST 2015 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Package org.apache.jena.sparql.engine.ref (Apache Jena ARQ)</title>
<meta name="date" content="2015-07-25">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Package org.apache.jena.sparql.engine.ref (Apache Jena ARQ)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<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>Class</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-all.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/apache/jena/sparql/engine/ref/package-use.html" target="_top">Frames</a></li>
<li><a href="package-use.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">
<h1 title="Uses of Package org.apache.jena.sparql.engine.ref" class="title">Uses of Package<br>org.apache.jena.sparql.engine.ref</h1>
</div>
<div class="contentContainer">
<ul class="blockList">
<li class="blockList">
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../../../org/apache/jena/sparql/engine/ref/package-summary.html">org.apache.jena.sparql.engine.ref</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#org.apache.jena.sparql.algebra.table">org.apache.jena.sparql.algebra.table</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#org.apache.jena.sparql.engine.ref">org.apache.jena.sparql.engine.ref</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="org.apache.jena.sparql.algebra.table">
<!-- -->
</a>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../../../../../org/apache/jena/sparql/engine/ref/package-summary.html">org.apache.jena.sparql.engine.ref</a> used by <a href="../../../../../../org/apache/jena/sparql/algebra/table/package-summary.html">org.apache.jena.sparql.algebra.table</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../../../../../org/apache/jena/sparql/engine/ref/class-use/Evaluator.html#org.apache.jena.sparql.algebra.table">Evaluator</a> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="org.apache.jena.sparql.engine.ref">
<!-- -->
</a>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../../../../../org/apache/jena/sparql/engine/ref/package-summary.html">org.apache.jena.sparql.engine.ref</a> used by <a href="../../../../../../org/apache/jena/sparql/engine/ref/package-summary.html">org.apache.jena.sparql.engine.ref</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../../../../../org/apache/jena/sparql/engine/ref/class-use/Evaluator.html#org.apache.jena.sparql.engine.ref">Evaluator</a> </td>
</tr>
<tr class="rowColor">
<td class="colOne"><a href="../../../../../../org/apache/jena/sparql/engine/ref/class-use/QueryEngineRef.html#org.apache.jena.sparql.engine.ref">QueryEngineRef</a>
<div class="block">"Reference" query engine - this simply executes the algebra expression as-is
using a simple (non-scalable) execution strategy that follows the definition
of SPARQL as closely as possible.</div>
</td>
</tr>
</tbody>
</table>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<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>Class</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-all.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/apache/jena/sparql/engine/ref/package-use.html" target="_top">Frames</a></li>
<li><a href="package-use.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>Licenced under the Apache License, Version 2.0</small></p>
</body>
</html>
|
slennie12/SOR-Onderzoek
|
apache-jena-3.0.0/javadoc-arq/org/apache/jena/sparql/engine/ref/package-use.html
|
HTML
|
cc0-1.0
| 7,262
|
---
title: "Should our front-end websites be server-side at all?"
date: 2015-08-20 15:00:00
tags: [opinion,architecture]
---
I've been toying around with projects like Jekyll, Hexo and even some hand-rolled software that will generate me HTML files based on data. The thought that crossed my mind was...
> Why do we need dynamically generated HTML again?
Let me take examples and build my case.
## Example 1: Blog
Of course the simpler examples like blogs could literally all be static. If you need comments, then you could go with a system like [Disqus](http://www.disqus.com). This is quite literally one of the only part of your system that is dynamic.
RSS feed? Generated from posts. Posts themselves? Could be automatically generated from a databases or Markdown files periodically. The resulting output can be hosted on a [Raspberry Pi](https://www.raspberrypi.org/documentation/remote-access/web-server/nginx.md) without any issues.
## Example 2: E-Commerce
This one is more of a problem. Here are the things that don't change a lot. Products. OK, they may change but do you need to have your site updated right this second? Can it wait a minute? Then all the "product pages" could literally be static pages.
Product reviews? They will need to be "approved" anyway before you want them live. Put them in a servier-side queue, and regenerate the product page with the updated review once it's done.
There's 3 things that I see that would require to be dynamic in this scenario.
Search, Checkout and Reviews. Search because as your products scales up, so does your data. Doing the search client side won't scale at any level. Checkout because we are now handling an actual order and it needs a server components. Reviews because we'll need to approve and publish them.
In this scenario, only the Search is the actual "Read" component that is now server side. Everything else? Pre-generated. Even if the search is bringing you the list of product dynamically, it can still end up on a static page.
All the other write components? Queued server side to be processed by the business itself with either Azure or an off-site component.
All the backend side of the business (managing products, availability, sales, whatnot, etc.) will need a management UI that will be 100% dynamic (read/write).
## Question
So... do we need dynamic front-end with the latest server framework? On the public facing too or just the backend?
If you want to discuss it, Tweet me at [@MaximRouiller](https://www.twitter.com/MaximRouiller).
|
MaximRouiller/blog.decayingcode.com
|
source/_posts/Should-our-front-end-websites-be-server-side-at-all.md
|
Markdown
|
cc0-1.0
| 2,535
|
jsonp({"cep":"03156000","logradouro":"Avenida Vila Ema","bairro":"Vila Prudente","cidade":"S\u00e3o Paulo","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/03156000.jsonp.js
|
JavaScript
|
cc0-1.0
| 146
|
jsonp({"cep":"74370529","logradouro":"Rua das Flores","bairro":"Bairro Santa Rita","cidade":"Goi\u00e2nia","uf":"GO","estado":"Goi\u00e1s"});
|
lfreneda/cepdb
|
api/v1/74370529.jsonp.js
|
JavaScript
|
cc0-1.0
| 142
|
jsonp({"cep":"32675464","logradouro":"Pra\u00e7a Cristina","bairro":"Vila Cristina","cidade":"Betim","uf":"MG","estado":"Minas Gerais"});
|
lfreneda/cepdb
|
api/v1/32675464.jsonp.js
|
JavaScript
|
cc0-1.0
| 138
|
jsonp({"cep":"05831055","logradouro":"Rua Amitaba","bairro":"Ch\u00e1cara Santana","cidade":"S\u00e3o Paulo","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/05831055.jsonp.js
|
JavaScript
|
cc0-1.0
| 148
|
jsonp({"cep":"13606825","logradouro":"Rua Osmany Carminatti","bairro":"Parque Dom Pedro","cidade":"Araras","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/13606825.jsonp.js
|
JavaScript
|
cc0-1.0
| 146
|
jsonp({"cep":"31652180","logradouro":"Rua Davidson Pimenta da Rocha","bairro":"Jardim dos Comerci\u00e1rios (Venda Nova)","cidade":"Belo Horizonte","uf":"MG","estado":"Minas Gerais"});
|
lfreneda/cepdb
|
api/v1/31652180.jsonp.js
|
JavaScript
|
cc0-1.0
| 185
|
jsonp({"cep":"75806510","logradouro":"Rua 2","bairro":"Conjunto Filostro Machado","cidade":"Jata\u00ed","uf":"GO","estado":"Goi\u00e1s"});
|
lfreneda/cepdb
|
api/v1/75806510.jsonp.js
|
JavaScript
|
cc0-1.0
| 139
|
jsonp({"cep":"85607000","cidade":"Jacutinga","uf":"PR","estado":"Paran\u00e1"});
|
lfreneda/cepdb
|
api/v1/85607000.jsonp.js
|
JavaScript
|
cc0-1.0
| 81
|
jsonp({"cep":"88139280","logradouro":"Rua 2004","bairro":"Praia do Meio (Ens Brito)","cidade":"Palho\u00e7a","uf":"SC","estado":"Santa Catarina"});
|
lfreneda/cepdb
|
api/v1/88139280.jsonp.js
|
JavaScript
|
cc0-1.0
| 148
|
jsonp({"cep":"04543070","logradouro":"Rua Fernandes de Abreu","bairro":"Ch\u00e1cara Itaim","cidade":"S\u00e3o Paulo","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/04543070.jsonp.js
|
JavaScript
|
cc0-1.0
| 157
|
jsonp({"cep":"94852000","logradouro":"Rua Manoel dos Santos","bairro":"Tijuca","cidade":"Alvorada","uf":"RS","estado":"Rio Grande do Sul"});
|
lfreneda/cepdb
|
api/v1/94852000.jsonp.js
|
JavaScript
|
cc0-1.0
| 141
|
jsonp({"cep":"41205195","logradouro":"Rua Querubim","bairro":"Tancredo Neves","cidade":"Salvador","uf":"BA","estado":"Bahia"});
|
lfreneda/cepdb
|
api/v1/41205195.jsonp.js
|
JavaScript
|
cc0-1.0
| 128
|
jsonp({"cep":"03566010","logradouro":"Rua Henrique Jacobs","bairro":"Vila Santa Teresa (Zona Leste)","cidade":"S\u00e3o Paulo","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/03566010.jsonp.js
|
JavaScript
|
cc0-1.0
| 166
|
M.A.N.T.I.S.-Project
====================
|
biakko/M.A.N.T.I.S.-Project
|
README.md
|
Markdown
|
cc0-1.0
| 42
|
jsonp({"cep":"74690858","logradouro":"Rua David Aires Fran\u00e7a","bairro":"Jardim Bom Jesus","cidade":"Goi\u00e2nia","uf":"GO","estado":"Goi\u00e1s"});
|
lfreneda/cepdb
|
api/v1/74690858.jsonp.js
|
JavaScript
|
cc0-1.0
| 154
|
jsonp({"cep":"82950240","logradouro":"Rua Doutor Levino Bornancin","bairro":"Cajuru","cidade":"Curitiba","uf":"PR","estado":"Paran\u00e1"});
|
lfreneda/cepdb
|
api/v1/82950240.jsonp.js
|
JavaScript
|
cc0-1.0
| 141
|
---
layout: post
title: "Akela's Guide to Pre-Glamping Camping"
permalink: /archives/2016/05/glamping.html
commentfile: 2016-05-14-glamping
category: around_town
author: "Martyn Day"
date: 2016-05-14 10:10:34
image: "/assets/images/2016/GLAMPING_Camping_Firelight_thumb.jpg"
excerpt: |
I would feel more optimistic about a bright future for man if he spent less time proving that he can outwit Nature and more time tasting her sweetness and respecting her seniority.
---
<a href="/assets/images/2016/GLAMPING_Camping_Firelight.jpg" title="See larger version of - Camping Firelight"><img src="/assets/images/2016/GLAMPING_Camping_Firelight_thumb.jpg" width="250" height="112" alt="Camping Firelight" class="photo right" /></a>
> "Can you remember the patter of rain on your tent, the sound of owls or the rustling of the wind in the leaves at night? It is a feeling of absolute freedom and belonging - re-establishing our relationship with both ourselves and Plant Earth. A night in the outdoors is also a reminder that not everything that's precious and valuable costs a lot of money..."
<cite>BEAR GRYLLS 2010</cite>
...Well, apart from Glamping! Go camping in the outdoors these days and you will expect to find and pay for:- showers, toilets, a shop, a café, a bar, a heated tent, yurt, pod, gypsy caravan or shanty complete with a plasma TV set, hi-fi and wi-fi plus a well equipped kitchen and if you're lucky a hot tub... but it wasn't always like that. There was a time when camping wasn't just about comfort and leisure. Camping was seen as a way of reconnecting with nature and in doing so discovering ourselves...
<a href="/assets/images/2016/GLAMPING_Hut_shelter.JPG" title="See larger version of - Hut shelter"><img src="/assets/images/2016/GLAMPING_Hut_shelter_thumb.JPG" width="250" height="189" alt="Hut shelter" class="photo right" /></a>
> "Everybody needs beauty as well as bread, places to play in and pray in, where nature may heal and give strength to body and soul alike."
<cite>JOHN MUIR 1838-1914</cite>
> "I would feel more optimistic about a bright future for man if he spent less time proving that he can outwit Nature and more time tasting her sweetness and respecting her seniority."
<cite>E.B. WHITE 1899-1985</cite>
Attitudes to how you make that <em>'reconnection with nature'</em> have changed with time. These days the very first thing that <em>'green-field'</em> campers are advised to do is to put up their tents - so if it suddenly rains they have somewhere to put their gear and shelter if necessary. Before the 1<sup>st</sup> World War the emphasis was totally different. The priorities then were inner cleanliness and what the Victorian pioneers called <em>"having a good 'rear'"!</em>...
<a href="/assets/images/2016/GLAMPING_latrine.JPG" title="See larger version of - latrine"><img src="/assets/images/2016/GLAMPING_latrine_thumb.JPG" width="250" height="164" alt="latrine" class="photo right" /></a>
> ...Before pitching tents or lighting the camp fire the latrines should be dug and screens erected. On reaching the camping ground the latrines are the very first things to attend to. The trench should be 1 foot deep (30 cms), 1 foot wide (30 cms) and 3 feet long (90 cms) so that the user can squat astride it, one foot on each side. A thick sprinkling of earth should be thrown in after use.
<cite><em>'COMFORT IN CAMP'</em> - Published 1908</cite>
<em>'Green-Field'</em> campers still dig latrines these days and to similar dimensions (although twice as deep.) They also sprinkle earth in after use - and NEVER use any chemicals as they interfere with the natural degrading process. There are safety considerations worth noting as well. I remember a camp where the organisers, for reasons of hygiene, put kerosene down the latrine. One morning a smoker used the latrine and then casually threw his early morning fag-end down the hole. There was a gentle boom, a puff of smoke and a smell of burnt flesh. A sure cure for constipation!
<a href="/assets/images/2016/GLAMPING_Star_Fire.JPG" title="See larger version of - Star Fire"><img src="/assets/images/2016/GLAMPING_Star_Fire_thumb.JPG" width="250" height="126" alt="Star Fire" class="photo right" /></a>
Then there are/were the wet and dry pits. Whereas glampers today put their rubbish into a plastic bag and throw it into a skip or leave it outside the tent/yurt/pod w.h.y for collection, <em>'old -style campers'</em> would start digging again. Wet and dry pits are/were about 45 cms square and 30 cms deep. The wet pit, for washing up water and the like, is covered with a lattice of sticks and ferns to catch any grease or bits that might be lurking in the dirty water. The <em>'bits'</em> include forgotten cutlery, scourers and the occasional wedding ring. The leafy matting is changed every day and burned.
In the old days the dry pit was for anything that would not burn including tins and bottles. Tins were first put in the fire to melt off the outer tin plating and so speed up the rusting process. Then they were bashed flat and buried. Today dry pits are generally frowned upon. Modern green-field campers are advised to take their rubbish home with them and recycle it. The motto today is - <em>"Leave nothing behind, apart from your thanks!"</em>
<a href="/assets/images/2016/GLAMPING_Bell_Tent.jpg" title="See larger version of - Bell Tent"><img src="/assets/images/2016/GLAMPING_Bell_Tent_thumb.jpg" width="250" height="177" alt="Bell Tent" class="photo right" /></a>
The next step in the pre-glamping camping process was to put up the tents which were heavy, smelly, difficult to erect and lacking many of the modern benefits like sewn-in ground sheets, windows, insect screens and quick zip doors. Then a fly sheet was considered a luxurious and optional accessory rather than a standard fixture. Of particular inconvenience was the old military bell tent consisting of a solid wooden pole and acres of heavy duty canvas both of which looked like they had been stripped from the rigging of the <em>'Cutty Sark'</em>. It took at least four people to put one up and twice as many to carry.
<a href="/assets/images/2016/GLAMPING_Camp_Fire.JPG" title="See larger version of - Camp Fire"><img src="/assets/images/2016/GLAMPING_Camp_Fire_thumb.JPG" width="250" height="156" alt="Camp Fire" class="photo right" /></a>
Once the tents were up it was probably time for a refreshing cup of tea but this too involved a certain amount of digging. Instead of simply lighting the gas on your camp stove a fire pit had to be created by removing a large square of turf using a knife or spade. The turf had to be preserved for eventual replacement by placing it grass side down on the ground a few metres away from the fire. Further pieces of turf could then be added on top of the pile, this time soil side to soil. Watering the turf occasionally kept it fresh.
<a href="/assets/images/2016/GLAMPING_once_a_jolly_swagman.png" title="See larger version of - once a jolly swagman"><img src="/assets/images/2016/GLAMPING_once_a_jolly_swagman_thumb.png" width="250" height="187" alt="once a jolly swagman" class="photo right" /></a>
Then all you had to do for your cup of tea was
<ol type="a">
<li>
Collect a large bundle of firewood ranging from the thinnest kindling to substantial logs,
</li>
<li>
Sort it into its various parts,
</li>
<li>
Light the fire and over a period of about 30 minutes coax it into a decent flame (or better still - hot embers)
</li>
<li>
Erect some kind of structure over the fire to support your billy can
</li>
<li>
Get some fresh water
</li>
<li>
Like the jolly swagman, sing as you watch and wait till your billy boils
</li>
<li>
Suddenly realise that you have no tea - and no shop to buy some from either.
</li>
<li>
Give up and go glamping instead. I'm sure that they'll do a nice latte macchiato in that little café in the corner of the field!
</li>
</ol>
<div markdown="1" class="box">
#### John Denver and the Muppets getting all excited about the delights of camping
<iframe width="560" height="420" src="https://www.youtube-nocookie.com/embed/T7uC3NYUCH0?rel=0" frameborder="0" allowfullscreen>
</iframe>
</div>
<cite>-- from Martyn Day</cite>
|
pmahnke/stmgrts
|
_posts/2016/2016-05-14-glamping.md
|
Markdown
|
cc0-1.0
| 8,223
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Mupen64plus-rsp-hle - alist_nead.c *
* Mupen64Plus homepage: http://code.google.com/p/mupen64plus/ *
* Copyright (C) 2014 Bobby Smiles *
* Copyright (C) 2009 Richard Goedeken *
* Copyright (C) 2002 Hacktarux *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#ifndef _MSC_VER
#include <stdbool.h>
#else
#include "mystdbool.h"
#endif
#include <stdint.h>
#include "common.h"
#include "alist.h"
#include "hle_external.h"
#include "hle_internal.h"
#include "memory.h"
/* remove windows define to 0x06 */
#ifdef DUPLICATE
#undef DUPLICATE
#endif
/* audio commands definition */
static void UNKNOWN(struct hle_t* hle, uint32_t w1, uint32_t w2)
{
uint8_t acmd = (w1 >> 24);
HleWarnMessage(hle->user_defined,
"Unknown audio command %d: %08x %08x",
acmd, w1, w2);
}
static void SPNOOP(struct hle_t* UNUSED(hle), uint32_t UNUSED(w1), uint32_t UNUSED(w2))
{
}
static void LOADADPCM(struct hle_t* hle, uint32_t w1, uint32_t w2)
{
uint16_t count = w1;
uint32_t address = (w2 & 0xffffff);
dram_load_u16(hle, (uint16_t*)hle->alist_nead.table, address, count >> 1);
}
static void SETLOOP(struct hle_t* hle, uint32_t UNUSED(w1), uint32_t w2)
{
hle->alist_nead.loop = w2 & 0xffffff;
}
static void SETBUFF(struct hle_t* hle, uint32_t w1, uint32_t w2)
{
hle->alist_nead.in = w1;
hle->alist_nead.out = (w2 >> 16);
hle->alist_nead.count = w2;
}
static void ADPCM(struct hle_t* hle, uint32_t w1, uint32_t w2)
{
uint8_t flags = (w1 >> 16);
uint32_t address = (w2 & 0xffffff);
alist_adpcm(
hle,
flags & 0x1,
flags & 0x2,
flags & 0x4,
hle->alist_nead.out,
hle->alist_nead.in,
(hle->alist_nead.count + 0x1f) & ~0x1f,
hle->alist_nead.table,
hle->alist_nead.loop,
address);
}
static void CLEARBUFF(struct hle_t* hle, uint32_t w1, uint32_t w2)
{
uint16_t dmem = w1;
uint16_t count = w2;
if (count == 0)
return;
alist_clear(hle, dmem, count);
}
static void LOADBUFF(struct hle_t* hle, uint32_t w1, uint32_t w2)
{
uint16_t count = (w1 >> 12) & 0xfff;
uint16_t dmem = (w1 & 0xfff);
uint32_t address = (w2 & 0xffffff);
alist_load(hle, dmem, address, count);
}
static void SAVEBUFF(struct hle_t* hle, uint32_t w1, uint32_t w2)
{
uint16_t count = (w1 >> 12) & 0xfff;
uint16_t dmem = (w1 & 0xfff);
uint32_t address = (w2 & 0xffffff);
alist_save(hle, dmem, address, count);
}
static void MIXER(struct hle_t* hle, uint32_t w1, uint32_t w2)
{
uint16_t count = (w1 >> 12) & 0xff0;
int16_t gain = w1;
uint16_t dmemi = (w2 >> 16);
uint16_t dmemo = w2;
alist_mix(hle, dmemo, dmemi, count, gain);
}
static void RESAMPLE(struct hle_t* hle, uint32_t w1, uint32_t w2)
{
uint8_t flags = (w1 >> 16);
uint16_t pitch = w1;
uint32_t address = (w2 & 0xffffff);
alist_resample(
hle,
flags & 0x1,
false, /* TODO: check which ABI supports it */
hle->alist_nead.out,
hle->alist_nead.in,
(hle->alist_nead.count + 0xf) & ~0xf,
pitch << 1,
address);
}
static void RESAMPLE_ZOH(struct hle_t* hle, uint32_t w1, uint32_t w2)
{
uint16_t pitch = w1;
uint16_t pitch_accu = w2;
alist_resample_zoh(
hle,
hle->alist_nead.out,
hle->alist_nead.in,
hle->alist_nead.count,
pitch << 1,
pitch_accu);
}
static void DMEMMOVE(struct hle_t* hle, uint32_t w1, uint32_t w2)
{
uint16_t dmemi = w1;
uint16_t dmemo = (w2 >> 16);
uint16_t count = w2;
if (count == 0)
return;
alist_move(hle, dmemo, dmemi, (count + 3) & ~3);
}
static void ENVSETUP1_MK(struct hle_t* hle, uint32_t w1, uint32_t w2)
{
hle->alist_nead.env_values[2] = (w1 >> 8) & 0xff00;
hle->alist_nead.env_steps[2] = 0;
hle->alist_nead.env_steps[0] = (w2 >> 16);
hle->alist_nead.env_steps[1] = w2;
}
static void ENVSETUP1(struct hle_t* hle, uint32_t w1, uint32_t w2)
{
hle->alist_nead.env_values[2] = (w1 >> 8) & 0xff00;
hle->alist_nead.env_steps[2] = w1;
hle->alist_nead.env_steps[0] = (w2 >> 16);
hle->alist_nead.env_steps[1] = w2;
}
static void ENVSETUP2(struct hle_t* hle, uint32_t UNUSED(w1), uint32_t w2)
{
hle->alist_nead.env_values[0] = (w2 >> 16);
hle->alist_nead.env_values[1] = w2;
}
static void ENVMIXER_MK(struct hle_t* hle, uint32_t w1, uint32_t w2)
{
int16_t xors[4];
uint16_t dmemi = (w1 >> 12) & 0xff0;
uint8_t count = (w1 >> 8) & 0xff;
uint16_t dmem_dl = (w2 >> 20) & 0xff0;
uint16_t dmem_dr = (w2 >> 12) & 0xff0;
uint16_t dmem_wl = (w2 >> 4) & 0xff0;
uint16_t dmem_wr = (w2 << 4) & 0xff0;
xors[2] = 0; /* unsupported by this ucode */
xors[3] = 0; /* unsupported by this ucode */
xors[0] = 0 - (int16_t)((w1 & 0x2) >> 1);
xors[1] = 0 - (int16_t)((w1 & 0x1) );
alist_envmix_nead(
hle,
false, /* unsupported by this ucode */
dmem_dl, dmem_dr,
dmem_wl, dmem_wr,
dmemi, count,
hle->alist_nead.env_values,
hle->alist_nead.env_steps,
xors);
}
static void ENVMIXER(struct hle_t* hle, uint32_t w1, uint32_t w2)
{
int16_t xors[4];
uint16_t dmemi = (w1 >> 12) & 0xff0;
uint8_t count = (w1 >> 8) & 0xff;
bool swap_wet_LR = (w1 >> 4) & 0x1;
uint16_t dmem_dl = (w2 >> 20) & 0xff0;
uint16_t dmem_dr = (w2 >> 12) & 0xff0;
uint16_t dmem_wl = (w2 >> 4) & 0xff0;
uint16_t dmem_wr = (w2 << 4) & 0xff0;
xors[2] = 0 - (int16_t)((w1 & 0x8) >> 1);
xors[3] = 0 - (int16_t)((w1 & 0x4) >> 1);
xors[0] = 0 - (int16_t)((w1 & 0x2) >> 1);
xors[1] = 0 - (int16_t)((w1 & 0x1) );
alist_envmix_nead(
hle,
swap_wet_LR,
dmem_dl, dmem_dr,
dmem_wl, dmem_wr,
dmemi, count,
hle->alist_nead.env_values,
hle->alist_nead.env_steps,
xors);
}
static void DUPLICATE(struct hle_t* hle, uint32_t w1, uint32_t w2)
{
uint8_t count = (w1 >> 16);
uint16_t dmemi = w1;
uint16_t dmemo = (w2 >> 16);
alist_repeat64(hle, dmemo, dmemi, count);
}
static void INTERL(struct hle_t* hle, uint32_t w1, uint32_t w2)
{
uint16_t count = w1;
uint16_t dmemi = (w2 >> 16);
uint16_t dmemo = w2;
alist_copy_every_other_sample(hle, dmemo, dmemi, count);
}
static void INTERLEAVE_MK(struct hle_t* hle, uint32_t UNUSED(w1), uint32_t w2)
{
uint16_t left = (w2 >> 16);
uint16_t right = w2;
if (hle->alist_nead.count == 0)
return;
alist_interleave(hle, hle->alist_nead.out, left, right, hle->alist_nead.count);
}
static void INTERLEAVE(struct hle_t* hle, uint32_t w1, uint32_t w2)
{
uint16_t count = ((w1 >> 12) & 0xff0);
uint16_t dmemo = w1;
uint16_t left = (w2 >> 16);
uint16_t right = w2;
alist_interleave(hle, dmemo, left, right, count);
}
static void ADDMIXER(struct hle_t* hle, uint32_t w1, uint32_t w2)
{
uint16_t count = (w1 >> 12) & 0xff0;
uint16_t dmemi = (w2 >> 16);
uint16_t dmemo = w2;
alist_add(hle, dmemo, dmemi, count);
}
static void HILOGAIN(struct hle_t* hle, uint32_t w1, uint32_t w2)
{
int8_t gain = (w1 >> 16); /* Q4.4 signed */
uint16_t count = w1;
uint16_t dmem = (w2 >> 16);
alist_multQ44(hle, dmem, count, gain);
}
static void FILTER(struct hle_t* hle, uint32_t w1, uint32_t w2)
{
uint8_t flags = (w1 >> 16);
uint32_t address = (w2 & 0xffffff);
if (flags > 1) {
hle->alist_nead.filter_count = w1;
hle->alist_nead.filter_lut_address[0] = address; /* t6 */
}
else {
uint16_t dmem = w1;
hle->alist_nead.filter_lut_address[1] = address + 0x10; /* t5 */
alist_filter(hle, dmem, hle->alist_nead.filter_count, address, hle->alist_nead.filter_lut_address);
}
}
static void SEGMENT(struct hle_t* UNUSED(hle), uint32_t UNUSED(w1), uint32_t UNUSED(w2))
{
}
static void NEAD_16(struct hle_t* hle, uint32_t w1, uint32_t w2)
{
uint8_t count = (w1 >> 16);
uint16_t dmemi = w1;
uint16_t dmemo = (w2 >> 16);
uint16_t block_size = w2;
alist_copy_blocks(hle, dmemo, dmemi, block_size, count);
}
static void POLEF(struct hle_t* hle, uint32_t w1, uint32_t w2)
{
uint8_t flags = (w1 >> 16);
uint16_t gain = w1;
uint32_t address = (w2 & 0xffffff);
if (hle->alist_nead.count == 0)
return;
alist_polef(
hle,
flags & A_INIT,
hle->alist_nead.out,
hle->alist_nead.in,
hle->alist_nead.count,
gain,
hle->alist_nead.table,
address);
}
void alist_process_nead_mk(struct hle_t* hle)
{
static const acmd_callback_t ABI[0x20] = {
SPNOOP, ADPCM, CLEARBUFF, SPNOOP,
SPNOOP, RESAMPLE, SPNOOP, SEGMENT,
SETBUFF, SPNOOP, DMEMMOVE, LOADADPCM,
MIXER, INTERLEAVE_MK, POLEF, SETLOOP,
NEAD_16, INTERL, ENVSETUP1_MK, ENVMIXER_MK,
LOADBUFF, SAVEBUFF, ENVSETUP2, SPNOOP,
SPNOOP, SPNOOP, SPNOOP, SPNOOP,
SPNOOP, SPNOOP, SPNOOP, SPNOOP
};
alist_process(hle, ABI, 0x20);
}
void alist_process_nead_sf(struct hle_t* hle)
{
static const acmd_callback_t ABI[0x20] = {
SPNOOP, ADPCM, CLEARBUFF, SPNOOP,
ADDMIXER, RESAMPLE, RESAMPLE_ZOH, SPNOOP,
SETBUFF, SPNOOP, DMEMMOVE, LOADADPCM,
MIXER, INTERLEAVE_MK, POLEF, SETLOOP,
NEAD_16, INTERL, ENVSETUP1, ENVMIXER,
LOADBUFF, SAVEBUFF, ENVSETUP2, SPNOOP,
HILOGAIN, UNKNOWN, DUPLICATE, SPNOOP,
SPNOOP, SPNOOP, SPNOOP, SPNOOP
};
alist_process(hle, ABI, 0x20);
}
void alist_process_nead_sfj(struct hle_t* hle)
{
static const acmd_callback_t ABI[0x20] = {
SPNOOP, ADPCM, CLEARBUFF, SPNOOP,
ADDMIXER, RESAMPLE, RESAMPLE_ZOH, SPNOOP,
SETBUFF, SPNOOP, DMEMMOVE, LOADADPCM,
MIXER, INTERLEAVE_MK, POLEF, SETLOOP,
NEAD_16, INTERL, ENVSETUP1, ENVMIXER,
LOADBUFF, SAVEBUFF, ENVSETUP2, UNKNOWN,
HILOGAIN, UNKNOWN, DUPLICATE, SPNOOP,
SPNOOP, SPNOOP, SPNOOP, SPNOOP
};
alist_process(hle, ABI, 0x20);
}
void alist_process_nead_fz(struct hle_t* hle)
{
static const acmd_callback_t ABI[0x20] = {
UNKNOWN, ADPCM, CLEARBUFF, SPNOOP,
ADDMIXER, RESAMPLE, SPNOOP, SPNOOP,
SETBUFF, SPNOOP, DMEMMOVE, LOADADPCM,
MIXER, INTERLEAVE, SPNOOP, SETLOOP,
NEAD_16, INTERL, ENVSETUP1, ENVMIXER,
LOADBUFF, SAVEBUFF, ENVSETUP2, UNKNOWN,
SPNOOP, UNKNOWN, DUPLICATE, SPNOOP,
SPNOOP, SPNOOP, SPNOOP, SPNOOP
};
alist_process(hle, ABI, 0x20);
}
void alist_process_nead_wrjb(struct hle_t* hle)
{
static const acmd_callback_t ABI[0x20] = {
SPNOOP, ADPCM, CLEARBUFF, UNKNOWN,
ADDMIXER, RESAMPLE, RESAMPLE_ZOH, SPNOOP,
SETBUFF, SPNOOP, DMEMMOVE, LOADADPCM,
MIXER, INTERLEAVE, SPNOOP, SETLOOP,
NEAD_16, INTERL, ENVSETUP1, ENVMIXER,
LOADBUFF, SAVEBUFF, ENVSETUP2, UNKNOWN,
HILOGAIN, UNKNOWN, DUPLICATE, FILTER,
SPNOOP, SPNOOP, SPNOOP, SPNOOP
};
alist_process(hle, ABI, 0x20);
}
void alist_process_nead_ys(struct hle_t* hle)
{
static const acmd_callback_t ABI[0x18] = {
UNKNOWN, ADPCM, CLEARBUFF, UNKNOWN,
ADDMIXER, RESAMPLE, RESAMPLE_ZOH, FILTER,
SETBUFF, DUPLICATE, DMEMMOVE, LOADADPCM,
MIXER, INTERLEAVE, HILOGAIN, SETLOOP,
NEAD_16, INTERL, ENVSETUP1, ENVMIXER,
LOADBUFF, SAVEBUFF, ENVSETUP2, UNKNOWN
};
alist_process(hle, ABI, 0x18);
}
void alist_process_nead_1080(struct hle_t* hle)
{
static const acmd_callback_t ABI[0x18] = {
UNKNOWN, ADPCM, CLEARBUFF, UNKNOWN,
ADDMIXER, RESAMPLE, RESAMPLE_ZOH, FILTER,
SETBUFF, DUPLICATE, DMEMMOVE, LOADADPCM,
MIXER, INTERLEAVE, HILOGAIN, SETLOOP,
NEAD_16, INTERL, ENVSETUP1, ENVMIXER,
LOADBUFF, SAVEBUFF, ENVSETUP2, UNKNOWN
};
alist_process(hle, ABI, 0x18);
}
void alist_process_nead_oot(struct hle_t* hle)
{
static const acmd_callback_t ABI[0x18] = {
UNKNOWN, ADPCM, CLEARBUFF, UNKNOWN,
ADDMIXER, RESAMPLE, RESAMPLE_ZOH, FILTER,
SETBUFF, DUPLICATE, DMEMMOVE, LOADADPCM,
MIXER, INTERLEAVE, HILOGAIN, SETLOOP,
NEAD_16, INTERL, ENVSETUP1, ENVMIXER,
LOADBUFF, SAVEBUFF, ENVSETUP2, UNKNOWN
};
alist_process(hle, ABI, 0x18);
}
void alist_process_nead_mm(struct hle_t* hle)
{
static const acmd_callback_t ABI[0x18] = {
UNKNOWN, ADPCM, CLEARBUFF, SPNOOP,
ADDMIXER, RESAMPLE, RESAMPLE_ZOH, FILTER,
SETBUFF, DUPLICATE, DMEMMOVE, LOADADPCM,
MIXER, INTERLEAVE, HILOGAIN, SETLOOP,
NEAD_16, INTERL, ENVSETUP1, ENVMIXER,
LOADBUFF, SAVEBUFF, ENVSETUP2, UNKNOWN
};
alist_process(hle, ABI, 0x18);
}
void alist_process_nead_mmb(struct hle_t* hle)
{
static const acmd_callback_t ABI[0x18] = {
SPNOOP, ADPCM, CLEARBUFF, SPNOOP,
ADDMIXER, RESAMPLE, RESAMPLE_ZOH, FILTER,
SETBUFF, DUPLICATE, DMEMMOVE, LOADADPCM,
MIXER, INTERLEAVE, HILOGAIN, SETLOOP,
NEAD_16, INTERL, ENVSETUP1, ENVMIXER,
LOADBUFF, SAVEBUFF, ENVSETUP2, UNKNOWN
};
alist_process(hle, ABI, 0x18);
}
void alist_process_nead_ac(struct hle_t* hle)
{
static const acmd_callback_t ABI[0x18] = {
UNKNOWN, ADPCM, CLEARBUFF, SPNOOP,
ADDMIXER, RESAMPLE, RESAMPLE_ZOH, FILTER,
SETBUFF, DUPLICATE, DMEMMOVE, LOADADPCM,
MIXER, INTERLEAVE, HILOGAIN, SETLOOP,
NEAD_16, INTERL, ENVSETUP1, ENVMIXER,
LOADBUFF, SAVEBUFF, ENVSETUP2, UNKNOWN
};
alist_process(hle, ABI, 0x18);
}
|
kode54/lazyusf
|
rsp_hle/alist_nead.c
|
C
|
cc0-1.0
| 16,812
|
package cyano.lootable;
import cyano.lootable.entities.EntityLootableBody;
import cyano.lootable.graphics.CorpseRenderer;
import net.minecraft.client.renderer.entity.Render;
import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraftforge.fml.client.registry.IRenderFactory;
import net.minecraftforge.fml.client.registry.RenderingRegistry;
import net.minecraftforge.fml.common.event.FMLInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
public class ClientProxy extends Proxy{
@Override
public void preInit(FMLPreInitializationEvent e) {
super.preInit(e);
// client-only pre-init code
RenderingRegistry.registerEntityRenderingHandler(EntityLootableBody.class, new IRenderFactory<EntityLootableBody>() {
@Override
public Render<? super EntityLootableBody> createRenderFor(RenderManager rm) {
return (new CorpseRenderer(rm));
}
});
}
@Override
public void init(FMLInitializationEvent e) {
super.init(e);
// client-only init code
}
@Override
public void postInit(FMLPostInitializationEvent e) {
super.postInit(e);
// client-only post-init code
}
}
|
cyanobacterium/DrCyanos_Lootable-Bodies
|
src/main/java/cyano/lootable/ClientProxy.java
|
Java
|
cc0-1.0
| 1,280
|
# 孩子健康的心理的秘诀
现在很多人讲究情商,也就是有时候,人的心理素质比智力、知识更重要。培养孩子健康的心理其实很简单,只要做到以下几点就可以了:
## 跌倒了要鼓励孩子自己爬起来
在孩子刚学会走路时,不小心跌倒是最常有的事,孩子跌倒而受伤的情况是非常少见的。孩子跌倒了,妈妈怎么处理?从这里可以看出一个妈妈的智慧。
孩子跌倒了,首先妈妈不要惊慌。要知道,不管孩子是否受伤,惊慌都于事无补。不管情况怎么样,妈妈都要面带微笑向孩子走去。
孩子跌倒了的第一反应是用求助的眼神望着妈妈大哭。妈妈不要以为小小的跌倒微不足道,要知道,妈妈小时候对孩子的态度,孩子会用自己的一生来放大。如果这时妈妈非常惊慌地跑去,那么这个孩子就非常不幸地受到了一次非常拙劣的应急训练。孩子可能还不会说话,但是孩子是天才,是非常灵敏的,妈妈的惊惶失措会深深地刻在他一生的记忆中,此刻的他甚至能感受妈妈急速的心跳。
合格的妈妈就要微笑地鼓励孩子自己站起来,不管这时候他是否有这个能力,你都要这样对他说:“宝宝是个厉害的宝宝,一定能自己站起来,妈妈相信他”...
## 学会分享
很多爸爸妈妈把好吃的东西省给孩子吃,以显示自己伟大的父爱,母爱。其实这是完全错误的。任何时候有好吃的东西,一家人都应该一起分享。这是用行动告诉孩子,人不能自私,要学会和别人分享成果。
更进一步,是让孩子分苹果,比如给孩子4个苹果,奶奶,妈妈,孩子三个人,让他分,看他怎么分。诱导孩子要先分给奶奶,因为奶奶最大;然后分给妈妈,因为如果没有妈妈就没有宝宝了;然后是宝宝自己。多出一个怎么办?就要分给奶奶。这时奶奶和妈妈不要像明星那样作秀,又把自己那份送给孩子,美其名曰“省给宝宝”。最好是当着面大家把自己那份吃了,其乐融融,不是很好吗。这就是"分苹果“教育法。
## 妈妈要会和孩子对眼睛
孩子在小的时候,最喜欢看的人就是妈妈,对孩子影响最大的也是妈妈。当孩子望向亲爱的妈妈时,妈妈要确保面带微笑地看着孩子。母子每一次这样的对视,就是一次最好的乐观对待人生的示范教育。这就是“道”,这就是真理,教育的真理就在日常生活的点点滴滴中。(当然爸爸也要这样做)
## 孩子考试考了一百分不要表扬
孩子考试成绩很好,妈妈一般都是大喜过望,有的甚至奖给孩子多少钱。其实这样的方式都是错误的。每个孩子都喜欢考试成绩好一些,考试成绩很好,你不表扬他,他也很高兴了。妈妈的表扬是完全多余的,更会带来坏处:
1. 使孩子注重于事情的表面现象而不是实质。成绩好只是表面现像,为什么成绩好才是问题的实质。
2. 使孩子注重的事情的结果而不是过程。农民在春天认真耕耘,秋天自然会有收获。过程做好了,结果是自然发生的事情,又有什么好稀奇的呢。
3. 可能使孩子产生骄傲的心理。不少天才长大后并没有做出特别的贡献,主要原因是妈妈不肯以平常心来对待孩子的成绩。
孩子考试取得好成绩后,妈妈正确的做法是不表态或者和孩子一起分析一下取得好成绩的原因。
# 孩子考试不好不批评
常见无知的妈妈一见孩子某次考试失利就大发雷霆之怒,有的甚至弄得母子两人都一把鼻涕一把眼泪。这样做只会增加孩子学习的压力,影响孩子的心理健康,使孩子下次考试时可能怯场,更不利于孩子的全面发挥。
孩子考试失利,妈妈的正确做法是和孩子一起分析失利的原因,并在平时每天的学习中弥补过来。
妈妈只要按以上要求简单去做,你的孩子就会有乐观的心态,豁达大度。如果他是天才,他也不会骄傲;如果他并不出众,他也会依然保持自己的本色。
http://www.tuenhai.com
|
tuenhai/education
|
01-experience/mental-health.md
|
Markdown
|
cc0-1.0
| 4,343
|
jsonp({"cep":"13308082","logradouro":"Rua Barueri","bairro":"Cidade Nova I","cidade":"Itu","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/13308082.jsonp.js
|
JavaScript
|
cc0-1.0
| 130
|
jsonp({"cep":"37704032","logradouro":"Alameda Nova Esperan\u00e7a","bairro":"Jardim Nova Aparecida","cidade":"Po\u00e7os de Caldas","uf":"MG","estado":"Minas Gerais"});
|
lfreneda/cepdb
|
api/v1/37704032.jsonp.js
|
JavaScript
|
cc0-1.0
| 169
|
jsonp({"cep":"23016210","logradouro":"Rua Bar\u00e3o de Itarar\u00e9","bairro":"Campo Grande","cidade":"Rio de Janeiro","uf":"RJ","estado":"Rio de Janeiro"});
|
lfreneda/cepdb
|
api/v1/23016210.jsonp.js
|
JavaScript
|
cc0-1.0
| 159
|
package Thingiverse::SizedImage;
use strict;
use warnings;
use Moose;
use Moose::Util::TypeConstraints;
use Data::Dumper;
use Carp;
use Thingiverse::Types;
extends('Thingiverse');
has url => ( isa => 'Str', is => 'ro', required => 0, );
has image_type => ( isa => 'ThingiverseImageType', is => 'ro', required => 0, );
has image_size => ( isa => 'ThingiverseImageSize', is => 'ro', required => 0, );
# __PACKAGE__->thingiverse_attributes(
# {
# api_base => "/thing/%d/images/%d",
# pk => { id => { isa => 'ID' } },
# fields => {
# name => { isa => 'Str' },
# url => { isa => 'Str' },
# thing_id => { isa => 'ID' },
# }
# }
# );
# ABSTRACT: Images uploaded to Thingverse are resized to 15 different "standard" sizes, each with a url, a type and a size.
=head1 SYNOPSIS
...
=head1 SEE ALSO
=for :list
* L<Thingiverse>
* L<Thingiverse::User>
* L<Thingiverse::User::List>
* L<Thingiverse::Cache>
* L<Thingiverse::Thing>
* L<Thingiverse::Thing::List>
* L<Thingiverse::Tag>
* L<Thingiverse::Tag::List>
* L<Thingiverse::Category>
* L<Thingiverse::Collection>
* L<Thingiverse::Collection::List>
* L<Thingiverse::Comment>
* L<Thingiverse::File>
* L<Thingiverse::File::List>
* L<Thingiverse::Image>
* L<Thingiverse::Copy>
* L<Thingiverse::Pagination>
* L<Thingiverse::Cache>
* L<Thingiverse::Group>
=cut
no Moose;
__PACKAGE__->meta->make_immutable;
1;
__END__
from images attribute of Thingiverse::Image
sizes: [15]
0: {
type: "thumb"
size: "large"
url: "https://thingiverse-production.s3.amazonaws.com/renders/e4/61/5c/c6/82/rounded_rectangular_parallelepiped_20140501-27286-2xdd64-0_thumb_large.jpg"
}-
1: {
type: "thumb"
size: "medium"
url: "https://thingiverse-production.s3.amazonaws.com/renders/e4/61/5c/c6/82/rounded_rectangular_parallelepiped_20140501-27286-2xdd64-0_thumb_medium.jpg"
;-
has sizes => (
traits => ['Array'],
is => 'ro',
isa => 'ArrayRef[Thingiverse::SizedImage]',
required => 0,
handles => {
all_sizes => 'elements',
add_sizes => 'push',
map_sizes => 'map',
filter_sizes => 'grep',
find_sizes => 'grep',
get_sizes => 'get',
join_sizes => 'join',
count_sizes => 'count',
has_sizes => 'count',
has_no_sizes => 'is_empty',
sorted_sizes => 'sort',
},
builder => '_get_sized_versions_of_this_image',
);
sub _get_sized_versions_of_this_image {
my $self = shift;
my $sizes = $self->{sizes};
if ( ref($sizes) eq 'ARRAY' ) {
foreach ( @{$sizes} ) {
$_ = Thingiverse::SizedImage->new($_) if (ref($_) eq 'HASH' );;
}
}
return $self;
};
# need both the thing_id and the image_id to make an API call
# around BUILDARGS => sub {
# my $orig = shift;
# my $class = shift;
# my $thing_id;
# my $image_id;
# my $json;
# my $hash;
# if ( @_ == 1 && ref $_[0] eq 'HASH' && ${$_[0]}{'id'} && ${$_[0]}{'thing_id'} && not exists ${$_[0]}{'sizes'} ) {
# $thing_id = ${$_[0]}{'thing_id'};
# $image_id = ${$_[0]}{'id'};
# } elsif ( @_ == 2 ) { # passed two id's, thing_id and image_id
# $thing_id = $_[0];
# $image_id = $_[1];
# } else {
# my $return = $class->$orig(@_); # almost all Thingiverse::Image creatations will be from an predefined hash from a Thingiverse::Thing or Thingiverse::Collection.
# $return = _get_sized_versions_of_this_image($return);;
# return $return;
# }
# $json = _get_from_thingi_given_id($image_id,$thing_id);
# $hash = decode_json($json);
# $hash->{_original_json} = $json;
# return $hash;
# };
no Moose;
__PACKAGE__->meta->make_immutable;
1;
__END__
{
id: 880611
name: "rounded_rectangular_parallelepiped_20140501-27286-2xdd64-0.jpg"
url: "https://api.thingiverse.com/things/316754/images/880611"
sizes: [15]
0: {
type: "thumb"
size: "large"
url: "https://thingiverse-production.s3.amazonaws.com/renders/e4/61/5c/c6/82/rounded_rectangular_parallelepiped_20140501-27286-2xdd64-0_thumb_large.jpg"
}-
1: {
type: "thumb"
size: "medium"
url: "https://thingiverse-production.s3.amazonaws.com/renders/e4/61/5c/c6/82/rounded_rectangular_parallelepiped_20140501-27286-2xdd64-0_thumb_medium.jpg"
}-
2: {
type: "thumb"
size: "small"
url: "https://thingiverse-production.s3.amazonaws.com/renders/e4/61/5c/c6/82/rounded_rectangular_parallelepiped_20140501-27286-2xdd64-0_thumb_small.jpg"
}-
3: {
type: "thumb"
size: "tiny"
url: "https://thingiverse-production.s3.amazonaws.com/renders/e4/61/5c/c6/82/rounded_rectangular_parallelepiped_20140501-27286-2xdd64-0_thumb_tiny.jpg"
}-
4: {
type: "preview"
size: "featured"
url: "https://thingiverse-production.s3.amazonaws.com/renders/e4/61/5c/c6/82/rounded_rectangular_parallelepiped_20140501-27286-2xdd64-0_preview_featured.jpg"
}-
5: {
type: "preview"
size: "card"
url: "https://thingiverse-production.s3.amazonaws.com/renders/e4/61/5c/c6/82/rounded_rectangular_parallelepiped_20140501-27286-2xdd64-0_preview_card.jpg"
}-
6: {
type: "preview"
size: "large"
url: "https://thingiverse-production.s3.amazonaws.com/renders/e4/61/5c/c6/82/rounded_rectangular_parallelepiped_20140501-27286-2xdd64-0_preview_large.jpg"
}-
7: {
type: "preview"
size: "medium"
url: "https://thingiverse-production.s3.amazonaws.com/renders/e4/61/5c/c6/82/rounded_rectangular_parallelepiped_20140501-27286-2xdd64-0_preview_medium.jpg"
}-
8: {
type: "preview"
size: "small"
url: "https://thingiverse-production.s3.amazonaws.com/renders/e4/61/5c/c6/82/rounded_rectangular_parallelepiped_20140501-27286-2xdd64-0_preview_small.jpg"
}-
9: {
type: "preview"
size: "birdwing"
url: "https://thingiverse-production.s3.amazonaws.com/renders/e4/61/5c/c6/82/rounded_rectangular_parallelepiped_20140501-27286-2xdd64-0_preview_birdwing.jpg"
}-
10: {
type: "preview"
size: "tiny"
url: "https://thingiverse-production.s3.amazonaws.com/renders/e4/61/5c/c6/82/rounded_rectangular_parallelepiped_20140501-27286-2xdd64-0_preview_tiny.jpg"
}-
11: {
type: "preview"
size: "tinycard"
url: "https://thingiverse-production.s3.amazonaws.com/renders/e4/61/5c/c6/82/rounded_rectangular_parallelepiped_20140501-27286-2xdd64-0_preview_tinycard.jpg"
}-
12: {
type: "display"
size: "large"
url: "https://thingiverse-production.s3.amazonaws.com/renders/e4/61/5c/c6/82/rounded_rectangular_parallelepiped_20140501-27286-2xdd64-0_display_large.jpg"
}-
13: {
type: "display"
size: "medium"
url: "https://thingiverse-production.s3.amazonaws.com/renders/e4/61/5c/c6/82/rounded_rectangular_parallelepiped_20140501-27286-2xdd64-0_display_medium.jpg"
}-
14: {
type: "display"
size: "small"
url: "https://thingiverse-production.s3.amazonaws.com/renders/e4/61/5c/c6/82/rounded_rectangular_parallelepiped_20140501-27286-2xdd64-0_display_small.jpg"
}
}
|
perlygatekeeper/perlythingkeeper
|
lib/Thingiverse/SizedImage.pm
|
Perl
|
cc0-1.0
| 7,056
|
jsonp({"cep":"30830482","logradouro":"Avenida Ab\u00edlio Machado","bairro":"Al\u00edpio de Melo","cidade":"Belo Horizonte","uf":"MG","estado":"Minas Gerais"});
|
lfreneda/cepdb
|
api/v1/30830482.jsonp.js
|
JavaScript
|
cc0-1.0
| 161
|
jsonp({"cep":"71692604","logradouro":"Quadra Quadra 203 Conjunto 2","bairro":"Setor Residencial Oeste (S\u00e3o Sebasti\u00e3o)","cidade":"Bras\u00edlia","uf":"DF","estado":"Distrito Federal"});
|
lfreneda/cepdb
|
api/v1/71692604.jsonp.js
|
JavaScript
|
cc0-1.0
| 195
|
jsonp({"cep":"96201300","logradouro":"Rua Guarda Marinha Greenhalg","bairro":"Get\u00falio Vargas","cidade":"Rio Grande","uf":"RS","estado":"Rio Grande do Sul"});
|
lfreneda/cepdb
|
api/v1/96201300.jsonp.js
|
JavaScript
|
cc0-1.0
| 163
|
jsonp({"cep":"83206534","logradouro":"Rua Edewaldo Ache","bairro":"Eldorado","cidade":"Paranagu\u00e1","uf":"PR","estado":"Paran\u00e1"});
|
lfreneda/cepdb
|
api/v1/83206534.jsonp.js
|
JavaScript
|
cc0-1.0
| 139
|
jsonp({"cep":"13058077","logradouro":"Rua Sessenta","bairro":"Conjunto Habitacional Parque Itaja\u00ed","cidade":"Campinas","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/13058077.jsonp.js
|
JavaScript
|
cc0-1.0
| 163
|
jsonp({"cep":"57306590","logradouro":"Rua Salustiano Jos\u00e9 dos Santos","bairro":"Cavaco","cidade":"Arapiraca","uf":"AL","estado":"Alagoas"});
|
lfreneda/cepdb
|
api/v1/57306590.jsonp.js
|
JavaScript
|
cc0-1.0
| 146
|
jsonp({"cep":"79903272","logradouro":"Rua dos Ip\u00eas","bairro":"Bosque de Ponta Por\u00e3","cidade":"Ponta Por\u00e3","uf":"MS","estado":"Mato Grosso do Sul"});
|
lfreneda/cepdb
|
api/v1/79903272.jsonp.js
|
JavaScript
|
cc0-1.0
| 164
|
jsonp({"cep":"69074461","logradouro":"Rua Marcieira","bairro":"Santa Luzia","cidade":"Manaus","uf":"AM","estado":"Amazonas"});
|
lfreneda/cepdb
|
api/v1/69074461.jsonp.js
|
JavaScript
|
cc0-1.0
| 127
|
jsonp({"cep":"76812104","logradouro":"Rua Jaraqui","bairro":"Lagoa","cidade":"Porto Velho","uf":"RO","estado":"Rond\u00f4nia"});
|
lfreneda/cepdb
|
api/v1/76812104.jsonp.js
|
JavaScript
|
cc0-1.0
| 129
|
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Expires" content="-1">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
<title>105年第十四任總統副總統及第九屆立法委員選舉</title>
<link href="../css/style.css" rel="stylesheet" type="text/css">
<link href="../css/style2.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="../js/ftiens4.js"></script>
<script type="text/javascript" src="../js/ua.js"></script>
<script type="text/javascript" src="../js/func.js"></script>
<script type="text/javascript" src="../js/treeP1.js"></script>
<script type="text/javascript" src="../js/refresh.js"></script>
</head>
<body id="main-body">
<div id="main-header">
<div id="main-top">
<a class="main-top-logo" href="#">中央選舉委員會</a>
<ul class="main-top-list">
<li class="main-top-item"><a class="main-top-link main-top-link-home" href="../index.html">回首頁</a></li>
<li class="main-top-item"><a class="main-top-link main-top-link-cec" href="http://2016.cec.gov.tw">中選會網站</a></li>
<li class="main-top-item"><a class="main-top-link main-top-link-english" href="../../en/index.html">English</a></li>
</ul>
</div>
</div>
<div id="main-wrap">
<div id="main-banner">
<div class="slideshow">
<img src="../img/main_bg_1.jpg" width="1024" height="300" alt="background" title="background">
</div>
<div class="main-deco"></div>
<div class="main-title"></div>
<a class="main-pvpe main-pvpe-current" href="../IDX/indexP1.html">總統副總統選舉</a>
<a class="main-le" href="../IDX/indexT.html">立法委員選舉</a>
</div>
<div id="main-container">
<div id="main-content">
<table width="1024" border="1" cellpadding="0" cellspacing="0">
<tr>
<td width="180" valign="top">
<div id="divMenu">
<table border="0">
<tr>
<td><a style="text-decoration:none;color:silver" href="http://www.treemenu.net/" target=_blank></a></td>
</tr>
</table>
<span class="TreeviewSpanArea">
<script>initializeDocument()</script>
<noscript>請開啟Javascript功能</noscript>
</span>
</div>
</td>
<td width="796" valign="top">
<div id="divContent">
<!-- 修改區塊 -->
<table width="100%" border="0" cellpadding="0" cellspacing="4">
<tr>
<td><img src="../images/search.png" alt="候選人得票數" title="候選人得票數"> <b>總統副總統選舉 候選人在 高雄市 大樹區得票數 </b></td>
</tr>
<tr valign="bottom">
<td>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr valign="bottom">
<td class="fontNumber"> <img src="../images/nav.gif" alt="候選組數" title="候選組數"> <img src="../images/nav.gif" alt="候選組數" title="候選組數"> 候選組數:3 <img src="../images/nav.gif" alt="應選組數" title="應選組數"> <img src="../images/nav.gif" alt="應選組數" title="應選組數"> 應選組數:1</td>
<td align="right">
<select name="selector_order" class="selectC" tabindex="1" id="orderBy" onChange="changeOrder();">
<option value="n">依號次排序</option>
<option value="s">依得票排序</option>
</select>
</td>
</tr>
</table>
</td>
</tr>
<tr valign="top">
<td>
<table width="100%" border="0" cellpadding="6" cellspacing="1" class="tableT">
<tr class="trHeaderT">
<td>註記</td>
<td>號次</td>
<td><table><tr><td>總統</td><td rowspan=2> 候選人姓名</td></tr><td>副總統</td></table></td>
<td>性別</td>
<td>得票數</td>
<td>得票率%</td>
<td>登記方式</td>
</tr>
<tr class="trT">
<td> </td>
<td>1</td>
<td>朱立倫<br>王如玄</td>
<td>男<br>女</td>
<td class="tdAlignRight">5,392</td>
<td class="tdAlignRight">21.9401</td>
<td>中國國民黨 推薦</td>
</tr>
<tr class="trT">
<td> </td>
<td>2</td>
<td>蔡英文<br>陳建仁</td>
<td>女<br>男</td>
<td class="tdAlignRight">17,115</td>
<td class="tdAlignRight">69.6411</td>
<td>民主進步黨 推薦</td>
</tr>
<tr class="trT">
<td> </td>
<td>3</td>
<td>宋楚瑜<br>徐欣瑩</td>
<td>男<br>女</td>
<td class="tdAlignRight">2,069</td>
<td class="tdAlignRight">8.4188</td>
<td>親民黨 推薦</td>
</tr>
<tr class="trFooterT">
<td colspan="7" align="right">投開票所數 已送/應送: 32/32 </td>
</tr>
</table>
</td>
</tr>
<tr valign="top">
<td>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="10"></td>
<td valign="top" class="fontNote">
<table>
<tr>
<td>註記說明:</td>
<td align="center">◎</td>
<td>自然當選</td>
</tr>
<tr>
<td></td>
<td align="center">?</td>
<td>同票待抽籤</td>
</tr>
</table>
</td>
<td valign="top" class="fontTimer"><img src="../images/clock2.png" alt="Sat, 16 Jan 2016 21:06:11 +0800" title="Sat, 16 Jan 2016 21:06:11 +0800"> 資料更新時間: 01/16 21:06:06 <br>(網頁每3分鐘自動更新一次)</td>
</tr>
<tr>
<td colspan="3" class="fontNote"></td>
</tr>
</table>
</td>
</tr>
</table>
<!-- 修改區塊 -->
</div>
</td>
</tr>
</table>
</div>
<div class="main-footer"></div>
<div id="divFooter" align=center>[中央選舉委員會] </div>
<!--main-content-->
</div><!--main-container-->
</div><!--END main-wrap-->
<script>setOrder();</script>
<script>setMenuScrollPosY();</script>
</body>
</html>
|
gugod/vote-watch-2016
|
data/president/n600001400000000/20160116130742/page.html
|
HTML
|
cc0-1.0
| 6,577
|
Exported from DLS v0.8.1
## Table of contents
* [7400 - 4x NAND2](#7400)
* [7402 - 4x NOR2](#7402)
* [7404 - 6x Inverter](#7404)
* [7408 - 4x AND2](#7408)
* [7410 - 3x NAND3](#7410)
* [7411 - 3x AND3](#7411)
* [7420 - 2x NAND4](#7420)
* [7421 - 2x AND4](#7421)
* [7425 - 2x NOR4](#7425)
* [7427 - 3x NOR3](#7427)
* [7430 - 1x NAND8](#7430)
* [7432 - 4x OR2](#7432)
* [7442 - BCD to Decimal Decoder](#7442)
* [7469 - 2x 4-bit Binary counter](#7469)
* [7474 - 2x D FlipFlop](#7474)
* [7485 - 4-bit Mag. Comparator](#7485)
* [7486 - 4x XOR2](#7486)
* [7487 - 4-bit True/Complement, Zero/One](#7487)
## Schematics
### <a name="7400"></a>7400 - 4x NAND2
[Schematic](7400.sch)

### <a name="7402"></a>7402 - 4x NOR2
[Schematic](7402.sch)

### <a name="7404"></a>7404 - 6x Inverter
[Schematic](7404.sch)

### <a name="7408"></a>7408 - 4x AND2
[Schematic](7408.sch)

### <a name="7410"></a>7410 - 3x NAND3
[Schematic](7410.sch)

### <a name="7411"></a>7411 - 3x AND3
[Schematic](7411.sch)

### <a name="7420"></a>7420 - 2x NAND4
[Schematic](7420.sch)

### <a name="7421"></a>7421 - 2x AND4
[Schematic](7421.sch)

### <a name="7425"></a>7425 - 2x NOR4
[Schematic](7425.sch)

### <a name="7427"></a>7427 - 3x NOR3
[Schematic](7427.sch)

### <a name="7430"></a>7430 - 1x NAND8
[Schematic](7430.sch)

### <a name="7432"></a>7432 - 4x OR2
[Schematic](7432.sch)

### <a name="7442"></a>7442 - BCD to Decimal decoder
[Schematic](7442.sch)

### <a name="7469"></a>7469 - 2x 4-bit Binary counter
[Schematic](7469.sch)

### <a name="7474"></a>7474 - 2x D FlipFlop
[Schematic](7474.sch)

### <a name="7485"></a>7485 - 4-bit Mag. Comparator
[Schematic](7485.sch)

### <a name="7486"></a>7486 - 4x XOR2
[Schematic](7486.sch)

### <a name="7487"></a>7487 - 4-bit True/Complement, Zero/One
[Schematic](7487.sch)

|
jdryg/dls-schematics
|
74xx/Readme.md
|
Markdown
|
cc0-1.0
| 2,404
|
jsonp({"cep":"09070610","logradouro":"Rua Jo\u00e3o Evangelista de Paiva Azevedo","bairro":"Campestre","cidade":"Santo Andr\u00e9","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/09070610.jsonp.js
|
JavaScript
|
cc0-1.0
| 170
|
jsonp({"cep":"86804485","logradouro":"Rua Alfredo Canesin","bairro":"Vila Social","cidade":"Apucarana","uf":"PR","estado":"Paran\u00e1"});
|
lfreneda/cepdb
|
api/v1/86804485.jsonp.js
|
JavaScript
|
cc0-1.0
| 139
|
jsonp({"cep":"83010400","logradouro":"Rua Ot\u00e1vio Claudino de Camargo","bairro":"Cruzeiro","cidade":"S\u00e3o Jos\u00e9 dos Pinhais","uf":"PR","estado":"Paran\u00e1"});
|
lfreneda/cepdb
|
api/v1/83010400.jsonp.js
|
JavaScript
|
cc0-1.0
| 173
|
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Devgaze - Page 1 - Developer's Gaze</title>
<meta name="description" content="">
<meta name="HandheldFriendly" content="True">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="stylesheet" type="text/css" href="/assets/css/screen.css?v=fca2eb9956">
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Merriweather:300,700,700italic,300italic%7COpen+Sans:700,400">
<link rel="canonical" href="http://localhost:2368/author/devgaze/">
<meta property="og:site_name" content="Developer's Gaze">
<meta property="og:type" content="profile">
<meta property="og:title" content="Devgaze - Page 1 - Developer's Gaze">
<meta property="og:url" content="http://localhost:2368/author/devgaze/">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Devgaze - Page 1 - Developer's Gaze">
<meta name="twitter:url" content="http://localhost:2368/author/devgaze/">
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Person",
"publisher": "Developer's Gaze",
"name": "Devgaze",
"url": "http://localhost:2368/author/devgaze"
}
</script>
<meta name="generator" content="Ghost 0.6">
<link rel="alternate" type="application/rss+xml" title="Developer's Gaze" href="http://localhost:2368/rss/">
</head>
<body class="author-template author-devgaze nav-closed">
<div class="nav">
<h3 class="nav-title">Menu</h3>
<a href="#" class="nav-close">
<span class="hidden">Close</span>
</a>
<ul>
<li class="nav-blog" role="presentation"><a href="http://localhost:2368/">Blog</a></li>
<li class="nav-about" role="presentation"><a href="http://localhost:2368/about/">About</a></li>
<li class="nav-contact" role="presentation"><a href="http://localhost:2368/contact-me/">Contact</a></li>
</ul>
<a class="subscribe-button icon-feed" href="http://localhost:2368/rss/">Subscribe</a>
</div>
<span class="nav-cover"></span>
<div class="site-wrapper">
<header class="main-header author-head no-cover">
<nav class="main-nav overlay clearfix">
<a class="blog-logo" href="http://localhost:2368"><img src="/content/images/2015/09/only-sign.png" alt="Developer's Gaze"></a>
<a class="menu-button icon-menu" href="#"><span class="word">Menu</span></a>
</nav>
</header>
<section class="author-profile inner">
<figure class="author-image">
<div class="img" style="background-image: url(/content/images/2015/09/only-sign-1.png)"><span class="hidden">Devgaze's Picture</span></div>
</figure>
<h1 class="author-title">Devgaze</h1>
<div class="author-meta">
<span class="author-location icon-location">Zagreb, Croatia</span>
<span class="author-stats"><i class="icon-stats"></i> 2 posts</span>
</div>
</section>
<main class="content" role="main">
<div class="extra-pagination inner">
<nav class="pagination" role="navigation">
<span class="page-number">Page 1 of 1</span>
</nav>
</div>
<article class="post tag-ghost-tag tag-flipmail" data-target="article.post" data-file="http://devgaze.github.io/add-contact-page-to-ghost-powered-github-pages-with-flipmail/index.html">
<header class="post-header">
<h2 class="post-title"><a href="/add-contact-page-to-ghost-powered-github-pages-with-flipmail/">Add contact page to Ghost powered GitHub Pages with Flipmail</a></h2>
</header>
<section class="post-excerpt">
<p>GitHub Pages serve only static content so in order to have a Contact page you need to use external service to process your contact form submissions. <a class="read-more" href="/add-contact-page-to-ghost-powered-github-pages-with-flipmail/">»</a></p>
</section>
<footer class="post-meta">
<img class="author-thumb" src="/content/images/2015/09/only-sign-1.png" alt="Devgaze" nopin="nopin">
<a href="/author/devgaze/">Devgaze</a>
on <a href="/tag/ghost-tag/">Ghost</a>, <a href="/tag/flipmail/">Flipmail</a>
<time class="post-date" datetime="2015-09-05">05 September 2015</time>
<time class="post-date eta"></time>
</footer>
</article>
<article class="post tag-ghost-tag tag-git featured" data-target="article.post" data-file="http://devgaze.github.io/setting-up-ghost-buster-and-github-pages-on-macos/index.html">
<header class="post-header">
<h2 class="post-title"><a href="/setting-up-ghost-buster-and-github-pages-on-macos/">Setting up Ghost, Buster and GitHub Pages on MacOS [Yosemite]</a></h2>
</header>
<section class="post-excerpt">
<p>In the last 5-8 years, I am not sure for how many times did I try to start to blog. It was always something in my <a class="read-more" href="/setting-up-ghost-buster-and-github-pages-on-macos/">»</a></p>
</section>
<footer class="post-meta">
<img class="author-thumb" src="/content/images/2015/09/only-sign-1.png" alt="Devgaze" nopin="nopin">
<a href="/author/devgaze/">Devgaze</a>
on <a href="/tag/ghost-tag/">Ghost</a>, <a href="/tag/git/">Git</a>
<time class="post-date" datetime="2015-09-01">01 September 2015</time>
<time class="post-date eta"></time>
</footer>
</article>
<nav class="pagination" role="navigation">
<span class="page-number">Page 1 of 1</span>
</nav>
</main>
<footer class="site-footer clearfix">
<section class="copyright"><a href="http://localhost:2368">Developer's Gaze</a> © 2016</section>
<!-- <section class="poweredby">Proudly published with <a href="https://ghost.org">Ghost</a></section> -->
</footer>
</div>
<script src="/public/jquery.js?v=fca2eb9956"></script>
<script type="text/javascript" src="/assets/js/jquery.fitvids.js?v=fca2eb9956"></script>
<script type="text/javascript" src="/assets/js/index.js?v=fca2eb9956"></script>
<script type="text/javascript" src="/assets/js/readingTime.min.js?v=fca2eb9956"></script>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = 'Devgaze'; // Required - Replace '<example>' with your forum shortname
/* * * DON'T EDIT BELOW THIS LINE * * */
(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="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
</body>
|
Devgaze/devgaze.github.io
|
author/devgaze/index.html
|
HTML
|
cc0-1.0
| 7,087
|
jsonp({"cep":"25040048","logradouro":"Rua Lauro Sodr\u00e9","bairro":"S\u00e3o Bento","cidade":"Duque de Caxias","uf":"RJ","estado":"Rio de Janeiro"});
|
lfreneda/cepdb
|
api/v1/25040048.jsonp.js
|
JavaScript
|
cc0-1.0
| 152
|
jsonp({"cep":"32681508","logradouro":"Rua Dulce Brand\u00e3o","bairro":"Jardim Teres\u00f3polis","cidade":"Betim","uf":"MG","estado":"Minas Gerais"});
|
lfreneda/cepdb
|
api/v1/32681508.jsonp.js
|
JavaScript
|
cc0-1.0
| 151
|
jsonp({"cep":"38414296","logradouro":"Rua H\u00e9lio Alves dos Santos","bairro":"Luizote de Freitas","cidade":"Uberl\u00e2ndia","uf":"MG","estado":"Minas Gerais"});
|
lfreneda/cepdb
|
api/v1/38414296.jsonp.js
|
JavaScript
|
cc0-1.0
| 165
|
jsonp({"cep":"54410385","logradouro":"Rua Queimados","bairro":"Piedade","cidade":"Jaboat\u00e3o dos Guararapes","uf":"PE","estado":"Pernambuco"});
|
lfreneda/cepdb
|
api/v1/54410385.jsonp.js
|
JavaScript
|
cc0-1.0
| 147
|
package es.thesinsprods.zagastales.perfil;
import java.awt.Color;
import java.awt.EventQueue;
import java.awt.Font;
import java.awt.Toolkit;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.SwingConstants;
import javax.swing.border.BevelBorder;
import es.thesinsprods.resources.font.MorpheusFont;
public class InfoModificadores {
private JFrame frame;
public JFrame getFrame() {
return frame;
}
public void setFrame(JFrame frame) {
this.frame = frame;
}
MorpheusFont mf = new MorpheusFont();
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
InfoModificadores window = new InfoModificadores();
window.frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the application.
*/
public InfoModificadores() {
initialize();
}
/**
* Initialize the contents of the frame.
*/
private void initialize() {
frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
frame.setTitle("Historias de Zagas");
frame.setIconImage(Toolkit.getDefaultToolkit().getImage(InfoModificadores.class.getResource("/images/Historias de Zagas, logo.png")));
frame.setResizable(false);
frame.setLocationRelativeTo(null);
frame.setBounds(100, 100, 379, 335);
frame.getContentPane().setLayout(null);
{
final JButton button = new JButton("");
button.addMouseListener(new MouseAdapter() {
@Override
public void mousePressed(MouseEvent e) {
button.setIcon(new ImageIcon(InfoModificadores.class.getResource("/images/boton atras2.png")));
}
@Override
public void mouseReleased(MouseEvent e) {
button.setIcon(new ImageIcon(InfoModificadores.class.getResource("/images/boton atras.png")));
}
});
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
frame.dispose();
}
});
button.setIcon(new ImageIcon(InfoModificadores.class.getResource("/images/boton atras.png")));
button.setOpaque(false);
button.setForeground(Color.WHITE);
button.setFont(new Font("Morpheus", Font.PLAIN, 15));
button.setFocusPainted(false);
button.setContentAreaFilled(false);
button.setBorderPainted(false);
button.setBorder(new BevelBorder(BevelBorder.RAISED, null,
null,
null, null));
button.setBackground(new Color(139, 69, 19));
button.setBounds(10, 251, 99, 45);
frame.getContentPane().add(button);
}
JScrollPane scrollPane = new JScrollPane();
scrollPane.setBounds(10, 70, 353, 170);
frame.getContentPane().add(scrollPane);
JTextArea textArea = new JTextArea();
textArea.setText(DatosPersonaje.modificadores);
textArea.setEditable(false);
textArea.setWrapStyleWord(true);
textArea.setLineWrap(true);
textArea.setFont(mf.MyFont(0, 13));
scrollPane.setViewportView(textArea);
JLabel lblNewLabel = new JLabel("Modificadores");
lblNewLabel.setFont(mf.MyFont(0, 48));
lblNewLabel.setHorizontalAlignment(SwingConstants.CENTER);
lblNewLabel.setForeground(Color.WHITE);
lblNewLabel.setBounds(10, 11, 353, 50);
frame.getContentPane().add(lblNewLabel);
JLabel label = new JLabel("");
label.setIcon(new ImageIcon(InfoModificadores.class.getResource("/images/background-panteon.jpg")));
label.setBounds(0, 0, 373, 307);
frame.getContentPane().add(label);
}
}
|
ZagasTales/HistoriasdeZagas
|
src Graf/es/thesinsprods/zagastales/perfil/InfoModificadores.java
|
Java
|
cc0-1.0
| 3,865
|
jsonp({"cep":"86060310","logradouro":"Rua Oakland","bairro":"Quebec","cidade":"Londrina","uf":"PR","estado":"Paran\u00e1"});
|
lfreneda/cepdb
|
api/v1/86060310.jsonp.js
|
JavaScript
|
cc0-1.0
| 125
|
using UnityEngine;
using System.Collections;
using UnityEngine.UI;
public class CardViewController : MonoBehaviour {
public RectTransform _rectTransform;
public RectMoveAnimator _rectMoveAnimator;
public Image _overlayImage;
public Text _topText;
public Text _bottomText;
public Text _posText;
public Text _negText;
public Image _image0;
public Image _image1;
public CardsProperties.Card CurrentCard {
get {
return _currentCard;
}
set {
_currentCard = value;
_topText.text = _currentCard.pos.text;
_bottomText.text = _currentCard.neg.text;
_posText.text = _currentCard.pos.id;
_negText.text = _currentCard.neg.id;
_image0.sprite = _currentCard.pos.icon;
_image1.sprite = _currentCard.neg.icon;
}
}
public bool Highlighted {
set {
_highlighted = value;
_overlayImage.enabled = _highlighted;
}
get {
return _highlighted;
}
}
private bool _highlighted;
private CardsProperties.Card _currentCard;
void Awake() {
Check.Null(_rectTransform);
Check.Null(_rectMoveAnimator);
Check.Null(_overlayImage);
Check.Null(_topText);
Check.Null(_bottomText);
Check.Null(_posText);
Check.Null(_negText);
Check.Null(_image0);
Check.Null(_image1);
}
}
|
Split82/HMGGJ2015
|
GGJ2015/Assets/Scripts/UI/CardViewController.cs
|
C#
|
cc0-1.0
| 1,225
|
{
id = "OWLGrEd_UserFields",
name = "OWLGrEd_UserFields",
version = "0.10",
}
|
hmis-interop/logical-model
|
src/class-diagram-files/Plugins/OWLGrEd_UserFields/info.lua
|
Lua
|
cc0-1.0
| 87
|
jsonp({"cep":"81900490","logradouro":"Rua Bandeirantes","bairro":"S\u00edtio Cercado","cidade":"Curitiba","uf":"PR","estado":"Paran\u00e1"});
|
lfreneda/cepdb
|
api/v1/81900490.jsonp.js
|
JavaScript
|
cc0-1.0
| 142
|
jsonp({"cep":"81510140","logradouro":"Rua Roberto Simonsen","bairro":"Guabirotuba","cidade":"Curitiba","uf":"PR","estado":"Paran\u00e1"});
|
lfreneda/cepdb
|
api/v1/81510140.jsonp.js
|
JavaScript
|
cc0-1.0
| 139
|
jsonp({"cep":"05159430","logradouro":"Rua Canelinha","bairro":"Jardim Vista Linda","cidade":"S\u00e3o Paulo","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/05159430.jsonp.js
|
JavaScript
|
cc0-1.0
| 148
|
using UnityEngine;
using System.Collections;
public class ColorFilter : MonoBehaviour {
public ColorEnum color;
public SpriteRenderer[] srs;
public GameObject activePart;
void Awake(){
GameManager gm=GameManager.Instance();
SetColor(gm.GetColor(color));
UpdateStates();
}
// Use this for initialization
public void SetColor(Color _color){
if (srs.Length==0){
srs=GetComponentsInChildren<SpriteRenderer>();
}
// color=_color;
for (int i=0;i<srs.Length;i++){
if (srs[i].gameObject.name!="base"){
srs[i].color=_color;
}
}
}
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
}
void OnTriggerEnter2D(Collider2D _collider){
if (_collider.CompareTag("Mob")){
Mob mob=_collider.GetComponent<Mob>();
GameManager gm=GameManager.Instance();
mob.RemoveColor(color);
}
}
public bool isOn=true;
void UpdateStates(){
if (isOn){
activePart.SetActive(true);
GetComponent<Collider2D>().enabled=true;
}
else{
activePart.SetActive(false);
GetComponent<Collider2D>().enabled=false;
}
}
public void SwtichOnOff(){
isOn=!isOn;
UpdateStates();
}
}
|
yibojiang/Ritual
|
Assets/Scripts/ColorFilter.cs
|
C#
|
cc0-1.0
| 1,196
|
jsonp({"cep":"82620010","logradouro":"Rua Arary Souto","bairro":"Tingui","cidade":"Curitiba","uf":"PR","estado":"Paran\u00e1"});
|
lfreneda/cepdb
|
api/v1/82620010.jsonp.js
|
JavaScript
|
cc0-1.0
| 129
|
jsonp({"cep":"72810240","logradouro":"Rua C\u00f4nego Delfino","bairro":"Diogo Machado de Ara\u00fajo","cidade":"Luzi\u00e2nia","uf":"GO","estado":"Goi\u00e1s"});
|
lfreneda/cepdb
|
api/v1/72810240.jsonp.js
|
JavaScript
|
cc0-1.0
| 163
|
jsonp({"cep":"27516290","logradouro":"Rua Cinq\u00fcenta","bairro":"Parque Ipiranga","cidade":"Resende","uf":"RJ","estado":"Rio de Janeiro"});
|
lfreneda/cepdb
|
api/v1/27516290.jsonp.js
|
JavaScript
|
cc0-1.0
| 143
|
jsonp({"cep":"13573532","logradouro":"Rua Claudenice Baldan Maiello","bairro":"Parque Novo Mundo","cidade":"S\u00e3o Carlos","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/13573532.jsonp.js
|
JavaScript
|
cc0-1.0
| 164
|
jsonp({"cep":"11705750","logradouro":"Avenida Presidente Kennedy","bairro":"Balne\u00e1rio Maracan\u00e3","cidade":"Praia Grande","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/11705750.jsonp.js
|
JavaScript
|
cc0-1.0
| 169
|
jsonp({"cep":"31540482","logradouro":"Beco Salinas","bairro":"Jardim Leblon","cidade":"Belo Horizonte","uf":"MG","estado":"Minas Gerais"});
|
lfreneda/cepdb
|
api/v1/31540482.jsonp.js
|
JavaScript
|
cc0-1.0
| 140
|
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Expires" content="-1">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
<title>105年第十四任總統副總統及第九屆立法委員選舉</title>
<link href="../css/style.css" rel="stylesheet" type="text/css">
<link href="../css/style2.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="../js/ftiens4.js"></script>
<script type="text/javascript" src="../js/ua.js"></script>
<script type="text/javascript" src="../js/func.js"></script>
<script type="text/javascript" src="../js/treeT.js"></script>
<script type="text/javascript" src="../js/refresh.js"></script>
</head>
<body id="main-body">
<div id="main-header">
<div id="main-top">
<a class="main-top-logo" href="#">中央選舉委員會</a>
<ul class="main-top-list">
<li class="main-top-item"><a class="main-top-link main-top-link-home" href="../index.html">回首頁</a></li>
<li class="main-top-item"><a class="main-top-link main-top-link-cec" href="http://2016.cec.gov.tw">中選會網站</a></li>
<li class="main-top-item"><a class="main-top-link main-top-link-english" href="../../en/index.html">English</a></li>
</ul>
</div>
</div>
<div id="main-wrap">
<div id="main-banner">
<div class="slideshow">
<img src="../img/main_bg_2.jpg" width="1024" height="300" alt="background" title="background">
</div>
<div class="main-deco"></div>
<div class="main-title"></div>
<a class="main-pvpe" href="../IDX/indexP1.html">總統副總統選舉</a>
<a class="main-le main-le-current" href="../IDX/indexT.html">立法委員選舉</a>
</div>
<div id="main-container">
<div id="main-content">
<table width="1024" border="1" cellpadding="0" cellspacing="0">
<tr>
<td width="180" valign="top">
<div id="divMenu">
<table border="0">
<tr>
<td><a style="text-decoration:none;color:silver" href="http://www.treemenu.net/" target=_blank></a></td>
</tr>
</table>
<span class="TreeviewSpanArea">
<script>initializeDocument()</script>
<noscript>請開啟Javascript功能</noscript>
</span>
</div>
</td>
<td width="796" valign="top">
<div id="divContent">
<!-- 修改區塊 -->
<table width="100%" border="0" cellpadding="0" cellspacing="4">
<tr>
<td><img src="../images/search.png" alt="候選人得票數" title="候選人得票數"> <b>區域立法委員選舉 高雄市 第3選舉區 候選人得票數 </b></td>
</tr>
<tr valign="bottom">
<td>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr valign="bottom">
<td class="fontNumber"> <img src="../images/nav.gif" alt="候選人數" title="候選人數"> <img src="../images/nav.gif" alt="候選人數" title="候選人數"> 候選人數:5 <img src="../images/nav.gif" alt="應選人數" title="應選人數"> <img src="../images/nav.gif" alt="應選人數" title="應選人數"> 應選人數:1
<!--<img src="../images/nav.gif" alt="應有婦女當選名額" title="應有婦女當選名額"> <img src="../images/nav.gif" alt="應有婦女當選名額" title="應有婦女當選名額"> 應有婦女當選名額:0-->
</td>
<td align="right">
<select name="selector_order" class="selectC" tabindex="1" id="orderBy" onChange="changeOrder();">
<option value="n">依號次排序</option>
<option value="s">依得票排序</option>
</select>
</td>
</tr>
</table>
</td>
</tr>
<tr valign="top">
<td>
<table width="100%" border="0" cellpadding="6" cellspacing="1" class="tableT">
<tr class="trHeaderT">
<td>註記</td>
<td>號次</td>
<td>姓名</td>
<td>性別</td>
<td>得票數</td>
<td>得票率%</td>
<td>推薦之政黨</td>
</tr>
<tr class="trT">
<td> </td>
<td>1</td>
<td>梁蓓禎</td>
<td>女</td>
<td class="tdAlignRight">0</td>
<td class="tdAlignRight">0.0000</td>
<td>信心希望聯盟</td>
</tr>
<tr class="trT">
<td> </td>
<td>2</td>
<td>柳淑芳</td>
<td>女</td>
<td class="tdAlignRight">0</td>
<td class="tdAlignRight">0.0000</td>
<td>無</td>
</tr>
<tr class="trT">
<td> </td>
<td>3</td>
<td>張顯耀</td>
<td>男</td>
<td class="tdAlignRight">0</td>
<td class="tdAlignRight">0.0000</td>
<td>中國國民黨</td>
</tr>
<tr class="trT">
<td> </td>
<td>4</td>
<td>劉世芳</td>
<td>女</td>
<td class="tdAlignRight">0</td>
<td class="tdAlignRight">0.0000</td>
<td>民主進步黨</td>
</tr>
<tr class="trT">
<td> </td>
<td>5</td>
<td>莊明憲</td>
<td>男</td>
<td class="tdAlignRight">0</td>
<td class="tdAlignRight">0.0000</td>
<td>大愛憲改聯盟</td>
</tr>
<tr class="trFooterT">
<td colspan="7" align="right">投開票所數 已送/應送: 0/191 </td>
</tr>
</table>
</td>
</tr>
<tr valign="top">
<td>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="10"></td>
<td valign="top" class="fontNote">
<table>
<tr>
<td>註記說明:</td>
<td align="center">◎</td>
<td>當選註記</td>
</tr>
<tr>
<td></td>
<td align="center">?</td>
<td>同票待抽籤</td>
</tr>
</table>
</td>
<td valign="top" class="fontTimer"><img src="../images/clock2.png" alt="Sat, 16 Jan 2016 13:27:11 +0800" title="Sat, 16 Jan 2016 13:27:11 +0800"> 資料更新時間:01/16 13:27:05 <br>(網頁每3分鐘自動更新一次)</td>
</tr>
<tr>
<td colspan="3" class="fontNote"></td>
</tr>
</table>
</td>
</tr>
</table>
<!-- 修改區塊 -->
</div>
</td>
</tr>
</table>
</div>
<div class="main-footer"></div>
<div id="divFooter">[中央選舉委員會] </div>
<!--main-content-->
</div><!--main-container-->
</div><!--END main-wrap-->
<script>setOrder();</script>
<script>setMenuScrollPosY();</script>
</body>
</html>
|
gugod/vote-watch-2016
|
data/KHH-3/n600030000000000/20160116053010/page.html
|
HTML
|
cc0-1.0
| 7,229
|
jsonp({"cep":"13179234","logradouro":"Rua Jos\u00e9 Luiz","bairro":"Parque Residencial Regina (Nova Veneza)","cidade":"Sumar\u00e9","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/13179234.jsonp.js
|
JavaScript
|
cc0-1.0
| 171
|
jsonp({"cep":"61922160","logradouro":"Rua 17","bairro":"Alto Alegre I","cidade":"Maracana\u00fa","uf":"CE","estado":"Cear\u00e1"});
|
lfreneda/cepdb
|
api/v1/61922160.jsonp.js
|
JavaScript
|
cc0-1.0
| 132
|
jsonp({"cep":"66633710","logradouro":"Rua WP-16","bairro":"Parque Verde","cidade":"Bel\u00e9m","uf":"PA","estado":"Par\u00e1"});
|
lfreneda/cepdb
|
api/v1/66633710.jsonp.js
|
JavaScript
|
cc0-1.0
| 129
|
jsonp({"cep":"88345686","logradouro":"Rua Buenos Aires","bairro":"Santa Regina","cidade":"Cambori\u00fa","uf":"SC","estado":"Santa Catarina"});
|
lfreneda/cepdb
|
api/v1/88345686.jsonp.js
|
JavaScript
|
cc0-1.0
| 144
|
jsonp({"cep":"14781150","logradouro":"Rua Jos\u00e9 Soares Garcia","bairro":"Distrito Industrial II","cidade":"Barretos","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/14781150.jsonp.js
|
JavaScript
|
cc0-1.0
| 160
|
jsonp({"cep":"57014430","logradouro":"Rua Filonila Argolo","bairro":"Ponta Grossa","cidade":"Macei\u00f3","uf":"AL","estado":"Alagoas"});
|
lfreneda/cepdb
|
api/v1/57014430.jsonp.js
|
JavaScript
|
cc0-1.0
| 138
|
jsonp({"cep":"64023710","logradouro":"Rua Santa Filomena","bairro":"Catarina","cidade":"Teresina","uf":"PI","estado":"Piau\u00ed"});
|
lfreneda/cepdb
|
api/v1/64023710.jsonp.js
|
JavaScript
|
cc0-1.0
| 133
|
jsonp({"cep":"64438000","cidade":"Santo Ant\u00f4nio dos Milagres","uf":"PI","estado":"Piau\u00ed"});
|
lfreneda/cepdb
|
api/v1/64438000.jsonp.js
|
JavaScript
|
cc0-1.0
| 102
|
jsonp({"cep":"60861640","logradouro":"Rua Guarapuava","bairro":"Passar\u00e9","cidade":"Fortaleza","uf":"CE","estado":"Cear\u00e1"});
|
lfreneda/cepdb
|
api/v1/60861640.jsonp.js
|
JavaScript
|
cc0-1.0
| 134
|
jsonp({"cep":"38410552","logradouro":"Rua Porto Primavera","bairro":"Parque Residencial do Camaru","cidade":"Uberl\u00e2ndia","uf":"MG","estado":"Minas Gerais"});
|
lfreneda/cepdb
|
api/v1/38410552.jsonp.js
|
JavaScript
|
cc0-1.0
| 163
|
Spatial Filtering
===
OpenSensorHub's SOS implementation supports simple spatial filtering of observations using either a BBOX or Polygon. As per the SOS v2.0 Only BBOX
### Filtering by BBOX
The table below lists parameter of a *GetResult* request used to retrieve data only from the weather stations located within the given region:
| **Parameter** | **Value** |
|:--------------|:----------|
| request | `GetResult` |
| offering | `urn:mysos:metar01` |
| observedProperty | `http://sensorml.com/ont/swe/property/Temperature` |
| spatialFilter | `featureOfInterest/*/shape,22.32,11.2,32.32,22.2,urn:ogc:def:crs:EPSG::4326` |
| temporalFilter | `phenomenonTime,2014-03-29T06:16:12Z/2014-03-29T14:26:12Z` |
**On Demo Server**:
<http://sensiasoft.net:8181/sensorhub/sos?service=SOS&version=2.0&request=GetResult&offering=urn:mysos:metar01&observedProperty=http://sensorml.com/ont/swe/property/Temperature&spatialFilter=featureOfInterest/*/shape,22.32,11.2,32.32,22.2,urn:ogc:def:crs:EPSG::4326&temporalFilter=phenomenonTime,2014-03-29T06:16:12Z/2014-03-29T14:26:12Z>
### Filtering by Polygon
**TODO** Show example POST request
|
opensensorhub/osh-docs
|
docs/user/sos/spatial-filter.md
|
Markdown
|
cc0-1.0
| 1,138
|
# StreamNative
## Company blurb
[StreamNative](https://streamnative.io/) is enabling organizations to build the next generation of messaging and event streaming applications. Leveraging Apache Pulsar and BookKeeper, we optimize for scalability and resiliency while reducing the overhead management and complexity required by incumbent technologies. We do this by offering Pulsar and StreamNative’s ‘products as a service’.
StreamNative is building a world-class team that is passionate about building amazing products and committed to customer success.
## Company size
50-100 employees worldwide.
## Remote status
The whole company are working remotely. Our teams are distributed. Some positions may have a region limit, but most (esp. engineering ones) are hiring globally.
Our recruitment process and onboarding process are all remote. StreamNative will also be held employee exchange event regularly in every region to provide an opportunity for employees to match avatars to real faces and meet everyone.
Teams heavily rely on different forms of asynchronous (Github, Google Spreadsheets/Docs, Google Groups, email) and synchronous (Slack, Zoom) communication where necessary and appropriate.
## Region
StreamNative is interested in hiring worldwide.Currently our employees are located in the following countries:
* US
* China
* France
* Greece
* Ireland
## Company technologies
* Go
* C#
* Java
## How to apply
Apply at https://streamnative.io/careers/
|
remoteintech/remote-jobs
|
company-profiles/streamnative.md
|
Markdown
|
cc0-1.0
| 1,484
|
jsonp({"cep":"32672085","logradouro":"Avenida Belo Horizonte","bairro":"Niter\u00f3i","cidade":"Betim","uf":"MG","estado":"Minas Gerais"});
|
lfreneda/cepdb
|
api/v1/32672085.jsonp.js
|
JavaScript
|
cc0-1.0
| 140
|
jsonp({"cep":"15057508","logradouro":"Rua Jos\u00e9 Gomes Dias","bairro":"Parque S\u00e3o Miguel","cidade":"S\u00e3o Jos\u00e9 do Rio Preto","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/15057508.jsonp.js
|
JavaScript
|
cc0-1.0
| 180
|
jsonp({"cep":"25086260","logradouro":"Rua Osvaldo Monteiro","bairro":"Parque Redentor","cidade":"Duque de Caxias","uf":"RJ","estado":"Rio de Janeiro"});
|
lfreneda/cepdb
|
api/v1/25086260.jsonp.js
|
JavaScript
|
cc0-1.0
| 153
|
jsonp({"cep":"35183012","logradouro":"Rua Dois","bairro":"S\u00e3o Crist\u00f3v\u00e3o","cidade":"Tim\u00f3teo","uf":"MG","estado":"Minas Gerais"});
|
lfreneda/cepdb
|
api/v1/35183012.jsonp.js
|
JavaScript
|
cc0-1.0
| 149
|
jsonp({"cep":"85035070","logradouro":"Rua Cec\u00edlia Meireles","bairro":"Dos Estados","cidade":"Guarapuava","uf":"PR","estado":"Paran\u00e1"});
|
lfreneda/cepdb
|
api/v1/85035070.jsonp.js
|
JavaScript
|
cc0-1.0
| 146
|
jsonp({"cep":"29305410","logradouro":"Rua Jorge Severino Barbosa","bairro":"Baiminas","cidade":"Cachoeiro de Itapemirim","uf":"ES","estado":"Esp\u00edrito Santo"});
|
lfreneda/cepdb
|
api/v1/29305410.jsonp.js
|
JavaScript
|
cc0-1.0
| 165
|
jsonp({"cep":"13254645","logradouro":"Rua Alberto Baptistella","bairro":"Residencial Fazenda Serrinha","cidade":"Itatiba","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/13254645.jsonp.js
|
JavaScript
|
cc0-1.0
| 161
|
<!DOCTYPE HTML>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<!-- Latest compiled and minified CSS -->
<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="/assets/stylesheets/compiled/vitraag.css" type="text/css" media="screen">
</head>
<body>
<section class="poem container">
<div class="row">
<div class="col-md-1 col-md-offset-1">
<header><a href="http://www.vitraag.com"></a></header>
</div>
<div class="col-md-8">
<h1>Canelazo</h1>
<div class="row">
<div class="col-md-7">
<img src="/assets/libar/drinks/Canelazzo.jpg"/>
</div>
<div class="col-md-5">
<h4>Rating: <span class="rating" data-rating="3"/></h4>
<h4>Source: <a href=http://en.wikipedia.org/wiki/Canelazo>Ecuador</a></h4>
<h4> First made: 07/01/2013</h4>
<section class="info">
</section>
<h3>Tags</h3>
<ul>
<li> aguardiente </li>
</ul>
</div>
</div>
</div>
<div class="col-md-1">
<div class="browse">
<a href="/libar/lawn-dart" class="next"></a>
</div>
</div>
</div>
</section>
<div class="container">
<footer class="row">
<div class="col-md-6 col-md-offset-3">
<a href="http://github.com/vaibhavb/wisevoter" class="muted">Built with Node.js, Ruby and Python</a> | in Seattle, WA by <a href="http://www.lib13.com">Lib13</a>.
<p class="footer-version">Version 0.0.5.<p>
</div>
</footer>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-1934792-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<!-- Latest compiled and minified JavaScript -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js" ></script>
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<script type="text/javascript">
$('.rating').html($('.rating').data('rating'))
</script>
</div>
</body>
</html>
|
vaibhavb/libar
|
canelazo/index.html
|
HTML
|
cc0-1.0
| 2,912
|
jsonp({"cep":"89205590","logradouro":"Rua H\u00e9lio Lentz Puerta","bairro":"Boa Vista","cidade":"Joinville","uf":"SC","estado":"Santa Catarina"});
|
lfreneda/cepdb
|
api/v1/89205590.jsonp.js
|
JavaScript
|
cc0-1.0
| 148
|
jsonp({"cep":"31742375","logradouro":"Rua Expedicion\u00e1rio J\u00e9sus Ramos","bairro":"Jardim Guanabara","cidade":"Belo Horizonte","uf":"MG","estado":"Minas Gerais"});
|
lfreneda/cepdb
|
api/v1/31742375.jsonp.js
|
JavaScript
|
cc0-1.0
| 171
|
jsonp({"cep":"23080160","logradouro":"Rua Jaguaruna","bairro":"Campo Grande","cidade":"Rio de Janeiro","uf":"RJ","estado":"Rio de Janeiro"});
|
lfreneda/cepdb
|
api/v1/23080160.jsonp.js
|
JavaScript
|
cc0-1.0
| 142
|
jsonp({"cep":"06716080","logradouro":"Rua Engenheiro Silveira","bairro":"Jardim Eliane","cidade":"Cotia","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/06716080.jsonp.js
|
JavaScript
|
cc0-1.0
| 144
|
jsonp({"cep":"91180580","logradouro":"Rua General Sady Cahem Fischer","bairro":"Rubem Berta","cidade":"Porto Alegre","uf":"RS","estado":"Rio Grande do Sul"});
|
lfreneda/cepdb
|
api/v1/91180580.jsonp.js
|
JavaScript
|
cc0-1.0
| 159
|
jsonp({"cep":"29705041","logradouro":"Rua Auzia Maria Fachetti","bairro":"Maria das Gra\u00e7as","cidade":"Colatina","uf":"ES","estado":"Esp\u00edrito Santo"});
|
lfreneda/cepdb
|
api/v1/29705041.jsonp.js
|
JavaScript
|
cc0-1.0
| 161
|
jsonp({"cep":"73270095","logradouro":"Setor Colina Nova Diguineia II Conjunto D","bairro":"Nova Colina (Sobradinho)","cidade":"Bras\u00edlia","uf":"DF","estado":"Distrito Federal"});
|
lfreneda/cepdb
|
api/v1/73270095.jsonp.js
|
JavaScript
|
cc0-1.0
| 183
|
jsonp({"cep":"08561550","logradouro":"Travessa Alfenas","bairro":"Vila Ruth","cidade":"Po\u00e1","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/08561550.jsonp.js
|
JavaScript
|
cc0-1.0
| 136
|
jsonp({"cep":"13042560","logradouro":"Rua L\u00e1zaro Ferreira Filho","bairro":"Parque Jambeiro","cidade":"Campinas","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/13042560.jsonp.js
|
JavaScript
|
cc0-1.0
| 156
|
jsonp({"cep":"06172120","logradouro":"Rua Eduardo Dias","bairro":"Jardim Roberto","cidade":"Osasco","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/06172120.jsonp.js
|
JavaScript
|
cc0-1.0
| 139
|
jsonp({"cep":"05265125","logradouro":"Rua Lazaro Carrascoza Vasco","bairro":"Jardim Jaragu\u00e1","cidade":"S\u00e3o Paulo","uf":"SP","estado":"S\u00e3o Paulo"});
|
lfreneda/cepdb
|
api/v1/05265125.jsonp.js
|
JavaScript
|
cc0-1.0
| 163
|
jsonp({"cep":"74926340","logradouro":"Rua Aroeira","bairro":"Verde Vale","cidade":"Aparecida de Goi\u00e2nia","uf":"GO","estado":"Goi\u00e1s"});
|
lfreneda/cepdb
|
api/v1/74926340.jsonp.js
|
JavaScript
|
cc0-1.0
| 145
|
jsonp({"cep":"65031560","logradouro":"Rua da Salina","bairro":"F\u00e1tima","cidade":"S\u00e3o Lu\u00eds","uf":"MA","estado":"Maranh\u00e3o"});
|
lfreneda/cepdb
|
api/v1/65031560.jsonp.js
|
JavaScript
|
cc0-1.0
| 144
|
jsonp({"cep":"74530050","logradouro":"Rua 207","bairro":"Setor Coimbra","cidade":"Goi\u00e2nia","uf":"GO","estado":"Goi\u00e1s"});
|
lfreneda/cepdb
|
api/v1/74530050.jsonp.js
|
JavaScript
|
cc0-1.0
| 131
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.