answer stringlengths 15 1.25M |
|---|
jsonp({"cep":"88357000","logradouro":"Rua Po\u00e7o Fundo","bairro":"Po\u00e7o Fundo","cidade":"Brusque","uf":"SC","estado":"Santa Catarina"}); |
jsonp({"cep":"88307620","logradouro":"Rua Soldado Abelardo Mendon\u00e7a Sobrinho","bairro":"Ressacada","cidade":"Itaja\u00ed","uf":"SC","estado":"Santa Catarina"}); |
jsonp({"cep":"60346700","logradouro":"Vila Milca","bairro":"Jardim Guanabara","cidade":"Fortaleza","uf":"CE","estado":"Cear\u00e1"}); |
jsonp({"cep":"60345800","logradouro":"Rua Campos Mour\u00e3o","bairro":"Vila Velha","cidade":"Fortaleza","uf":"CE","estado":"Cear\u00e1"}); |
jsonp({"cep":"59092567","logradouro":"Rua Elizeu Medeiros Carneiro","bairro":"Ponta Negra","cidade":"Natal","uf":"RN","estado":"Rio Grande do Norte"}); |
jsonp({"cep":"08572794","logradouro":"Travessa Distrito Federal","bairro":"Vila S\u00e3o Judas Tadeu","cidade":"Itaquaquecetuba","uf":"SP","estado":"S\u00e3o Paulo"}); |
jsonp({"cep":"86705630","logradouro":"Rua Cara-car\u00e1","bairro":"Vila Sampaio","cidade":"Arapongas","uf":"PR","estado":"Paran\u00e1"}); |
jsonp({"cep":"60020370","logradouro":"Pra\u00e7a Abolicionista Isaac Amaral","bairro":"Benfica","cidade":"Fortaleza","uf":"CE","estado":"Cear\u00e1"}); |
jsonp({"cep":"24060030","logradouro":"Travessa Ab\u00edlio Soares","bairro":"S\u00e3o Louren\u00e7o","cidade":"Niter\u00f3i","uf":"RJ","estado":"Rio de Janeiro"}); |
jsonp({"cep":"13876451","logradouro":"Rua Osvaldo Am\u00e9rico Carneiro","bairro":"Jardim Magalh\u00e3es","cidade":"S\u00e3o Jo\u00e3o da Boa Vista","uf":"SP","estado":"S\u00e3o Paulo"}); |
jsonp({"cep":"79050390","logradouro":"Rua S\u00e3o Cosme e Dami\u00e3o","bairro":"Vila Progresso","cidade":"Campo Grande","uf":"MS","estado":"Mato Grosso do Sul"}); |
jsonp({"cep":"64212450","logradouro":"Rua Jos\u00e9 Correia Filho","bairro":"Alto Santa Maria","cidade":"Parna\u00edba","uf":"PI","estado":"Piau\u00ed"}); |
jsonp({"cep":"25081110","logradouro":"Rua Vinte","bairro":"Vila Oper\u00e1ria","cidade":"Duque de Caxias","uf":"RJ","estado":"Rio de Janeiro"}); |
jsonp({"cep":"09932230","logradouro":"Rua Xingu","bairro":"Tabo\u00e3o","cidade":"Diadema","uf":"SP","estado":"S\u00e3o Paulo"}); |
jsonp({"cep":"39404238","logradouro":"Rua Lagoa Paturi","bairro":"Interlagos","cidade":"Montes Claros","uf":"MG","estado":"Minas Gerais"}); |
package de.xn__ho_hia.storage_unit;
import static de.xn__ho_hia.storage_unit.StorageUnit.BYTES_IN_A_EXABYTE;
import static de.xn__ho_hia.storage_unit.StorageUnit.BYTES_IN_A_EXBIBYTE;
import static de.xn__ho_hia.storage_unit.StorageUnit.BYTES_IN_A_GIBIBYTE;
import static de.xn__ho_hia.storage_unit.StorageUnit.BYTES_IN_A_GIGABYTE;
import static de.xn__ho_hia.storage_unit.StorageUnit.BYTES_IN_A_KIBIBYTE;
import static de.xn__ho_hia.storage_unit.StorageUnit.BYTES_IN_A_KILOBYTE;
import static de.xn__ho_hia.storage_unit.StorageUnit.BYTES_IN_A_MEBIBYTE;
import static de.xn__ho_hia.storage_unit.StorageUnit.BYTES_IN_A_MEGABYTE;
import static de.xn__ho_hia.storage_unit.StorageUnit.BYTES_IN_A_PEBIBYTE;
import static de.xn__ho_hia.storage_unit.StorageUnit.BYTES_IN_A_PETABYTE;
import static de.xn__ho_hia.storage_unit.StorageUnit.BYTES_IN_A_TEBIBYTE;
import static de.xn__ho_hia.storage_unit.StorageUnit.BYTES_IN_A_TERABYTE;
import static de.xn__ho_hia.storage_unit.StorageUnit.BYTES_IN_A_YOBIBYTE;
import static de.xn__ho_hia.storage_unit.StorageUnit.<API key>;
import static de.xn__ho_hia.storage_unit.StorageUnit.BYTES_IN_A_ZEBIBYTE;
import static de.xn__ho_hia.storage_unit.StorageUnit.<API key>;
import java.math.BigInteger;
import java.text.DecimalFormat;
import java.text.Format;
import java.util.ArrayList;
import java.util.List;
import java.util.function.BiFunction;
import org.eclipse.jdt.annotation.NonNull;
import org.jooq.lambda.tuple.Tuple4;
import org.junit.Assert;
import org.junit.Assume;
import org.junit.experimental.theories.DataPoints;
import org.junit.experimental.theories.FromDataPoints;
import org.junit.experimental.theories.Theories;
import org.junit.experimental.theories.Theory;
import org.junit.runner.RunWith;
import de.xn__ho_hia.quality.null_analysis.Nullsafe;
/**
* Formatting test cases for the {@link StorageUnits} class.
*/
@RunWith(Theories.class)
@SuppressWarnings({ "nls", "static-method" })
public class <API key> {
@NonNull
private static final Format FORMAT = asFormat("
/**
* @return Formatting functions that accept {@link BigInteger} as input.
*/
@DataPoints("format-biginteger")
public static List<Tuple4<BiFunction<@NonNull BigInteger, @NonNull Format, String>, @NonNull BigInteger, @NonNull Format, String>> bigIntegerFunction() {
final List<Tuple4<BiFunction<@NonNull BigInteger, @NonNull Format, String>, @NonNull BigInteger, @NonNull Format, String>> units = new ArrayList<>();
units.add(new Tuple4<>(StorageUnits::formatAsBinaryUnit, BYTES_IN_A_KIBIBYTE, FORMAT, "1.0 KiB"));
units.add(new Tuple4<>(StorageUnits::formatAsKibibyte, BYTES_IN_A_KIBIBYTE, FORMAT, "1.0 KiB"));
units.add(new Tuple4<>(StorageUnits::formatAsMebibyte, BYTES_IN_A_MEBIBYTE, FORMAT, "1.0 MiB"));
units.add(new Tuple4<>(StorageUnits::formatAsGibibyte, BYTES_IN_A_GIBIBYTE, FORMAT, "1.0 GiB"));
units.add(new Tuple4<>(StorageUnits::formatAsTebibyte, BYTES_IN_A_TEBIBYTE, FORMAT, "1.0 TiB"));
units.add(new Tuple4<>(StorageUnits::formatAsPebibyte, BYTES_IN_A_PEBIBYTE, FORMAT, "1.0 PiB"));
units.add(new Tuple4<>(StorageUnits::formatAsExbibyte, BYTES_IN_A_EXBIBYTE, FORMAT, "1.0 EiB"));
units.add(new Tuple4<>(StorageUnits::formatAsZebibyte, BYTES_IN_A_ZEBIBYTE, FORMAT, "1.0 ZiB"));
units.add(new Tuple4<>(StorageUnits::formatAsYobibyte, BYTES_IN_A_YOBIBYTE, FORMAT, "1.0 YiB"));
units.add(new Tuple4<>(StorageUnits::formatAsDecimalUnit, BYTES_IN_A_KILOBYTE, FORMAT, "1.0 kB"));
units.add(new Tuple4<>(StorageUnits::formatAsKilobyte, BYTES_IN_A_KILOBYTE, FORMAT, "1.0 kB"));
units.add(new Tuple4<>(StorageUnits::formatAsMegabyte, BYTES_IN_A_MEGABYTE, FORMAT, "1.0 MB"));
units.add(new Tuple4<>(StorageUnits::formatAsGigabyte, BYTES_IN_A_GIGABYTE, FORMAT, "1.0 GB"));
units.add(new Tuple4<>(StorageUnits::formatAsTerabyte, BYTES_IN_A_TERABYTE, FORMAT, "1.0 TB"));
units.add(new Tuple4<>(StorageUnits::formatAsPetabyte, BYTES_IN_A_PETABYTE, FORMAT, "1.0 PB"));
units.add(new Tuple4<>(StorageUnits::formatAsExabyte, BYTES_IN_A_EXABYTE, FORMAT, "1.0 EB"));
units.add(new Tuple4<>(StorageUnits::formatAsZettabyte, <API key>, FORMAT, "1.0 ZB"));
units.add(new Tuple4<>(StorageUnits::formatAsYottabyte, <API key>, FORMAT, "1.0 YB"));
units.add(new Tuple4<>(StorageUnits::formatAsCommonUnit, BYTES_IN_A_KIBIBYTE, FORMAT, "1.0 kB"));
units.add(new Tuple4<>(StorageUnits::<API key>, BYTES_IN_A_KIBIBYTE, FORMAT, "1.0 kB"));
units.add(new Tuple4<>(StorageUnits::<API key>, BYTES_IN_A_MEBIBYTE, FORMAT, "1.0 MB"));
units.add(new Tuple4<>(StorageUnits::<API key>, BYTES_IN_A_GIBIBYTE, FORMAT, "1.0 GB"));
units.add(new Tuple4<>(StorageUnits::<API key>, BYTES_IN_A_TEBIBYTE, FORMAT, "1.0 TB"));
units.add(new Tuple4<>(StorageUnits::<API key>, BYTES_IN_A_PEBIBYTE, FORMAT, "1.0 PB"));
units.add(new Tuple4<>(StorageUnits::<API key>, BYTES_IN_A_EXBIBYTE, FORMAT, "1.0 EB"));
units.add(new Tuple4<>(StorageUnits::<API key>, BYTES_IN_A_ZEBIBYTE, FORMAT, "1.0 ZB"));
units.add(new Tuple4<>(StorageUnits::<API key>, BYTES_IN_A_YOBIBYTE, FORMAT, "1.0 YB"));
return units;
}
/**
* @return Formatting functions that accept {@link Long} as input.
*/
@DataPoints("format-long")
public static List<Tuple4<BiFunction<@NonNull Long, @NonNull Format, String>, @NonNull Long, @NonNull Format, String>> longFunction() {
final List<Tuple4<BiFunction<@NonNull Long, @NonNull Format, String>, @NonNull Long, @NonNull Format, String>> units = new ArrayList<>();
units.add(new Tuple4<>(StorageUnits::formatAsBinaryUnit, asLong(BYTES_IN_A_KIBIBYTE), FORMAT, "1.0 KiB"));
units.add(new Tuple4<>(StorageUnits::formatAsKibibyte, asLong(BYTES_IN_A_KIBIBYTE), FORMAT, "1.0 KiB"));
units.add(new Tuple4<>(StorageUnits::formatAsMebibyte, asLong(BYTES_IN_A_MEBIBYTE), FORMAT, "1.0 MiB"));
units.add(new Tuple4<>(StorageUnits::formatAsGibibyte, asLong(BYTES_IN_A_GIBIBYTE), FORMAT, "1.0 GiB"));
units.add(new Tuple4<>(StorageUnits::formatAsTebibyte, asLong(BYTES_IN_A_TEBIBYTE), FORMAT, "1.0 TiB"));
units.add(new Tuple4<>(StorageUnits::formatAsPebibyte, asLong(BYTES_IN_A_PEBIBYTE), FORMAT, "1.0 PiB"));
units.add(new Tuple4<>(StorageUnits::formatAsExbibyte, asLong(BYTES_IN_A_EXBIBYTE), FORMAT, "1.0 EiB"));
units.add(new Tuple4<>(StorageUnits::formatAsZebibyte, asLong(BYTES_IN_A_ZEBIBYTE), FORMAT, "0.0 ZiB"));
units.add(new Tuple4<>(StorageUnits::formatAsYobibyte, asLong(BYTES_IN_A_YOBIBYTE), FORMAT, "0.0 YiB"));
units.add(new Tuple4<>(StorageUnits::formatAsDecimalUnit, asLong(BYTES_IN_A_KILOBYTE), FORMAT, "1.0 kB"));
units.add(new Tuple4<>(StorageUnits::formatAsKilobyte, asLong(BYTES_IN_A_KILOBYTE), FORMAT, "1.0 kB"));
units.add(new Tuple4<>(StorageUnits::formatAsMegabyte, asLong(BYTES_IN_A_MEGABYTE), FORMAT, "1.0 MB"));
units.add(new Tuple4<>(StorageUnits::formatAsGigabyte, asLong(BYTES_IN_A_GIGABYTE), FORMAT, "1.0 GB"));
units.add(new Tuple4<>(StorageUnits::formatAsTerabyte, asLong(BYTES_IN_A_TERABYTE), FORMAT, "1.0 TB"));
units.add(new Tuple4<>(StorageUnits::formatAsPetabyte, asLong(BYTES_IN_A_PETABYTE), FORMAT, "1.0 PB"));
units.add(new Tuple4<>(StorageUnits::formatAsExabyte, asLong(BYTES_IN_A_EXABYTE), FORMAT, "1.0 EB"));
units.add(new Tuple4<>(StorageUnits::formatAsZettabyte, asLong(<API key>), FORMAT, "0.0 ZB"));
units.add(new Tuple4<>(StorageUnits::formatAsYottabyte, asLong(<API key>), FORMAT, "0.0 YB"));
units.add(new Tuple4<>(StorageUnits::formatAsCommonUnit, asLong(BYTES_IN_A_KIBIBYTE), FORMAT, "1.0 kB"));
units.add(new Tuple4<>(StorageUnits::<API key>, asLong(BYTES_IN_A_KIBIBYTE), FORMAT, "1.0 kB"));
units.add(new Tuple4<>(StorageUnits::<API key>, asLong(BYTES_IN_A_MEBIBYTE), FORMAT, "1.0 MB"));
units.add(new Tuple4<>(StorageUnits::<API key>, asLong(BYTES_IN_A_GIBIBYTE), FORMAT, "1.0 GB"));
units.add(new Tuple4<>(StorageUnits::<API key>, asLong(BYTES_IN_A_TEBIBYTE), FORMAT, "1.0 TB"));
units.add(new Tuple4<>(StorageUnits::<API key>, asLong(BYTES_IN_A_PEBIBYTE), FORMAT, "1.0 PB"));
units.add(new Tuple4<>(StorageUnits::<API key>, asLong(BYTES_IN_A_EXBIBYTE), FORMAT, "1.0 EB"));
units.add(new Tuple4<>(StorageUnits::<API key>, asLong(BYTES_IN_A_ZEBIBYTE), FORMAT, "0.0 ZB"));
units.add(new Tuple4<>(StorageUnits::<API key>, asLong(BYTES_IN_A_YOBIBYTE), FORMAT, "0.0 YB"));
return units;
}
/**
* Tests formatting a {@link BigInteger} formatted as a storage unit with
* any format.
*
* @param input
* The test inputs to use.
*/
@Theory
public void <API key>(
@FromDataPoints("format-biginteger") final Tuple4<BiFunction<@NonNull BigInteger, @NonNull Format, String>, @NonNull BigInteger, @NonNull Format, String> input) {
// given
Assume.assumeNotNull(input.v1);
Assume.assumeNotNull(input.v2);
Assume.assumeNotNull(input.v3);
Assume.assumeNotNull(input.v4);
// when
final String formatted = input.v1.apply(input.v2, input.v3);
// then
Assert.assertEquals(input.v4, formatted);
}
/**
* Tests formatting a {@link Long} formatted as a storage unit with any
* format.
*
* @param input
* The test inputs to use.
*/
@Theory
public void <API key>(
@FromDataPoints("format-long") final Tuple4<BiFunction<@NonNull Long, @NonNull Format, String>, @NonNull Long, @NonNull Format, String> input) {
// given
Assume.assumeNotNull(input.v1);
Assume.assumeNotNull(input.v2);
Assume.assumeNotNull(input.v3);
Assume.assumeNotNull(input.v4);
// when
final String formatted = input.v1.apply(input.v2, input.v3);
// then
Assert.assertEquals(input.v4, formatted);
}
@NonNull
private static Long asLong(final BigInteger number) {
return Nullsafe.asLong(number.longValue());
}
@NonNull
private static Format asFormat(final String pattern) {
return new DecimalFormat(pattern);
}
} |
<a href="http:
<a href="http:
<a href="http:
<a href="http:
<a href="http:
<a href="http:
<a href="http:
<a href="http:
<a href="http:
<a href="http:
<a href="http:
<a href="http: |
<!DOCTYPE HTML PUBLIC "-
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_45-internal) on Sat Jul 25 18:14:29 BST 2015 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.apache.jena.riot.adapters.JenaReadersWriters.<API key> (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 Class org.apache.jena.riot.adapters.JenaReadersWriters.<API key> (Apache Jena ARQ)";
}
}
catch(err) {
}
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<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><a href="../../../../../../org/apache/jena/riot/adapters/JenaReadersWriters.<API key>.html" title="class in org.apache.jena.riot.adapters">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-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/riot/adapters/class-use/JenaReadersWriters.<API key>.html" target="_top">Frames</a></li>
<li><a href="JenaReadersWriters.<API key>.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="<API key>">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!
allClassesLink = document.getElementById("<API key>");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
</script>
</div>
<a name="skip.navbar.top">
</a></div>
<div class="header">
<h2 title="Uses of Class org.apache.jena.riot.adapters.JenaReadersWriters.<API key>" class="title">Uses of Class<br>org.apache.jena.riot.adapters.JenaReadersWriters.<API key></h2>
</div>
<div class="classUseContainer">No usage of org.apache.jena.riot.adapters.JenaReadersWriters.<API key></div>
<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><a href="../../../../../../org/apache/jena/riot/adapters/JenaReadersWriters.<API key>.html" title="class in org.apache.jena.riot.adapters">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-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/riot/adapters/class-use/JenaReadersWriters.<API key>.html" target="_top">Frames</a></li>
<li><a href="JenaReadersWriters.<API key>.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="<API key>">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!
allClassesLink = document.getElementById("<API key>");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
</script>
</div>
<a name="skip.navbar.bottom">
</a></div>
<p class="legalCopy"><small>Licenced under the Apache License, Version 2.0</small></p>
</body>
</html> |
jsonp({"cep":"03449005","logradouro":"Rua Boa Estrela","bairro":"Vila Carr\u00e3o","cidade":"S\u00e3o Paulo","uf":"SP","estado":"S\u00e3o Paulo"}); |
#!/usr/bin/perl
use strict;
use warnings;
use FindBin qw($RealBin);
use Term::ReadKey;
use Digest::SHA1 qw(sha1_hex);;
use Storable qw(lock_store);
$| = 1;
print "Type your password:";
ReadMode('noecho');
chomp(my $password = <STDIN>);
ReadMode(0);
print "\n";
my @set = ('0' ..'9', 'a' .. 'f');
my $salt = join('', map $set[rand @set], 1 .. 32);
my $password_data = {
salt => $salt,
hash => sha1_hex($salt, $password),
};
lock_store $password_data => "$RealBin/../.admin_password"; |
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Complete Example</title>
<link rel="stylesheet" href="https://cdn.pydata.org/bokeh/release/bokeh-0.12.10.min.css" type="text/css" />
<script type="text/javascript" src="https://cdn.pydata.org/bokeh/release/bokeh-0.12.10.min.js"></script>
<script type="text/javascript" src="https://cdn.pydata.org/bokeh/release/bokeh-api-0.12.10.min.js"></script>
<!-- The order of CSS and JS imports above is important. -->
</head>
<body>
<button onclick="addPoint()">Add some data!</button><br/>
<div>
<script type="text/javascript">
// arrays to hold data
var source = new Bokeh.ColumnDataSource({
data: { x: [], y: [] }
});
// make the plot and add some tools
var tools = "pan,crosshair,wheel_zoom,box_zoom,reset,save";
var plot = Bokeh.Plotting.figure({title:'Example of Random data', tools: tools, height: 300, width: 300});
var scatterData = plot.line({ field: "x" }, { field: "y" }, {
source: source,
line_width: 2
});
// Show the plot, appending it to the end of the current
// section of the document we are in.
Bokeh.Plotting.show(plot, document.currentScript.parentElement);
function addPoint() {
// The data can be added, but generally all fields must be the
// same length.
source.data.x.push(Math.random());
source.data.y.push(Math.random());
// Also, the DataSource object must be notified when it has changed.
source.change.emit();
}
</script>
</div>
</body>
</html> |
jsonp({"cep":"35660364","logradouro":"Rua Maria Adelaide Chaves","bairro":"Redentor","cidade":"Par\u00e1 de Minas","uf":"MG","estado":"Minas Gerais"}); |
jsonp({"cep":"82120580","logradouro":"Pra\u00e7a Paulo Santi","bairro":"Pilarzinho","cidade":"Curitiba","uf":"PR","estado":"Paran\u00e1"}); |
jsonp({"cep":"39401246","logradouro":"Rua Tr\u00eas","bairro":"Santa Eug\u00eania","cidade":"Montes Claros","uf":"MG","estado":"Minas Gerais"}); |
jsonp({"cep":"88066300","logradouro":"Rua Hermes Guedes da Fonseca","bairro":"Arma\u00e7\u00e3o do P\u00e2ntano do Sul","cidade":"Florian\u00f3polis","uf":"SC","estado":"Santa Catarina"}); |
jsonp({"cep":"22753900","logradouro":"Estrada de Jacarepagu\u00e1","bairro":"Freguesia (Jacarepagu\u00e1)","cidade":"Rio de Janeiro","uf":"RJ","estado":"Rio de Janeiro"}); |
#include "rims.h"
unsigned char LED_Clk;
void TimerISR() {
LED_Clk = 1;
}
enum LED_States { LED_LEDONRELEASE, LED_LEDONPRESS, LED_LEDONREALEASE, LED_LEDOFFPRESS } LED_State;
<API key>() {
switch(LED_State) { // Transitions
case -1:
LED_State = LED_LEDONRELEASE;
break;
case LED_LEDONRELEASE:
if (A0) {
LED_State = LED_LEDONPRESS;
}
else if (!A0) {
LED_State = LED_LEDONRELEASE;
}
break;
case LED_LEDONPRESS:
if (!A0) {
LED_State = LED_LEDONREALEASE;
}
else if (A0) {
LED_State = LED_LEDONPRESS;
}
break;
case LED_LEDONREALEASE:
if (A0) {
LED_State = LED_LEDOFFPRESS;
}
else if (!A0) {
LED_State = LED_LEDONREALEASE;
}
break;
case LED_LEDOFFPRESS:
if (!A0) {
LED_State = LED_LEDONRELEASE;
}
else if (A0) {
LED_State = LED_LEDOFFPRESS;
}
break;
default:
LED_State = LED_LEDONRELEASE;
} // Transitions
switch(LED_State) { // State actions
case LED_LEDONRELEASE:
B0=0;
break;
case LED_LEDONPRESS:
B0=1;
break;
case LED_LEDONREALEASE:
B0=1;
break;
case LED_LEDOFFPRESS:
B0=0;
break;
default: // ADD default behaviour below
break;
} // State actions
}
int main() {
const unsigned int <API key> = 1000; // 1000 ms default
TimerSet(<API key>);
TimerOn();
LED_State = -1; // Initial state
B = 0; // Init outputs
while(1) {
<API key>();
while(!LED_Clk);
LED_Clk = 0;
} // while (1)
} // Main |
jsonp({"cep":"24904200","logradouro":"Rua Tr\u00eas","bairro":"Flamengo","cidade":"Maric\u00e1","uf":"RJ","estado":"Rio de Janeiro"}); |
import React from 'react'
import <API key> from './data-loader'
import <API key> from './data-viewer'
export default class Previewer extends React.Component {
constructor () {
super(...arguments)
this.state = {
prevalenceData: null,
wildType: null,
regionData: null,
<API key>: false
}
}
<API key> (prevalenceData) {
const <API key> = prevalenceData !== null
this.setState({prevalenceData, <API key>})
}
onWTChange (wildType) {
this.setState({wildType})
}
render () {
const {<API key>} = this.state
return <div>
<<API key>
onWTChange={this.onWTChange.bind(this)}
onChange={this.<API key>.bind(this)} />
{<API key> ? <<API key> {...this.state} /> : null}
</div>
}
} |
jsonp({"cep":"13092584","logradouro":"Rua Maca\u00fava","bairro":"Bairro das Palmeiras","cidade":"Campinas","uf":"SP","estado":"S\u00e3o Paulo"}); |
package scorex.transaction
import com.google.common.primitives.{Bytes, Ints, Longs}
import play.api.libs.json.{JsObject, Json}
import scorex.account.Account
import scorex.crypto.encode.Base58
import scorex.crypto.hash.<API key>._
import scorex.serialization.Deser
import scorex.transaction.LagonakiTransaction.TransactionType
import scala.util.{Failure, Try}
case class GenesisTransaction(override val recipient: Account,
override val amount: Long,
override val timestamp: Long)
extends LagonakiTransaction(TransactionType.GenesisTransaction, recipient, amount, 0, timestamp,
GenesisTransaction.generateSignature(recipient, amount, timestamp)) {
import scorex.transaction.GenesisTransaction._
import scorex.transaction.LagonakiTransaction._
override lazy val creator: Option[Account] = None
override lazy val json: JsObject =
jsonBase() ++ Json.obj("recipient" -> recipient.address, "amount" -> amount)
override lazy val bytes: Array[Byte] = {
val typeBytes = Array(TransactionType.GenesisTransaction.id.toByte)
val timestampBytes = Bytes.ensureCapacity(Longs.toByteArray(timestamp), TimestampLength, 0)
val amountBytes = Bytes.ensureCapacity(Longs.toByteArray(amount), AmountLength, 0)
val rcpBytes = recipient.bytes
require(rcpBytes.length == Account.AddressLength)
val res = Bytes.concat(typeBytes, timestampBytes, rcpBytes, amountBytes)
require(res.length == dataLength)
res
}
override lazy val dataLength = TypeLength + BASE_LENGTH
override lazy val signatureValid: Boolean = {
val typeBytes = Bytes.ensureCapacity(Ints.toByteArray(TransactionType.GenesisTransaction.id), TypeLength, 0)
val timestampBytes = Bytes.ensureCapacity(Longs.toByteArray(timestamp), TimestampLength, 0)
val amountBytes = Bytes.ensureCapacity(Longs.toByteArray(amount), AmountLength, 0)
val data = Bytes.concat(typeBytes, timestampBytes, recipient.bytes, amountBytes)
val h = hash(data)
Bytes.concat(h, h).sameElements(signature)
}
override def validate: ValidationResult.Value =
if (amount < 0) {
ValidationResult.NegativeAmount
} else if (!Account.isValid(recipient)) {
ValidationResult.InvalidAddress
} else ValidationResult.ValidateOke
override def involvedAmount(account: Account): Long = if (recipient.address.equals(account.address)) amount else 0
override def balanceChanges(): Seq[(Account, Long)] = Seq((recipient, amount))
}
object GenesisTransaction extends Deser[GenesisTransaction] {
import scorex.transaction.LagonakiTransaction._
private val RECIPIENT_LENGTH = Account.AddressLength
private val BASE_LENGTH = TimestampLength + RECIPIENT_LENGTH + AmountLength
def generateSignature(recipient: Account, amount: Long, timestamp: Long): Array[Byte] = {
val typeBytes = Bytes.ensureCapacity(Ints.toByteArray(TransactionType.GenesisTransaction.id), TypeLength, 0)
val timestampBytes = Bytes.ensureCapacity(Longs.toByteArray(timestamp), TimestampLength, 0)
val amountBytes = Longs.toByteArray(amount)
val amountFill = new Array[Byte](AmountLength - amountBytes.length)
val data = Bytes.concat(typeBytes, timestampBytes, recipient.bytes, Bytes.concat(amountFill, amountBytes))
val h = hash(data)
Bytes.concat(h, h)
}
def parseBytes(data: Array[Byte]): Try[GenesisTransaction] = {
data.head match {
case transactionType: Byte if transactionType == TransactionType.GenesisTransaction.id =>
parseTail(data.tail)
case transactionType =>
Failure(new Exception(s"Incorrect transaction type '$transactionType' in GenesisTransaction data"))
}
}
def parseTail(data: Array[Byte]): Try[GenesisTransaction] = Try {
require(data.length >= BASE_LENGTH, "Data does not match base length")
var position = 0
val timestampBytes = java.util.Arrays.copyOfRange(data, position, position + TimestampLength)
val timestamp = Longs.fromByteArray(timestampBytes)
position += TimestampLength
val recipientBytes = java.util.Arrays.copyOfRange(data, position, position + RECIPIENT_LENGTH)
val recipient = new Account(Base58.encode(recipientBytes))
position += RECIPIENT_LENGTH
val amountBytes = java.util.Arrays.copyOfRange(data, position, position + AmountLength)
val amount = Longs.fromByteArray(amountBytes)
GenesisTransaction(recipient, amount, timestamp)
}
} |
jsonp({"cep":"38181730","logradouro":"Rua J","bairro":"Pedra Azul","cidade":"Arax\u00e1","uf":"MG","estado":"Minas Gerais"}); |
title: "Design In Tech 2015"
layout: resource
source_url: "http:
category: "philosophy"
contributor: "winterdamsel"
posted_date: "2015-03-15"
"Design is only needed to make things look pretty" is such an outdated thought in the Tech industry and if you're not totally convinced and need some more numbers, Maeda's report will make you a believer. |
jsonp({"cep":"04713900","logradouro":"Rua da Paz","bairro":"Ch\u00e1cara Santo Ant\u00f4nio (Zona Sul)","cidade":"S\u00e3o Paulo","uf":"SP","estado":"S\u00e3o Paulo"}); |
jsonp({"cep":"78705440","logradouro":"Rua Catorze de Maio","bairro":"Morada do Paraty","cidade":"Rondon\u00f3polis","uf":"MT","estado":"Mato Grosso"}); |
jsonp({"cep":"86056550","logradouro":"Rua Jos\u00e9 Maria de Mello Carvalho","bairro":"Colinas","cidade":"Londrina","uf":"PR","estado":"Paran\u00e1"}); |
jsonp({"cep":"26327290","logradouro":"Rua Marklen","bairro":"Siag","cidade":"Queimados","uf":"RJ","estado":"Rio de Janeiro"}); |
<!DOCTYPE html PUBLIC "-
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="R.css" />
</head><body>
<table width="100%" summary="page for methods-deprecated {methods}"><tr><td>methods-deprecated {methods}</td><td style="text-align: right;">R Documentation</td></tr></table>
<h2>Deprecated Functions in Package <span class="pkg">methods</span></h2>
<h3>Description</h3>
<p>These functions are provided for compatibility with older versions of
<span style="font-family: Courier New, Courier; color: #666666;"><b>R</b></span> only, and may be defunct as soon as the next release.
</p>
<h3>Details</h3>
<p>The original help page for these functions is often
available at <code>help("oldName-deprecated")</code> (note the quotes).
Functions in packages other than the methods package are listed in
<code>help("pkg-deprecated")</code>.
</p>
<h3>See Also</h3>
<p><code><a href="../../base/html/Deprecated.html">Deprecated</a></code>, <code><a href="methods-defunct.html">methods-defunct</a></code>
</p>
<hr /><div style="text-align: center;">[Package <em>methods</em> version 3.6.1 <a href="00Index.html">Index</a>]</div>
</body></html> |
layout: page
title:
categories:
-
upstream: https://telegram.org/blog/<API key>
preview_image: /images/<API key>.jpeg
<img alt="" src="{{ site.baseurl | prepend: site.url }}/images/<API key>.jpeg">
<br>
Telegram ****
******** Telegram
<center><img alt="" src="{{ site.baseurl | prepend: site.url }}/images/<API key>.jpeg" width="70%"></center>
<br>
****
>**** Telegram ****
<center><img alt="" src="{{ site.baseurl | prepend: site.url }}/images/<API key>.gif" width="70%"></center>
<br>
**** -
<center><img alt="" src="{{ site.baseurl | prepend: site.url }}/images/<API key>.gif" width="70%"></center>
<br>
**** 2C
<center><img alt="" src="{{ site.baseurl | prepend: site.url }}/images/<API key>.jpeg" width="70%"></center>
<br>
Telegram ********
****
<center><img alt="" src="{{ site.baseurl | prepend: site.url }}/images/<API key>.jpeg" width="70%"></center>
<br>
************
<center><img alt="" src="{{ site.baseurl | prepend: site.url }}/images/<API key>.jpeg" width="70%"></center>
<br>
Siri
iOS Siri
<center><img alt="" src="{{ site.baseurl | prepend: site.url }}/images/<API key>.jpeg" width="70%"></center>
<br>
iOS ****
<center><img alt="" src="{{ site.baseurl | prepend: site.url }}/images/<API key>.jpeg" width="70%"></center>
<br>
**iOS ** <a href="https:
Telegram X iOS
<center><img alt="" src="{{ site.baseurl | prepend: site.url }}/images/<API key>.jpeg" width="70%"></center>
<br>
**Android** Telegram X <a href="https://play.google.com/store/apps/details?id=org.thunderdog.challegram& amp;hl=en"></a>
_2019623_<br>
_Telegram _ |
jsonp({"cep":"18113828","logradouro":"Rua Am\u00e9rico Barroso","bairro":"Altos de Votorantim","cidade":"Votorantim","uf":"SP","estado":"S\u00e3o Paulo"}); |
jsonp({"cep":"87043430","logradouro":"Rua Rio Amazonas","bairro":"Conjunto Residencial Paulino Carlos Filho","cidade":"Maring\u00e1","uf":"PR","estado":"Paran\u00e1"}); |
jsonp({"cep":"79332032","logradouro":"Travessa do Sossego","bairro":"Aeroporto","cidade":"Corumb\u00e1","uf":"MS","estado":"Mato Grosso do Sul"}); |
jsonp({"cep":"89206270","logradouro":"Rua Airton Fel\u00e1cio","bairro":"Boa Vista","cidade":"Joinville","uf":"SC","estado":"Santa Catarina"}); |
jsonp({"cep":"79064330","logradouro":"Rua Ivatuva","bairro":"Jardim Santa Felicidade","cidade":"Campo Grande","uf":"MS","estado":"Mato Grosso do Sul"}); |
jsonp({"cep":"17012634","logradouro":"Rua Alberto Segalla","bairro":"Jardim Infante Dom Henrique","cidade":"Bauru","uf":"SP","estado":"S\u00e3o Paulo"}); |
jsonp({"cep":"35502184","logradouro":"Rua Mediterr\u00e2neo","bairro":"Anchieta","cidade":"Divin\u00f3polis","uf":"MG","estado":"Minas Gerais"}); |
jsonp({"cep":"08694485","logradouro":"Estrada Pinheirinho","bairro":"Jardim Dona Benta","cidade":"Suzano","uf":"SP","estado":"S\u00e3o Paulo"}); |
jsonp({"cep":"38307040","logradouro":"Pra\u00e7a Caiap\u00f4nia","bairro":"Platina","cidade":"Ituiutaba","uf":"MG","estado":"Minas Gerais"}); |
jsonp({"cep":"75900132","logradouro":"Rua Orozimbo Veloso de Godoy","bairro":"Jardim Cruvinel","cidade":"Rio Verde","uf":"GO","estado":"Goi\u00e1s"}); |
jsonp({"cep":"98801790","logradouro":"Rua Dez de Novembro","bairro":"Oliveira","cidade":"Santo \u00c2ngelo","uf":"RS","estado":"Rio Grande do Sul"}); |
jsonp({"cep":"15801444","logradouro":"Rua Foz do Igua\u00e7u","bairro":"Loteamento Residencial Isabella","cidade":"Catanduva","uf":"SP","estado":"S\u00e3o Paulo"}); |
jsonp({"cep":"65081630","logradouro":"Rua da Paz","bairro":"Vila Embratel","cidade":"S\u00e3o Lu\u00eds","uf":"MA","estado":"Maranh\u00e3o"}); |
jsonp({"cep":"77020540","logradouro":"Quadra 206 Sul Alameda 7","bairro":"Plano Diretor Sul","cidade":"Palmas","uf":"TO","estado":"Tocantins"}); |
jsonp({"cep":"45023130","logradouro":"Rua Argentina","bairro":"Jurema","cidade":"Vit\u00f3ria da Conquista","uf":"BA","estado":"Bahia"}); |
jsonp({"cep":"87300490","logradouro":"Rodovia BR-272 Sa\u00edda para Barbosa Ferraz","bairro":"Vila Teixeira","cidade":"Campo Mour\u00e3o","uf":"PR","estado":"Paran\u00e1"}); |
jsonp({"cep":"08630070","logradouro":"Rua do C\u00f3rrego","bairro":"Ch\u00e1caras S\u00e3o Judas Tadeu","cidade":"Suzano","uf":"SP","estado":"S\u00e3o Paulo"}); |
jsonp({"cep":"02147045","logradouro":"Pra\u00e7a Arlindo Fernandes Fissore","bairro":"Parque Novo Mundo","cidade":"S\u00e3o Paulo","uf":"SP","estado":"S\u00e3o Paulo"}); |
jsonp({"cep":"13211510","logradouro":"Rodovia Bandeirantes","bairro":"Ch\u00e1cara Malota","cidade":"Jundia\u00ed","uf":"SP","estado":"S\u00e3o Paulo"}); |
#include "window/window.h"
#include "app/app.h"
#include "main/main.h"
#include "window/style.h"
#include "file/file.h"
#include "loaders/load.h"
#include "window/wmanager.h"
#include "math/transform.h"
#include "gui/text.h"
#include "gui/button.h"
#include "gui/image_win.h"
#include "loaders/load.h"
#include "window/colorwin.h"
#include "gui/li_pull_menu.h"
#include "menu/pull.h"
#include "font/anti_prop.h"
#include "lisp/lisp.h"
#include "win.h"
#include "url.h"
#include "memory/array.h"
#include "checksum/checksum.h"
#include "string/string.h"
#include <ctype.h>
enum {
FB_MAX_THREADS=100
};
<API key><fb_thread_window> fb_thread_windows[FB_MAX_THREADS];
li_object *fb_add_thread(li_object * o, li_environment * env=0)
{
for (int i=0; i<FB_MAX_THREADS; i++)
{
if (!fb_thread_windows[i].get())
{
<API key> * style=i4_current_app->get_style();
fb_thread_window * fb=new fb_thread_window(300, 35, style);
<API key> * mp;
if (o)
{
mp=style->create_mp_window(li_int::get(li_first(o,0),0)->value(),
li_int::get(li_second(o,0),0)->value(),
fb->width(), fb->height(), "Thread");
}
else
{
mp=style->create_mp_window(30,30, fb->width(), fb->height(), "Thread");
}
mp->add_child(0,0, fb);
fb_thread_windows[i]=fb;
return li_true_sym;
}
}
return 0;
}
li_object *fb_add_page(li_object * o, li_environment * env);
li_object *fb_visited(li_object * o, li_environment * env);
<API key><<API key>> fb_counts_window;
class fb_app :
public <API key>
{
public:
enum {
QUIT
};
void init()
{
<API key>::init();
<API key> * style=get_style();
<API key> * cw=i4_add_color_window(wm, 0, style, 0,0, wm->width(), wm->height());
i4_image_class * logo=i4_load_image("logo.jpg");
cw->add_child(wm->width()/2-logo->width()/2,
wm->height()/2-logo->height()/2,
new <API key>(logo, i4_T, i4_F));
style->icon_hint->background_bitmap=i4_load_image("background.tga");
fb_counts_window=new <API key>("Visited 000000, Unvisited 000000",
style, style->font_hint->small_font);
wm->add_child(wm->width()-fb_counts_window->width(), wm->height()-fb_counts_window->height(),
fb_counts_window.get());
li_create_pull_menu("menu.scm")->show(cw, 0,0);
li_add_function("add_thread", fb_add_thread);
li_add_function("add_page", fb_add_page);
li_add_function("visited", fb_visited);
i4_file_class * fp=i4_open("filebot.scm");
if (!fp)
{
fp=i4_open("default.scm");
if (!fp)
{
i4_error("no default?");
}
int size=fp->size();
i4_file_class * out=i4_open("filebot.scm",I4_WRITE);
if (!out)
{
i4_error("couldn't write to filebot.scm");
}
char buf[2000];
fp->read(buf, size);
out->write(buf,size);
delete fp;
delete out;
}
else
{
delete fp;
}
li_load("filebot.scm");
i4_mkdir(li_string::get(li_get_value("save_path",0),0)->value());
}
i4_array<w32> visited_urls;
i4_array<fb_url *> urls_to_visit;
fb_app()
: visited_urls(0, 1024),
urls_to_visit(0, 1024)
{
}
void uninit()
{
visited_urls.uninit(); // free up memory associated with the arrays
urls_to_visit.uninit();
<API key>::uninit();
}
fb_url *get_best_url()
{
int i;
for (i=0; i<urls_to_visit.size(); i++)
{
if (urls_to_visit[i])
{
char * name=urls_to_visit[i]->full_name;
if (name[strlen(name)-1]=='3' && (strstr(name, ".mp3") || strstr(name, ".MP3")))
{
fb_url * ret=urls_to_visit[i];
urls_to_visit[i]=0;
return ret;
}
}
}
for (i=0; i<urls_to_visit.size(); i++)
{
if (urls_to_visit[i])
{
char * name=urls_to_visit[i]->full_name;
if (strstr(name, "mp3") || strstr(name, "MP3"))
{
fb_url * ret=urls_to_visit[i];
urls_to_visit[i]=0;
return ret;
}
}
}
for (i=0; i<urls_to_visit.size(); i++)
{
if (urls_to_visit[i])
{
fb_url * ret=urls_to_visit[i];
urls_to_visit[i]=0;
return ret;
}
}
return 0;
}
void add_new_url(char * uname, fb_url * current_url)
{
fb_url * url_copy=new fb_url(uname, current_url);
// see if we have visited this site already. Instead of storing the whole string
// for places we've been we store the checksum of the name
w32 csum=url_copy->checksum();
int i;
for (i=0; i<visited_urls.size(); i++)
{
if (visited_urls[i]==csum)
{
return;
}
} // we've already been there
for (i=0; i<urls_to_visit.size(); i++)
{
if (!urls_to_visit[i])
{
urls_to_visit[i]=url_copy;
return ;
}
}
urls_to_visit.add(url_copy);
}
void scan_url_data(char * s, int len, fb_url * current_url)
{
len-=10; // need this much space to have a href
char uname[400]; // store temporary hrefs here
for (int i=0; i<len;)
{
// is this a href?
if (fb_strneq(s+i, "<a href=", 8)==1)
{
i+=8;
while (s[i] && s[i]!='"') i++;
// find quote
i++; // skip it
char * up=uname; // save the rest of the href
int t=0;
while (s[i] && s[i]!='"')
{
t++;
if (t==398)
{
s[i]=0;
}
else
{
*(up++)=s[i++];
}
}
*up=0;
i++;
add_new_url(uname, current_url);
}
else
{
i++;
}
}
}
void calc_model()
{
for (int i=0; i<FB_MAX_THREADS; i++)
{
if (fb_thread_windows[i].get())
{
int state=fb_thread_windows[i]->get_state();
if (state==FB_DONE_READING) // has url data it wan't us to process
{
w8 * buf=fb_thread_windows[i]->save_buffer;
int size=fb_thread_windows[i]->save_buffer_size;
fb_url * url=fb_thread_windows[i]->get_url();
scan_url_data((char *)buf, size, url); // scan buffer for new url's to follow
i4_file_class * fp=i4_open("visited_urls.scm", I4_APPEND);
if (fp)
{
fp->printf("(visited \"%s\") ; %d %s \n", url->full_name, size,
fb_thread_windows[i]->get_error_string());
delete fp;
}
// reset this thread
fb_thread_windows[i]->save_buffer_size=0;
state=FB_WAITING; // ready to accept new commands
fb_thread_windows[i]->ack_data(); // tell window we are done with it's data
}
if (state==FB_WAITING) // is the thread ready for a new request?
{
fb_url * best=get_best_url();
if (best)
{
visited_urls.add(best->checksum());
fb_thread_windows[i]->set_url(best);
}
}
fb_thread_windows[i]->update();
}
}
if (fb_counts_window.get())
{
int t=0;
for (int i=0; i<urls_to_visit.size(); i++)
{
if (urls_to_visit[i])
{
t++;
}
}
char buf[100];
sprintf(buf, "Visited %d, Unvisited %d", visited_urls.size(), t);
fb_counts_window->set_text(new i4_str(buf));
}
}
void receive_event(i4_event * ev)
{
if (ev->type()==i4_event::DO_COMMAND)
{
char * cmd=((<API key> *)ev)->command;
if (cmd)
{
if (strcmp(cmd, "exit")==0)
{
quit();
}
else
{
li_call(cmd);
}
}
}
}
char *name()
{
return "fb_app";
}
} *file_bot;
li_object *fb_visited(li_object * o, li_environment * env)
{
char * s=li_string::get(li_first(o,0),0)->value();
w32 checksum=i4_check_sum32(s,strlen(s));
file_bot->visited_urls.add(checksum);
return 0;
}
li_object *fb_add_page(li_object * o, li_environment * env)
{
file_bot->add_new_url(li_string::get(li_first(o,0),0)->value(), 0);
return 0;
}
void i4_main(w32 argc, i4_const_str * argv)
{
fb_app f;
file_bot=&f;
file_bot->run();
} |
import OOMP
newPart = OOMP.oompItem(8936)
newPart.addTag("oompType", "HEAD")
newPart.addTag("oompSize", "I01")
newPart.addTag("oompColor", "L")
newPart.addTag("oompDesc", "PI08")
newPart.addTag("oompIndex", "01")
OOMP.parts.append(newPart) |
jsonp({"cep":"15047157","logradouro":"Rua Edson Pupin","bairro":"Jardim Santo Ant\u00f4nio","cidade":"S\u00e3o Jos\u00e9 do Rio Preto","uf":"SP","estado":"S\u00e3o Paulo"}); |
jsonp({"cep":"32667404","logradouro":"Rua Sebasti\u00e3o Vital Martins","bairro":"Santa Cruz","cidade":"Betim","uf":"MG","estado":"Minas Gerais"}); |
jsonp({"cep":"20270902","logradouro":"Rua Vicente Lic\u00ednio","bairro":"Tijuca","cidade":"Rio de Janeiro","uf":"RJ","estado":"Rio de Janeiro"}); |
jsonp({"cep":"55642558","logradouro":"Rua Ant\u00f4nio Siqueira Campos","bairro":"Nossa Senhora das Gra\u00e7as","cidade":"Gravat\u00e1","uf":"PE","estado":"Pernambuco"}); |
jsonp({"cep":"89211468","logradouro":"Rua Silvino da Silva","bairro":"Floresta","cidade":"Joinville","uf":"SC","estado":"Santa Catarina"}); |
jsonp({"cep":"17502210","logradouro":"Rua Capit\u00e3o Adorcino de Oliveira Lyrio","bairro":"Senador Salgado Filho","cidade":"Mar\u00edlia","uf":"SP","estado":"S\u00e3o Paulo"}); |
jsonp({"cep":"69038101","logradouro":"Beco Pal\u00e1cio","bairro":"L\u00edrio do Vale","cidade":"Manaus","uf":"AM","estado":"Amazonas"}); |
jsonp({"cep":"40253830","logradouro":"Travessa S\u00e3o L\u00e1zaro de Brotas","bairro":"Cosme de Farias","cidade":"Salvador","uf":"BA","estado":"Bahia"}); |
layout: post
title: "Discover the history of Kew Gardens - 18 October 2019"
permalink: /archives/2019/10/kew-history-talk.html
commentfile: <API key>
category: around_town
date: 2019-10-17 00:00:00
image: "/assets/images/2019/kew-hist-talk-twick.jpg"
excerpt: |
Interested in learning about the history of the World Heritage Site Kew Gardens? Join us at Twickenham Library on Friday 18<sup>th</sup> October.
<a href="/assets/images/2019/kew-hist-talk-twick.jpg" title="Click for a larger image"><img src="/assets/images/2019/<API key>.jpg" width="250" alt="Image - kew-hist-talk-twick" class="photo right"/></a>
Interested in learning about the history of the World Heritage Site Kew Gardens? Join us at Twickenham Library on Friday 18<sup>th</sup> October.
Speaker Tom Edbrooke will host an illustrated talk covering the history of the Gardens from its original 9 acres to its present size. Expect to learn about the fascinating landscape architects who designed the Gardens and its buildings both past and present.
The event is free, and no booking is required. It starts at 11.00am and ends at 12.15pm.
Cllr John Coombs, Lead Member for Libraries and Culture, said:
> "This is a great opportunity to learn about the rich history of one of the most amazing botanical gardens in the world. There will be tea, cake and plenty of opportunity to chat!"
For more information, please contact [libraryvolunteer@richmond.gov.uk](mailto:libraryvolunteer@richmond.gov.uk)
<cite>-- from a Richmond Council press release - 17 October 2019</cite> |
<html>
<head>
<title>Ana Vinocur</title>
<meta name="Ana Vinocur" content="Etapa despelegada"/>
<link rel="shortcut icon" href="favicon.png" type="image/x-icon" />
<link rel="stylesheet" href="css/normalize.css">
<link href="css/reset.css" rel="stylesheet">
<link href="fonts/stylesheet.css" rel="stylesheet" />
<link href="Styles/<API key>.css" rel="stylesheet" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<link rel="stylesheet" href="css/pushy.css">
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.10.1.min.js"><\/script>')</script>
<!-- Modernizr -->
<link rel="stylesheet" href="font-awesome-4.3.0/css/font-awesome.min.css">
<link href="Styles/common.css" rel="stylesheet" />
<!--script src="etapas_desp_videolb/jquery.js" type="text/javascript"></script
<script src="etapas_desp_videolb/swfobject.js" type="text/javascript"></script>
<!-- End VideoLightBox.com HEAD section --></head>
<body>
<div id="cont-header">
<header id="encabezado">
<a href="index.html" ><img id="Logo" src="Header/Logo.png"/> </a>
</header>
</div>
<div id="container">
<div class="Etapa1">
<div class="Nombre">
<b>Ana Benkel de Vinocur</b>
<div id="btnVolver">
<a href="<API key>.html"> <img src="fotosAnaCollage/boton_volver.png"> </a>
</div>
</div>
<div id="ImagenPrincipal">
<img src="EtapaAnas/etapa1_imggrande.png">
</div>
<div id="FondoTexto" class="etapa1texto">
<div id="DescripcionImagen"><br><br><br>Ana y Enrique</div>
</div>
<div id="ImagenPequena" class="text-center">
<img id="foto" src="EtapaAnas/etapa1_circulo.png">
<div id="DivDescr">
<div id="Descr"> Los padres de Ana.</div>
</div>
</div>
<div id="Texto">
<b id="Titulo"></b>
<b class="hechos">Ana Benkel de Vinocur nació el 25 de setiembre de 1926 en Lodz, Polonia.
Su familia estaba compuesta por cinco personas:
su padre, Henoj Wolf Benkel,
su madre, Rivka Bocian,
su hermano mayor, Hersheck (Enrique), su hermanito menor, Leibush, y ella.
Era una familia feliz de judíos observantes de clase media.<br><br>
Tenía una voz privilegiada y le encantaba cantar como solista en el coro de la escuela y aprender a tocar el piano.
Lodz era una ciudad industrial, por eso en las vacaciones la familia viajaba en un carro tirado por caballos para descansar en el campo.
Ana disfrutaba del juego con los animales de granja, del aire puro y fresco, de la armonía familiar y de la libertad.
<br></b>
</div>
</div>
</div>
<div class="footer">
<footer class="info">
<img src="Header/footer-logo.png">
<div class="info-footer">
<span>info@proyectoshoa.org</span>
<a href="https:
<a href="https://twitter.com/proyectoshoa" target="_blank"><i class="fa fa-twitter twitter"></i> <span>proyectoshoa</span></a>
<a href="https:
</div>
</footer>
</div>
<script src="js/pushy.min.js"></script>
</body> |
jsonp({"cep":"08615285","logradouro":"Rua Francisco Carlos Moriconi","bairro":"Vila Nova Amorim","cidade":"Suzano","uf":"SP","estado":"S\u00e3o Paulo"}); |
layout: post
title: Command line system resource monitor
date: '2017-01-27T15:43:00.002-05:00'
author: umhau
tags:
- Linux
- htop
- CLI
categories: tools
modified_time: '2017-01-27T15:43:15.482-05:00'
blogger_id: tag:blogger.com,1999:<API key>.<API key>
blogger_orig_url: http://nixingaround.blogspot.com/2017/01/<API key>.html
Shows cpu usage, memory, swap. <br /><pre style="background-color: #eff0f1; border: 0px; margin-bottom: 1em; overflow: auto; padding: 5px; text-align: justify; width: auto; word-wrap: normal;"><span style="color: #333333;"><span style="font-size: 14px;">sudo apt-get install htop<br />htop</span></span></pre> |
jsonp({"cep":"13566000","logradouro":"Rua Jos\u00e9 de Alencar","bairro":"Vila Costa do Sol","cidade":"S\u00e3o Carlos","uf":"SP","estado":"S\u00e3o Paulo"}); |
jsonp({"cep":"89227045","logradouro":"Rua Iriri\u00fa","bairro":"Iriri\u00fa","cidade":"Joinville","uf":"SC","estado":"Santa Catarina"}); |
jsonp({"cep":"91540390","logradouro":"Rua T","bairro":"Agronomia","cidade":"Porto Alegre","uf":"RS","estado":"Rio Grande do Sul"}); |
<!DOCTYPE html>
<html>
<head>
<link rel="canonical" href="{{.Params.target}}"/>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<meta http-equiv="refresh" content="0;url={{.Params.target}}"/>
</head>
</html> |
jsonp({"cep":"44003570","logradouro":"Rua Alagoas","bairro":"Olhos D'\u00c1gua","cidade":"Feira de Santana","uf":"BA","estado":"Bahia"}); |
jsonp({"cep":"07056090","logradouro":"Rua S\u00e3o Gabriel","bairro":"Vila Renata","cidade":"Guarulhos","uf":"SP","estado":"S\u00e3o Paulo"}); |
{% extends "idea/idea-base.html" %}
{% load comments %}
{% load mptt_tags %}
{% block "content" %}
<div id="content" class="idea-single ic" role="main">
<div class="row">
<div class="logo span7 section project-title">
<a href="{% url 'idea:idea_list' %}">IdeaBox</a>
</div><!-- /logo -->
</div>
<section id="main" class="main-content">
<div class="idea-votes span">
<div class="count">{{voters|length}}</div>
<div class="phrase">Like{{voters|pluralize:",s"}}</div>
<div class="action">
{% load comments %}
{% if idea.state.name == 'Archive' %}
<span class="btn btn-archive">Archived</span>
{% elif support %}
<form action="{% url 'idea:upvote_idea' %}" method=POST>
{% csrf_token %}
<input type="hidden" name="idea_id" value="{{idea.id}}"/>
<input type="hidden" name="next" value="{% url 'idea:idea_detail' idea.id %}"/>
<input type="submit" class="btn btn-voted" value="Liked" id="vote_down"/>
</form>
{% else %}
<form action="{% url 'idea:upvote_idea' %}" method=POST>
{% csrf_token %}
<input type="hidden" name="idea_id" value="{{idea.id}}"/>
<input type="hidden" name="next" value="{% url 'idea:idea_detail' idea.id %}"/>
<input type="submit" class="btn btn-vote" value="Like" id="vote_up"/>
</form>
{% endif %}
</div><!-- /bitton -->
</div><!-- /idea-votes -->
<article class="single-idea-entry span">
<div class="row span9">
<div class="idea-title-wrap">
<header class="idea-title">
<h1>{{idea.title}}</h1>
</header>
{% if idea.banner %}
<span class="idea-banner">
Challenge:
<a href="{% url "idea:banner_detail" idea.banner.id %}">{{idea.banner.title}}</a>
</span>
{% endif %}
</div><!-- /idea-title-wrap -->
</div><!-- /row -->
<div class="row body">
<div class="idea-entry-content span9">
<h4 class="summary">Summary</h4><p>{{idea.summary|urlize|linebreaksbr}}</p>
<h4 class="detail">Detail</h4><p>{{idea.text|urlize|linebreaksbr}}</p>
Posted by
{% if idea.get_creator_profile %}
<span class="author"><a href="{{idea.get_creator_profile.get_absolute_url}}">{{idea.creator.first_name}} {{idea.creator.last_name}}</a></span>
{% else %}
<span class="author">{{idea.creator.first_name}} {{idea.creator.last_name}} </span>
{% endif %}
on {{idea.time|date:"M d, Y "}}
{% if idea.creator == request.user %}
<span class="edit">
<span class="edit-separator">|</span>
<a href="{% url "idea:edit_idea" idea.id %}">Edit my Idea</a>
</span>
{% endif %}
{% get_comment_list for idea.idea idea.id as comment_list %}
<div id="comments" class="comments">
<div class="comment-total">
<h4>{{comment_list|length}} Comments</h4>
</div><!-- /comment-total -->
<div class="comments-wrap">
<div class="comment-form">
{% get_comment_form for idea as comment_form %}
<form action="{% comment_form_target %}" method="POST">
<label class="comment-label" for="id_comment">Enter your Comments</label>
{%csrf_token%}
{{comment_form.comment}}
{{comment_form.content_type}}
{{comment_form.object_pk}}
{{comment_form.timestamp}}
{{comment_form.security_hash}}
<input type="hidden" name="parent" id="parent_id" value="" />
<input type="hidden" name = "next" value="{% url 'idea:idea_detail' idea.id %}" />
<input type="submit" class="btn right" value="Submit" id="id_submit" />
</form>
</div><!-- /comment-form -->
<ol class="comment-list">
{% recursetree comment_list %}
<li class="comment">
<article>
<footer class="comment-meta">
{% if idea.get_creator_profile %}
<p class="comment-author"><a href="{{node.user.get_profile.get_absolute_url}}">{{node.user_name}}</a><span class="comment-date"> on {{node.submit_date|date:"M d, Y g:i A"}}</span>
{% comment %} use parent_id if present, forces max comment depth of 2 {% endcomment %}
| <a href="#c{{ node.id }}" data-comment-id="{% if node.parent_id %}{{ node.parent_id }}{% else %}{{ node.id }}{% endif %}" class="comment_reply_link">Reply</a></p>
{% else %}
<p class="comment-author">{{node.user_name}}<span class="comment-date"> on {{node.submit_date|date:"M d, Y g:i A"}}</span>
{% comment %} use parent_id if present, forces max comment depth of 2 {% endcomment %}
| <a href="#c{{ node.id }}" data-comment-id="{% if node.parent_id %}{{ node.parent_id }}{% else %}{{ node.id }}{% endif %}" class="comment_reply_link">Reply</a></p>
{% endif %}
</footer><!-- /comment-meta -->
<div class="comment-content">
<p>{{node.comment|urlize|linebreaksbr}}</p>
</div><!-- /comment-content -->
{% if not node.is_leaf_node %}
<ol class="comment-list">
{{ children }}
</ol>
{% endif %}
</article>
</li>
{% endrecursetree %}
</ol><!-- /comments-list -->
</div><!-- /comments-wrap -->
</div><!-- /comments -->
</div><!-- /idea-entry-content -->
<div id="sidebar" class="sidebar span3" role="complementary">
<aside class="project-add-idea">
<a href="{% url 'idea:add_idea' %}" class="btn-huge">Submit an Idea</a>
</aside><!-- /project-add-idea -->
<aside class="voters">
<h3>Liked by</h3>
<ul>
{% for voter in voters|slice:'10' %}
{% if voter.profile %}
<li><a href="{{voter.profile.get_absolute_url}}">{{voter.first_name}} {{voter.last_name}}</a></li>
{% else %}
<li>{{voter.first_name}} {{voter.last_name}}</li>
{% endif %}
{% endfor %}
</ul>
{% if voters.count > 10 %}
<h4 ><a class="chevron-right" href="{% url 'idea:show_likes' idea.id %}">See all Likes</a></h4>
{% endif %}
</aside>
<aside class="tags">
<h3>Idea Tags</h3>
<ul>
{% for tag in tags %}
<li class="tag"><a class="tag_name" href="{{tag.tag_url}}">{{tag}}</a>
{% if tag.name in <API key> %}<a href="{% url "idea:remove_tag" idea.id tag.slug %}" class="tag_remove">x</a></li>{% endif %}
{% endfor %}
</ul>
<div class="ic-add-tags tags">
<form method="POST">
{% csrf_token %}
<div>
<label for="id_tags">Add tag (optional)</label>
{{ tag_form.tags }}
<input type="submit" value="Add" class="btn" id="work_tag_submit_btn"></input>
</div>
</form>
</div><!-- /ic-add-tags tags -->
</aside>
</div><!-- /sidebar /sidebar -->
</div>
</article><!-- /single-idea-entry -->
</section><!-- /main /main-content -->
</div><!-- /content -->
{% endblock %}
{% comment %}
Section js_ready calls search:model_tags_json, which is a collab
callback for autocomplete. This will not currently work without collab
{% endcomment %}
{% block "js_ready" %}
$(".tags_autocomplete").autocomplete({
source: "{% url "search:model_tags_json" "idea" %}",
});
{% endblock %} |
jsonp({"cep":"57072400","logradouro":"Rua Maria Jos\u00e9 das Chagas Camelo Silva","bairro":"Cidade Universit\u00e1ria","cidade":"Macei\u00f3","uf":"AL","estado":"Alagoas"}); |
jsonp({"cep":"13560970","logradouro":"Rua Episcopal","bairro":"Centro","cidade":"S\u00e3o Carlos","uf":"SP","estado":"S\u00e3o Paulo"}); |
jsonp({"cep":"19066370","logradouro":"Rua dos Expedicion\u00e1rios","bairro":"Jardim Everest","cidade":"Presidente Prudente","uf":"SP","estado":"S\u00e3o Paulo"}); |
jsonp({"cep":"29176436","logradouro":"Rua Sebasti\u00e3o Corr\u00eaa do Nascimento","bairro":"Ca\u00e7aroca","cidade":"Serra","uf":"ES","estado":"Esp\u00edrito Santo"}); |
jsonp({"cep":"07852010","logradouro":"Rua Herc\u00edlio Caetano Pereira","bairro":"Vila Martinho","cidade":"Franco da Rocha","uf":"SP","estado":"S\u00e3o Paulo"}); |
using UnityEngine;
using System.Collections;
public class DoorBehavior : MonoBehaviour {
public ParticleSystem <API key>;
public bool openBrokes = false;
public AudioClip doorOpen;
public AudioClip doorBroken;
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
}
public void Open()
{
if (openBrokes)
{
Break();
}
else
{
GetComponent<Animator>().SetTrigger("open");
var audioSrc = GetComponent<AudioSource>();
audioSrc.Stop();
audioSrc.clip = doorOpen;
audioSrc.Play();
}
}
public void Close()
{
GetComponent<Animator>().SetTrigger("close");
var audioSrc = GetComponent<AudioSource>();
audioSrc.Stop();
audioSrc.clip = doorOpen;
audioSrc.Play();
}
public void Break()
{
GetComponent<Animator>().SetTrigger("break");
var audioSrc = GetComponent<AudioSource>();
audioSrc.Stop();
audioSrc.clip = doorBroken;
audioSrc.Play();
if (<API key>!= null)
{
<API key>.Play();
}
}
} |
jsonp({"cep":"65053280","logradouro":"Parque das Bandeiras","bairro":"Forquilha","cidade":"S\u00e3o Lu\u00eds","uf":"MA","estado":"Maranh\u00e3o"}); |
jsonp({"cep":"74921317","logradouro":"Rua X 22","bairro":"Setor Tocantins","cidade":"Aparecida de Goi\u00e2nia","uf":"GO","estado":"Goi\u00e1s"}); |
jsonp({"cep":"09321439","logradouro":"Viela Caminho das Flores","bairro":"Jardim Zaira","cidade":"Mau\u00e1","uf":"SP","estado":"S\u00e3o Paulo"}); |
jsonp({"cep":"89239565","logradouro":"Servid\u00e3o Doze de Outubro","bairro":"Rio Bonito (Piraberaba)","cidade":"Joinville","uf":"SC","estado":"Santa Catarina"}); |
jsonp({"cep":"60350485","logradouro":"Avenida Sargento Herm\u00ednio Sampaio","bairro":"Ant\u00f4nio Bezerra","cidade":"Fortaleza","uf":"CE","estado":"Cear\u00e1"}); |
jsonp({"cep":"72853209","logradouro":"Quadra Quadra 209","bairro":"Parque Estrela Dalva IX","cidade":"Luzi\u00e2nia","uf":"GO","estado":"Goi\u00e1s"}); |
jsonp({"cep":"92020490","logradouro":"Rua Am\u00e9rica","bairro":"Marechal Rondon","cidade":"Canoas","uf":"RS","estado":"Rio Grande do Sul"}); |
jsonp({"cep":"02322162","logradouro":"Rua Alberto Soares da Silva","bairro":"Vila Dona Augusta","cidade":"S\u00e3o Paulo","uf":"SP","estado":"S\u00e3o Paulo"}); |
package main
import "fmt"
const MAX = 100
type Pile struct{
courant int
elements [MAX]int
}
main(){
} |
jsonp({"cep":"89066750","logradouro":"Rua Juru\u00e1","bairro":"Itoupavazinha","cidade":"Blumenau","uf":"SC","estado":"Santa Catarina"}); |
jsonp({"cep":"44075445","logradouro":"Avenida Maria Quit\u00e9ria","bairro":"Ponto Central","cidade":"Feira de Santana","uf":"BA","estado":"Bahia"}); |
.toolbar-header .title {
-webkit-app-region: drag;
} |
# blug-logo
For collaborating on logo for the Belfast Linux User Group |
jsonp({"cep":"23530806","logradouro":"Rua Jo\u00e3o Lara","bairro":"Sepetiba","cidade":"Rio de Janeiro","uf":"RJ","estado":"Rio de Janeiro"}); |
jsonp({"cep":"30660304","logradouro":"Rua Alcina Lima Drumond","bairro":"Diamante (Barreiro)","cidade":"Belo Horizonte","uf":"MG","estado":"Minas Gerais"}); |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.