repo_name
stringlengths
4
116
path
stringlengths
4
379
size
stringlengths
1
7
content
stringlengths
3
1.05M
license
stringclasses
15 values
lfreneda/cepdb
api/v1/06680656.jsonp.js
144
jsonp({"cep":"06680656","logradouro":"Rua Jos\u00e9 Alves","bairro":"Jardim Cruzeiro","cidade":"Itapevi","uf":"SP","estado":"S\u00e3o Paulo"});
cc0-1.0
lfreneda/cepdb
api/v1/45655640.jsonp.js
143
jsonp({"cep":"45655640","logradouro":"Caminho 7","bairro":"Nossa Senhora da Vit\u00f3ria","cidade":"Ilh\u00e9us","uf":"BA","estado":"Bahia"});
cc0-1.0
lfreneda/cepdb
api/v1/58046185.jsonp.js
178
jsonp({"cep":"58046185","logradouro":"Rua M\u00e1rio de Albuquerque Montenegro","bairro":"Altiplano Cabo Branco","cidade":"Jo\u00e3o Pessoa","uf":"PB","estado":"Para\u00edba"});
cc0-1.0
lfreneda/cepdb
api/v1/85902160.jsonp.js
132
jsonp({"cep":"85902160","logradouro":"Rua Formosa","bairro":"Jardim La Salle","cidade":"Toledo","uf":"PR","estado":"Paran\u00e1"});
cc0-1.0
lfreneda/cepdb
api/v1/65067874.jsonp.js
155
jsonp({"cep":"65067874","logradouro":"Rua Campo do Progresso","bairro":"Divin\u00e9ia","cidade":"S\u00e3o Lu\u00eds","uf":"MA","estado":"Maranh\u00e3o"});
cc0-1.0
lfreneda/cepdb
api/v1/02730030.jsonp.js
155
jsonp({"cep":"02730030","logradouro":"Rua Manuel de Arz\u00e3o","bairro":"Vila Albertina","cidade":"S\u00e3o Paulo","uf":"SP","estado":"S\u00e3o Paulo"});
cc0-1.0
lfreneda/cepdb
api/v1/75901904.jsonp.js
143
jsonp({"cep":"75901904","logradouro":"Rua Major Oscar Campos","bairro":"Setor Central","cidade":"Rio Verde","uf":"GO","estado":"Goi\u00e1s"});
cc0-1.0
lfreneda/cepdb
api/v1/13276065.jsonp.js
133
jsonp({"cep":"13276065","logradouro":"Rua Campinas","bairro":"Bela Vista","cidade":"Valinhos","uf":"SP","estado":"S\u00e3o Paulo"});
cc0-1.0
lfreneda/cepdb
api/v1/89030345.jsonp.js
134
jsonp({"cep":"89030345","logradouro":"Rua Arthur Haertel","bairro":"Salto","cidade":"Blumenau","uf":"SC","estado":"Santa Catarina"});
cc0-1.0
lfreneda/cepdb
api/v1/29141071.jsonp.js
145
jsonp({"cep":"29141071","logradouro":"Rua Luiz Guidini","bairro":"Alzira Ramos","cidade":"Cariacica","uf":"ES","estado":"Esp\u00edrito Santo"});
cc0-1.0
lfreneda/cepdb
api/v1/72820330.jsonp.js
161
jsonp({"cep":"72820330","logradouro":"Rua Ant\u00f4nio Rodrigues","bairro":"Parque Estrela Dalva II","cidade":"Luzi\u00e2nia","uf":"GO","estado":"Goi\u00e1s"});
cc0-1.0
lfreneda/cepdb
api/v1/70760542.jsonp.js
150
jsonp({"cep":"70760542","logradouro":"Quadra SEPN 514 Bloco B","bairro":"Asa Norte","cidade":"Bras\u00edlia","uf":"DF","estado":"Distrito Federal"});
cc0-1.0
lfreneda/cepdb
api/v1/04294110.jsonp.js
146
jsonp({"cep":"04294110","logradouro":"Rua Martinho Guedes","bairro":"Sa\u00fade","cidade":"S\u00e3o Paulo","uf":"SP","estado":"S\u00e3o Paulo"});
cc0-1.0
crendl/ilearnpython
05_edificato2.py
1142
import os.path filename=os.path.join("data","rncedificidefinitivo_.csv") data=open(filename,"r") print("Opening",filename) lines=data.readlines() data.close() print("Reading done.") print("Checking file...") line=1 uti=0 stato=("ottimo","buono","mediocre") ott=0 buo=0 med=0 n_a=0 for l in lines: if "Utilizzato" in l: #print("match!") uti+=1 other=True if "Ottimo" in l: ott+=1 other=False if "Mediocre" in l: med+=1 other=False if "Buono" in l: buo+=1 other=False if other: n_a+=1 # for s in stato: # if s not in l: #n_a+=1 #if "Ottimo" or "Mediocre" or "Buono" not in l: #n_a+=1 line+=1 print("Basta!") text="""I checked {} buildings. {} are in use. The percentage of properties in use is: {:.2f}%. Out of the used buildings, {} are in great shape, {} are in good shape and {} are mediocre. The respective percentages are {:.2f}%, {:.2f}% and {:.2f}%. {} of the buildings have no valuation.""".format(line,uti,uti/line*100,ott,buo,med,ott/uti*100,buo/uti*100,med/uti*100,n_a) print(text) file=open("05_edificato2.md","w") file.write(text) file.close()
cc0-1.0
courri/Cpp-Primer
ch10/ex10.20_21.cpp
1659
//! //! @author @Yue Wang @shbling @pezy @zzzkl //! @date 02.12.2014 //! //! Exercise 10.20: //! The library defines an algorithm named count_if. Like find_if, this function takes //! a pair of iterators denoting an input range and a predicate that it applies to each //! element in the given range. count_if returns a count of how often the predicate is //! true. Use count_if to rewrite the portion of our program that counted how many words //! are greater than length 6. //! //! Exercise 10.21: //! Write a lambda that captures a local int variable and decrements that variable until //! it reaches 0. Once the variable is 0 additional calls should no longer decrement the //! variable. The lambda should return a bool that indicates whether the captured variable is 0. //! #include <iostream> #include <string> #include <vector> #include <algorithm> using std::vector; using std::count_if; using std::string; //! Exercise 10.20 std::size_t bigerThan6(vector<string> const& v) { return count_if(v.cbegin(), v.cend(), [](string const& s){ return s.size() > 6; }); } int main() { //! ex10.20 vector<string> v{ "alan","moophy","1234567","1234567","1234567","1234567" }; std::cout << "ex10.20: " << bigerThan6(v) << std::endl; //! ex10.21 int i = 7; auto check_and_decrement = [&i]{ if(i){ --i; return false; } else return true; }; std::cout << "ex10.21: "; while(not check_and_decrement()) std::cout << i << " "; std::cout << std::endl; return 0; } //! output : //! //ex10.20: 4 //ex10.21: 6 5 4 3 2 1 0
cc0-1.0
davidmerfield/Blot
scripts/user/lookup-by-customer-id.js
502
var async = require("async"); var customerID = process.argv[2]; var User = require("user"); User.getAllIds(function (err, uids) { if (err) throw err; async.each( uids, function (uid, next) { User.getById(uid, function (err, user) { if ( user && user.subscription && user.subscription.customer === customerID ) { console.log("MATCH", user.email, user.blogs); } next(); }); }, process.exit ); });
cc0-1.0
PrTesla/GeneticDiversityJam
_Scripts/MainMenu.cs
271
using UnityEngine; using System.Collections; using UnityEngine.SceneManagement; public class MainMenu : MonoBehaviour { public void Play() { SceneManager.LoadScene("GameScene"); } public void Quit() { Application.Quit(); } }
cc0-1.0
lfreneda/cepdb
api/v1/03924260.jsonp.js
155
jsonp({"cep":"03924260","logradouro":"Rua dos Quichuas","bairro":"Jardim Dona Sinh\u00e1","cidade":"S\u00e3o Paulo","uf":"SP","estado":"S\u00e3o Paulo"});
cc0-1.0
lfreneda/cepdb
api/v1/05592050.jsonp.js
188
jsonp({"cep":"05592050","logradouro":"Pra\u00e7a Ant\u00f4nio Manoel do Esp\u00edrito Santo","bairro":"Jardim Bonfiglioli","cidade":"S\u00e3o Paulo","uf":"SP","estado":"S\u00e3o Paulo"});
cc0-1.0
lfreneda/cepdb
api/v1/89201970.jsonp.js
137
jsonp({"cep":"89201970","logradouro":"Rua Princesa Izabel","bairro":"Centro","cidade":"Joinville","uf":"SC","estado":"Santa Catarina"});
cc0-1.0
lfreneda/cepdb
api/v1/18047610.jsonp.js
147
jsonp({"cep":"18047610","logradouro":"Rua Alda Luchini Vial","bairro":"Parque Campolim","cidade":"Sorocaba","uf":"SP","estado":"S\u00e3o Paulo"});
cc0-1.0
lfreneda/cepdb
api/v1/24921055.jsonp.js
163
jsonp({"cep":"24921055","logradouro":"Avenida G","bairro":"Balne\u00e1rio Bambu\u00ed (Ponta Negra)","cidade":"Maric\u00e1","uf":"RJ","estado":"Rio de Janeiro"});
cc0-1.0
lfreneda/cepdb
api/v1/98025540.jsonp.js
148
jsonp({"cep":"98025540","logradouro":"Avenida Sete de Setembro","bairro":"Schettert","cidade":"Cruz Alta","uf":"RS","estado":"Rio Grande do Sul"});
cc0-1.0
lfreneda/cepdb
api/v1/18086000.jsonp.js
173
jsonp({"cep":"18086000","logradouro":"Avenida Comendador Camillo J\u00falio","bairro":"Jardim Ibiti do Pa\u00e7o","cidade":"Sorocaba","uf":"SP","estado":"S\u00e3o Paulo"});
cc0-1.0
mamedev/www.mamedev.org
roms/robby/index.php
2672
<?php $title = 'MAME | Robby Roto (Bally/Midway, 1981)'; ?> <?php require($_SERVER['DOCUMENT_ROOT'] . '/_include/html/header.html'); ?> <!-- Page Content --> <div class="container"> <h1 class="page-header" style="text-align: center">Robby Roto (Bally/Midway, 1981)</h1> <p> Thanks to the kind generosity of Jamie Fenton, the original ROM images for <b>Robby Roto</b> have been made available for free, non-commercial use. </p> <p> Before downloading, you must acknowledge that you understand these images are to be used only for non-commercial purposes. Do this by checking the box below the download button. </p> <script language="JavaScript" type="text/javascript"> function isChecked() { if (document.agreeform.agree.checked == false) { alert("Before downloading, you must acknowledge that you understand these images are to be used only for non-commercial purposes. Do this by checking the box below the download button."); return false; } return true; } </script> <center> <div class="btn btn-success"> <h4><a href="robby.zip" onclick="return isChecked();" title="Download now" class="btn-success">Download the Robby Roto ROM images</a></h4> <form name="agreeform" action="#"> <input type="checkbox" name="agree" /> <label for="agree">I understand that these ROM images are for non-commercial use only</label> </form> </div> </center> <h2>Description</h2> <p> <b>Robby Roto</b> is a game that Bally/Midway originally released on its Astrocade-based hardware back in 1981. Other games that ran on this hardware include <b>Gorf</b>, <b>Wizard of Wor</b>, and <b>Professor Pac-Man</b>. The author of <b>Robby Roto</b> is <a href="http://www.fentonia.com/bio/" target="blank"> Jamie Fenton</a>, who acquired the rights to the game after it did not do well in the marketplace. </p> <p> Approximately 2,000 units were produced. </p> <div> <h2>Screenshots</h2> <img src="robb0000.png" width="320" height="240" alt="Bally/Midway Robby Roto Screenshot" /> <img src="robb0001.png" width="320" height="240" alt="Bally/Midway Robby Roto Screenshot" /> <img src="robb0002.png" width="320" height="240" alt="Bally/Midway Robby Roto Screenshot" /> <img src="robb0003.png" width="320" height="240" alt="Bally/Midway Robby Roto Screenshot" /> <img src="robb0004.png" width="320" height="240" alt="Bally/Midway Robby Roto Screenshot" /> </div> <h2>Additional Images</h2> <img src="robby-cabinet.jpg" width="300" height="615" alt="Bally/Midway Robby Roto Cabinet" /> <br/> <br/> </div> <!-- /.container --> <?php require($_SERVER['DOCUMENT_ROOT'] . '/_include/html/footer.html'); ?>
cc0-1.0
lfreneda/cepdb
api/v1/17505260.jsonp.js
171
jsonp({"cep":"17505260","logradouro":"Rua Ferr\u00facio Aldebrando de Muzzi","bairro":"Jardim Am\u00e9rica","cidade":"Mar\u00edlia","uf":"SP","estado":"S\u00e3o Paulo"});
cc0-1.0
lfreneda/cepdb
api/v1/04551910.jsonp.js
145
jsonp({"cep":"04551910","logradouro":"Rua Funchal","bairro":"Vila Ol\u00edmpia","cidade":"S\u00e3o Paulo","uf":"SP","estado":"S\u00e3o Paulo"});
cc0-1.0
lfreneda/cepdb
api/v1/13320320.jsonp.js
158
jsonp({"cep":"13320320","logradouro":"Rua Doutor Euclides Carvalho Nogueira","bairro":"Vila Teixeira","cidade":"Salto","uf":"SP","estado":"S\u00e3o Paulo"});
cc0-1.0
lfreneda/cepdb
api/v1/50070330.jsonp.js
132
jsonp({"cep":"50070330","logradouro":"Rua Marques Amorim","bairro":"Boa Vista","cidade":"Recife","uf":"PE","estado":"Pernambuco"});
cc0-1.0
lfreneda/cepdb
api/v1/39401203.jsonp.js
140
jsonp({"cep":"39401203","logradouro":"Beco das Araras","bairro":"Santos Reis","cidade":"Montes Claros","uf":"MG","estado":"Minas Gerais"});
cc0-1.0
lfreneda/cepdb
api/v1/72910145.jsonp.js
177
jsonp({"cep":"72910145","logradouro":"Quadra 37 Conjunto A","bairro":"Parque da Barragem Setor 02","cidade":"\u00c1guas Lindas de Goi\u00e1s","uf":"GO","estado":"Goi\u00e1s"});
cc0-1.0
lfreneda/cepdb
api/v1/79902390.jsonp.js
162
jsonp({"cep":"79902390","logradouro":"Rua Iturama","bairro":"Residencial Ponta Por\u00e3 I","cidade":"Ponta Por\u00e3","uf":"MS","estado":"Mato Grosso do Sul"});
cc0-1.0
lfreneda/cepdb
api/v1/45065355.jsonp.js
138
jsonp({"cep":"45065355","logradouro":"Rua E","bairro":"Patag\u00f4nia","cidade":"Vit\u00f3ria da Conquista","uf":"BA","estado":"Bahia"});
cc0-1.0
noracami/fb-post-counts
mysite/pages/models.py
1500
from django.conf import settings from django.db import models from django.core.urlresolvers import reverse # Create your models here. class User(models.Model): """docstring for User""" class Meta: verbose_name = "使用者" account = models.CharField("帳號", max_length=30) name = models.CharField("名稱", max_length=20) def __str__(self): return "%s(%s)" % (self.account, self.name) class PageItem(models.Model): """docstring for Page""" class Meta: verbose_name = "Facebook 專頁" creator = models.ForeignKey( settings.AUTH_USER_MODEL, null=True, related_name='created_page_items', ) name = models.CharField("名稱", max_length=20) fb_id = models.BigIntegerField("Facebook 專頁編號") add_time = models.DateTimeField("加入時間", auto_now_add=True, editable=False) last_access_time = models.DateTimeField("上次存取時間", auto_now=True) last_like_count = models.IntegerField("上次粉絲人數") picture_url = models.CharField("大頭貼", max_length=250) notes = models.TextField("備註", blank=True, default="") def __str__(self): return self.name def get_absolute_url(self): return reverse('page_item_detail', kwargs={'pk': self.pk}) def can_user_delete(self, user): if not self.creator or self.creator == user: return True if user.has_perm('pages.page_item_delete'): return True return False
cc0-1.0
lfreneda/cepdb
api/v1/18053082.jsonp.js
189
jsonp({"cep":"18053082","logradouro":"Rua Francisco Ruiz Rodrigues","bairro":"Conjunto Habitacional J\u00falio de Mesquita Filho","cidade":"Sorocaba","uf":"SP","estado":"S\u00e3o Paulo"});
cc0-1.0
lfreneda/cepdb
api/v1/14802468.jsonp.js
135
jsonp({"cep":"14802468","logradouro":"Avenida E","bairro":"Vila Girassol","cidade":"Araraquara","uf":"SP","estado":"S\u00e3o Paulo"});
cc0-1.0
rialso/music-playback
web/languages/offline/es_ES.js
1672
var es_ES_mln = { es_ES: { pb: { "¿Qué es una licencia digital?": "¿Qué es una licencia digital?", "Disponible en todos tus dispositivos": "Disponible en todos tus dispositivos", "Puedes acceder a tu libro digital desde cualquier navegador web o a través de nuestras aplicaciones.": "Puedes acceder a tu libro digital desde cualquier navegador web o a través de nuestras aplicaciones.", "EduBook se adapta a la realidad de cada aula": "EduBook se adapta a la realidad de cada aula", "Descubre cómo enseñar con los mejores contenidos desde un entorno digital y adaptarlos al proceso de aprendizaje de cada alumno.": "Descubre cómo enseñar con los mejores contenidos desde un entorno digital y adaptarlos al proceso de aprendizaje de cada alumno.", "EduBook, el entorno digital de Vicens Vives": "EduBook, el entorno digital de Vicens Vives", "Un espacio donde aprender y enseñar con los mejores contenidos educativos y la ayuda de las TIC": "Un espacio donde aprender y enseñar con los mejores contenidos educativos y la ayuda de las TIC", "Introduce tu código de licencia": "Introduce tu código de licencia", "/es/licencia-digital": "/es/licencia-digital", "¿Aún no tienes una licencia?": "¿Aún no tienes una licencia?", "¿Qué es Edubook?": "¿Qué es Edubook?", "Descubre el entorno digital de Vicens Vives": "Descubre el entorno digital de Vicens Vives", "Mil centros educativos y más de 50.000 alumnos ya utilizan EduBook diariamente.": "Mil centros educativos y más de 50.000 alumnos ya utilizan EduBook diariamente.", "¿Por qué elegir EduBook?": "¿Por qué elegir EduBook?" } }};
cc0-1.0
lfreneda/cepdb
api/v1/33110050.jsonp.js
167
jsonp({"cep":"33110050","logradouro":"Rua Edmundo Galles","bairro":"Conjunto Cristina (S\u00e3o Benedito)","cidade":"Santa Luzia","uf":"MG","estado":"Minas Gerais"});
cc0-1.0
LAMakerspce/Economics
FoodDiversity2.py
3574
import csv import math import collections from collections import Counter # EntFunc calculates the Shannon index for the diversity of venues in a given zip code. def EntFunc(list,list2): k = 0 Entropy = 0 for k in range(0, len(BusinessName)): if BusinessName[k] != BusinessName[k - 1]: p = float(BusinessName.count(BusinessName[k])) / float(len(BusinessName)) Entropy = -1.0 * math.log(p) * p + Entropy k = k + 1 if Entropy != 0: NormalizedEntropy=Entropy/math.log(k) data=zip[j],k,Entropy,NormalizedEntropy print data wr.writerow(data) #Take in data from ESRI business lists by zip code. #The entry matrix takes in values by zip code then the business name within the zip code. #The BusinessName list is there simply to take in business names and determine how often unique values repeat for diversity calculations. FilePrefix='SIC5812' ReadFile = '{FilePrefix}.csv'.format(FilePrefix=FilePrefix) inf = csv.reader(open(ReadFile, "rU")) i = 0 entry=[[],[]] BusinessName=[] #Store zip and business name data from ESRI file. for row in inf: i = i + 1 if i > 1: entry[0].append(long(row[6])) entry[1].append(row[1]) #Sort the zip code values by zip code. zip = sorted(list(set(entry[0])),key=float) #Read in food desert data which contains both zip and ZCTA values. zipfile = 'CAFoodDesertZip.csv' zipreader = csv.reader(open(zipfile, "rU")) i=0 zipentry = [[],[],[],[],[]] for row in zipreader: i=i+1 if i>1: zipentry[0].append(long(row[0])) zipentry[1].append(long(row[1])) zipentry[2].append(int(row[2])) zipentry[3].append(int(row[3])) zipentry[4].append(int(row[4])) #Sort all stored information by zip code. #Output business diversity by zip code. j=0 entry.sort(key=lambda x: x[0]) WriteFile='{FilePrefix}output.csv'.format(FilePrefix=FilePrefix) fileWriter = open(WriteFile,'wb') wr = csv.writer(fileWriter) label=["Zip code","Number of businesses","Shannon index of businesses in zip code","Normalized entropy"] wr.writerow(label) for i in range(0,len(entry[0])): if entry[0][i] == zip[j]: BusinessName.append(entry[1][i]) else: EntFunc(BusinessName,zip[j]) j=j+1 BusinessName=[] fileWriter.close() ReadFile2='{FilePrefix}output.csv'.format(FilePrefix=FilePrefix) inf2 = csv.reader(open(ReadFile2, "rU")) i=0 entropyentry = [[],[],[],[]] for row in inf2: i=i+1 if i>1: entropyentry[0].append(long(row[0])) entropyentry[1].append(int(row[1])) entropyentry[2].append(float(row[2])) entropyentry[3].append(float(row[3])) WriteFile2='{FilePrefix}ZipAndEntropy.csv'.format(FilePrefix=FilePrefix) fileWriter2=open(WriteFile2,'wb') wr2 = csv.writer(fileWriter2) label=["Zip code","ZCTA","Number of businesses in zip code","Shannon index of businesses in zip code","Normalized entropy","LILATracts_1And10: Low income and low access measured at 1 and 10 miles","LILATracts_halfAnd10: Low income and low access measured at 1/2 and 10 miles","LILATracts_1And20: Low income and low access measured at 1 and 20 miles"] wr2.writerow(label) for i in range(0,len(entropyentry[0])): match = sorted([x for x,val in enumerate(zipentry[0]) if val == entropyentry[0][i]]) for j in range(0,len(match)): data2 = zipentry[0][match[j]],zipentry[1][match[j]],entropyentry[1][i],entropyentry[2][i],entropyentry[3][i],zipentry[2][match[j]],zipentry[3][match[j]],zipentry[4][match[j]] print data2 wr2.writerow(data2)
cc0-1.0
lfreneda/cepdb
api/v1/11668050.jsonp.js
162
jsonp({"cep":"11668050","logradouro":"Rua Janu\u00e1rio Paulino Ferreira","bairro":"Jaragu\u00e1","cidade":"Caraguatatuba","uf":"SP","estado":"S\u00e3o Paulo"});
cc0-1.0
lfreneda/cepdb
api/v1/68702090.jsonp.js
151
jsonp({"cep":"68702090","logradouro":"Avenida Senador Jarbas Passarinho","bairro":"Areia Branca","cidade":"Capanema","uf":"PA","estado":"Par\u00e1"});
cc0-1.0
lfreneda/cepdb
api/v1/05159230.jsonp.js
161
jsonp({"cep":"05159230","logradouro":"Rua Francisco Beltr\u00e3o","bairro":"Jardim Vista Linda","cidade":"S\u00e3o Paulo","uf":"SP","estado":"S\u00e3o Paulo"});
cc0-1.0
lfreneda/cepdb
api/v1/05174100.jsonp.js
151
jsonp({"cep":"05174100","logradouro":"Rua Padre Marcigaglia","bairro":"Jardim Regina","cidade":"S\u00e3o Paulo","uf":"SP","estado":"S\u00e3o Paulo"});
cc0-1.0
lfreneda/cepdb
api/v1/12903374.jsonp.js
145
jsonp({"cep":"12903374","logradouro":"Rua Fortaleza","bairro":"Jardins","cidade":"Bragan\u00e7a Paulista","uf":"SP","estado":"S\u00e3o Paulo"});
cc0-1.0
lfreneda/cepdb
api/v1/40300065.jsonp.js
132
jsonp({"cep":"40300065","logradouro":"Avenida Cabral","bairro":"Baixa de Quintas","cidade":"Salvador","uf":"BA","estado":"Bahia"});
cc0-1.0
lfreneda/cepdb
api/v1/21850050.jsonp.js
149
jsonp({"cep":"21850050","logradouro":"Rua Maria C\u00e9lia Correa","bairro":"Bangu","cidade":"Rio de Janeiro","uf":"RJ","estado":"Rio de Janeiro"});
cc0-1.0
enarod/enarod-web-api
Infopulse.EDemocracy.Web/Migrations/Configuration.cs
1038
namespace Infopulse.EDemocracy.Web.Migrations { using System; using System.Data.Entity; using System.Data.Entity.Migrations; using System.Linq; internal sealed class Configuration : DbMigrationsConfiguration<Infopulse.EDemocracy.Web.Auth.AuthContext> { public Configuration() { AutomaticMigrationsEnabled = false; } protected override void Seed(Infopulse.EDemocracy.Web.Auth.AuthContext context) { // This method will be called after migrating to the latest version. // You can use the DbSet<T>.AddOrUpdate() helper extension method // to avoid creating duplicate seed data. E.g. // // context.People.AddOrUpdate( // p => p.FullName, // new Person { FullName = "Andrew Peters" }, // new Person { FullName = "Brice Lambson" }, // new Person { FullName = "Rowan Miller" } // ); // } } }
cc0-1.0
lfreneda/cepdb
api/v1/02208110.jsonp.js
141
jsonp({"cep":"02208110","logradouro":"Rua Canobim","bairro":"Vila Medeiros","cidade":"S\u00e3o Paulo","uf":"SP","estado":"S\u00e3o Paulo"});
cc0-1.0
lfreneda/cepdb
api/v1/25045130.jsonp.js
148
jsonp({"cep":"25045130","logradouro":"Rua Cajati","bairro":"Jardim das Oliveiras","cidade":"Duque de Caxias","uf":"RJ","estado":"Rio de Janeiro"});
cc0-1.0
lfreneda/cepdb
api/v1/79840320.jsonp.js
176
jsonp({"cep":"79840320","logradouro":"Rua S\u00e3o Gon\u00e7alo","bairro":"Conjunto Habitacional Izidro Pedroso","cidade":"Dourados","uf":"MS","estado":"Mato Grosso do Sul"});
cc0-1.0
lfreneda/cepdb
api/v1/65052020.jsonp.js
155
jsonp({"cep":"65052020","logradouro":"Residencial Samambaias","bairro":"COHAB Anil IV","cidade":"S\u00e3o Lu\u00eds","uf":"MA","estado":"Maranh\u00e3o"});
cc0-1.0
lfreneda/cepdb
api/v1/32010170.jsonp.js
138
jsonp({"cep":"32010170","logradouro":"Rua Geraldo Augusto","bairro":"Bela Vista","cidade":"Contagem","uf":"MG","estado":"Minas Gerais"});
cc0-1.0
lfreneda/cepdb
api/v1/66815451.jsonp.js
139
jsonp({"cep":"66815451","logradouro":"Quadra Um","bairro":"Maracacuera (Icoaraci)","cidade":"Bel\u00e9m","uf":"PA","estado":"Par\u00e1"});
cc0-1.0
lfreneda/cepdb
api/v1/72853232.jsonp.js
152
jsonp({"cep":"72853232","logradouro":"Quadra Quadra 232","bairro":"Parque Estrela Dalva IX","cidade":"Luzi\u00e2nia","uf":"GO","estado":"Goi\u00e1s"});
cc0-1.0
tunapanda/TI-wp-content-theme
header.php
1559
<!DOCTYPE html> <html> <head> <?php wp_head(); ?> <script> THEME_URI='<?php echo get_template_directory_uri(); ?>'; </script> <meta name="viewport" content="width=device-width"> <link rel="shortcut icon" href="<?php echo get_template_directory_uri(); ?>/img/icons/tunapanda.ico" /> <link rel="apple-touch-icon" href="<?php echo get_template_directory_uri(); ?>/img/icons/apple-touch-icon-57x57-precomposed.png" /> <link rel="apple-touch-icon" sizes="72x72" href="<?php echo get_template_directory_uri(); ?>/img/icons/apple-touch-icon-72x72-precomposed.png" /> <link rel="apple-touch-icon" sizes="114x114" href="<?php echo get_template_directory_uri(); ?>/img/icons/apple-touch-icon-114x114-precomposed.png" /> <meta name="application-name" content="Tunapanda Institute"/> <meta name="msapplication-TileColor" content="#ffffff"/> <meta name="msapplication-TileImage" content="<?php echo get_template_directory_uri(); ?>/img/icons/ms-icon-144x144.png"/> </head> <body <?php body_class(); ?>> <div id="header"> <a href="<?php echo site_url(); ?>"> <img id="header-logo" src="<?php echo get_template_directory_uri(); ?>/img/cropped-tunapandalogo.png" alt="Tunapanda Logo" /> </a> <h1><?php echo get_bloginfo("sitename"); ?></h1> <div class="tagline"><?php echo get_bloginfo("description"); ?></div> <div class="menu"> <?php wp_nav_menu(array( 'menu_class' => 'nav-menu', 'theme_location' => 'navigation', )); ?> </div> </div> <div id="content">
cc0-1.0
lfreneda/cepdb
api/v1/57084345.jsonp.js
130
jsonp({"cep":"57084345","logradouro":"Rua B-38","bairro":"Benedito Bentes","cidade":"Macei\u00f3","uf":"AL","estado":"Alagoas"});
cc0-1.0
robertsdionne/dcpu
binary_exclusive_or_test.go
385
package dcpu import ( "testing" "github.com/stretchr/testify/assert" ) func TestExecuteInstructions_binaryExclusiveOrRegisterWithSmallLiteral(t *testing.T) { dcpu := DCPU{} dcpu.Load(0, []uint16{ Basic(Set, RegisterA, Literal), 0xf0f0, Basic(BinaryExclusiveOr, RegisterA, Literal), 0x00ff, }) dcpu.ExecuteInstructions(2) assert.EqualValues(t, 0xf00f, dcpu.RegisterA) }
cc0-1.0
lfreneda/cepdb
api/v1/13187147.jsonp.js
170
jsonp({"cep":"13187147","logradouro":"Rua Boca de Le\u00e3o","bairro":"Jardim S\u00e3o Sebasti\u00e3o","cidade":"Hortol\u00e2ndia","uf":"SP","estado":"S\u00e3o Paulo"});
cc0-1.0
lfreneda/cepdb
api/v1/59139340.jsonp.js
139
jsonp({"cep":"59139340","logradouro":"Avenida Medellin","bairro":"Lagoa Azul","cidade":"Natal","uf":"RN","estado":"Rio Grande do Norte"});
cc0-1.0
lfreneda/cepdb
api/v1/73031050.jsonp.js
166
jsonp({"cep":"73031050","logradouro":"Quadra Quadra 3 Com\u00e9rcio Local 19","bairro":"Sobradinho","cidade":"Bras\u00edlia","uf":"DF","estado":"Distrito Federal"});
cc0-1.0
lfreneda/cepdb
api/v1/68630620.jsonp.js
152
jsonp({"cep":"68630620","logradouro":"Rua Francisco da Silva Xavier","bairro":"Nagib Demachki","cidade":"Paragominas","uf":"PA","estado":"Par\u00e1"});
cc0-1.0
lfreneda/cepdb
api/v1/74470526.jsonp.js
143
jsonp({"cep":"74470526","logradouro":"Rua SV 17","bairro":"Residencial Solar Ville","cidade":"Goi\u00e2nia","uf":"GO","estado":"Goi\u00e1s"});
cc0-1.0
lfreneda/cepdb
api/v1/61600690.jsonp.js
125
jsonp({"cep":"61600690","logradouro":"Rua Santa Rosa","bairro":"Grilo","cidade":"Caucaia","uf":"CE","estado":"Cear\u00e1"});
cc0-1.0
lfreneda/cepdb
api/v1/38706327.jsonp.js
148
jsonp({"cep":"38706327","logradouro":"Rua Elisa Rodrigues Lucas","bairro":"Planalto","cidade":"Patos de Minas","uf":"MG","estado":"Minas Gerais"});
cc0-1.0
lfreneda/cepdb
api/v1/94495250.jsonp.js
152
jsonp({"cep":"94495250","logradouro":"Rua Criciumal","bairro":"Parque \u00cdndio Jari","cidade":"Viam\u00e3o","uf":"RS","estado":"Rio Grande do Sul"});
cc0-1.0
lfreneda/cepdb
api/v1/97501717.jsonp.js
143
jsonp({"cep":"97501717","logradouro":"Rua General Canabarro","bairro":"Centro","cidade":"Uruguaiana","uf":"RS","estado":"Rio Grande do Sul"});
cc0-1.0
edulima1989/Sistema-Radiotaxi
cache/backend/prod/modules/autoCodigo/templates/_list_th_tabular.php
1681
<?php slot('sf_admin.current_header') ?> <th class="sf_admin_text sf_admin_list_th_numero"> <?php if ('numero' == $sort[0]): ?> <?php echo link_to(__('N° de Código', array(), 'messages'), '@codigo', array('query_string' => 'sort=numero&sort_type='.($sort[1] == 'asc' ? 'desc' : 'asc'))) ?> <?php echo image_tag(sfConfig::get('sf_admin_module_web_dir').'/images/'.$sort[1].'.png', array('alt' => __($sort[1], array(), 'sf_admin'), 'title' => __($sort[1], array(), 'sf_admin'))) ?> <?php else: ?> <?php echo link_to(__('N° de Código', array(), 'messages'), '@codigo', array('query_string' => 'sort=numero&sort_type=asc')) ?> <?php endif; ?> </th> <?php end_slot(); ?> <?php include_slot('sf_admin.current_header') ?><?php slot('sf_admin.current_header') ?> <th class="sf_admin_text sf_admin_list_th_cliente"> <?php echo __('Cliente', array(), 'messages') ?> </th> <?php end_slot(); ?> <?php include_slot('sf_admin.current_header') ?><?php slot('sf_admin.current_header') ?> <th class="sf_admin_foreignkey sf_admin_list_th_barrio"> <?php if ('barrio' == $sort[0]): ?> <?php echo link_to(__('Barrio', array(), 'messages'), '@codigo', array('query_string' => 'sort=barrio&sort_type='.($sort[1] == 'asc' ? 'desc' : 'asc'))) ?> <?php echo image_tag(sfConfig::get('sf_admin_module_web_dir').'/images/'.$sort[1].'.png', array('alt' => __($sort[1], array(), 'sf_admin'), 'title' => __($sort[1], array(), 'sf_admin'))) ?> <?php else: ?> <?php echo link_to(__('Barrio', array(), 'messages'), '@codigo', array('query_string' => 'sort=barrio&sort_type=asc')) ?> <?php endif; ?> </th> <?php end_slot(); ?> <?php include_slot('sf_admin.current_header') ?>
cc0-1.0
lfreneda/cepdb
api/v1/25953060.jsonp.js
148
jsonp({"cep":"25953060","logradouro":"Rua Manuel Madruga","bairro":"V\u00e1rzea","cidade":"Teres\u00f3polis","uf":"RJ","estado":"Rio de Janeiro"});
cc0-1.0
lfreneda/cepdb
api/v1/12443770.jsonp.js
188
jsonp({"cep":"12443770","logradouro":"Rua George Washington","bairro":"Conjunto Habitacional Terra dos Ip\u00eas I (Sul)","cidade":"Pindamonhangaba","uf":"SP","estado":"S\u00e3o Paulo"});
cc0-1.0
lfreneda/cepdb
api/v1/29475000.jsonp.js
97
jsonp({"cep":"29475000","cidade":"Alto Cal\u00e7ado","uf":"ES","estado":"Esp\u00edrito Santo"});
cc0-1.0
lfreneda/cepdb
api/v1/72855303.jsonp.js
150
jsonp({"cep":"72855303","logradouro":"Quadra Quadra 3","bairro":"Parque Residencial Faro","cidade":"Luzi\u00e2nia","uf":"GO","estado":"Goi\u00e1s"});
cc0-1.0
lfreneda/cepdb
api/v1/35661612.jsonp.js
160
jsonp({"cep":"35661612","logradouro":"Rua Sidmar Almeida Mendon\u00e7a","bairro":"Belvedere","cidade":"Par\u00e1 de Minas","uf":"MG","estado":"Minas Gerais"});
cc0-1.0
lfreneda/cepdb
api/v1/21840524.jsonp.js
148
jsonp({"cep":"21840524","logradouro":"Travessa Cosme Dami\u00e3o","bairro":"Bangu","cidade":"Rio de Janeiro","uf":"RJ","estado":"Rio de Janeiro"});
cc0-1.0
lfreneda/cepdb
api/v1/93348000.jsonp.js
144
jsonp({"cep":"93348000","logradouro":"Rodovia BR-116","bairro":"Rinc\u00e3o","cidade":"Novo Hamburgo","uf":"RS","estado":"Rio Grande do Sul"});
cc0-1.0
jamhgit/pesc-transcript-jar
pesccoltrn/src/main/java/org/pesc/sector/admissionsrecord/v1_3/TransmissionOrganizationType.java
13841
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2016.02.25 at 04:54:23 PM PST // package org.pesc.sector.admissionsrecord.v1_3; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import org.pesc.core.coremain.v1_14.ContactsType; import org.pesc.core.coremain.v1_14.LocalOrganizationIDType; /** * <p>Java class for TransmissionOrganizationType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;complexType name="TransmissionOrganizationType"> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;group ref="{urn:org:pesc:core:CoreMain:v1.14.0}OrganizationIDMultiChoiceGroup"/> * &lt;element name="LocalOrganizationID" type="{urn:org:pesc:core:CoreMain:v1.14.0}LocalOrganizationIDType" minOccurs="0"/> * &lt;element name="OrganizationName" type="{urn:org:pesc:core:CoreMain:v1.14.0}OrganizationNameType" maxOccurs="unbounded" minOccurs="0"/> * &lt;element name="Contacts" type="{urn:org:pesc:core:CoreMain:v1.14.0}ContactsType" maxOccurs="unbounded" minOccurs="0"/> * &lt;element name="NoteMessage" type="{urn:org:pesc:core:CoreMain:v1.14.0}NoteMessageType" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TransmissionOrganizationType", propOrder = { "opeid", "nchelpid", "ipeds", "atp", "fice", "act", "ccd", "pss", "ceebact", "csis", "usis", "esis", "psis", "duns", "mutuallyDefined", "apas", "localOrganizationID", "organizationName", "contacts", "noteMessage" }) public class TransmissionOrganizationType { @XmlElement(name = "OPEID") protected String opeid; @XmlElement(name = "NCHELPID") protected String nchelpid; @XmlElement(name = "IPEDS") protected String ipeds; @XmlElement(name = "ATP") protected String atp; @XmlElement(name = "FICE") protected String fice; @XmlElement(name = "ACT") protected String act; @XmlElement(name = "CCD") protected String ccd; @XmlElement(name = "PSS") protected String pss; @XmlElement(name = "CEEBACT") protected String ceebact; @XmlElement(name = "CSIS") protected String csis; @XmlElement(name = "USIS") protected String usis; @XmlElement(name = "ESIS") protected String esis; @XmlElement(name = "PSIS") protected String psis; @XmlElement(name = "DUNS") protected String duns; @XmlElement(name = "MutuallyDefined") protected String mutuallyDefined; @XmlElement(name = "APAS") protected String apas; @XmlElement(name = "LocalOrganizationID") protected LocalOrganizationIDType localOrganizationID; @XmlElement(name = "OrganizationName") protected List<String> organizationName; @XmlElement(name = "Contacts") protected List<ContactsType> contacts; @XmlElement(name = "NoteMessage") protected List<String> noteMessage; /** * Gets the value of the opeid property. * * @return * possible object is * {@link String } * */ public String getOPEID() { return opeid; } /** * Sets the value of the opeid property. * * @param value * allowed object is * {@link String } * */ public void setOPEID(String value) { this.opeid = value; } /** * Gets the value of the nchelpid property. * * @return * possible object is * {@link String } * */ public String getNCHELPID() { return nchelpid; } /** * Sets the value of the nchelpid property. * * @param value * allowed object is * {@link String } * */ public void setNCHELPID(String value) { this.nchelpid = value; } /** * Gets the value of the ipeds property. * * @return * possible object is * {@link String } * */ public String getIPEDS() { return ipeds; } /** * Sets the value of the ipeds property. * * @param value * allowed object is * {@link String } * */ public void setIPEDS(String value) { this.ipeds = value; } /** * Gets the value of the atp property. * * @return * possible object is * {@link String } * */ public String getATP() { return atp; } /** * Sets the value of the atp property. * * @param value * allowed object is * {@link String } * */ public void setATP(String value) { this.atp = value; } /** * Gets the value of the fice property. * * @return * possible object is * {@link String } * */ public String getFICE() { return fice; } /** * Sets the value of the fice property. * * @param value * allowed object is * {@link String } * */ public void setFICE(String value) { this.fice = value; } /** * Gets the value of the act property. * * @return * possible object is * {@link String } * */ public String getACT() { return act; } /** * Sets the value of the act property. * * @param value * allowed object is * {@link String } * */ public void setACT(String value) { this.act = value; } /** * Gets the value of the ccd property. * * @return * possible object is * {@link String } * */ public String getCCD() { return ccd; } /** * Sets the value of the ccd property. * * @param value * allowed object is * {@link String } * */ public void setCCD(String value) { this.ccd = value; } /** * Gets the value of the pss property. * * @return * possible object is * {@link String } * */ public String getPSS() { return pss; } /** * Sets the value of the pss property. * * @param value * allowed object is * {@link String } * */ public void setPSS(String value) { this.pss = value; } /** * Gets the value of the ceebact property. * * @return * possible object is * {@link String } * */ public String getCEEBACT() { return ceebact; } /** * Sets the value of the ceebact property. * * @param value * allowed object is * {@link String } * */ public void setCEEBACT(String value) { this.ceebact = value; } /** * Gets the value of the csis property. * * @return * possible object is * {@link String } * */ public String getCSIS() { return csis; } /** * Sets the value of the csis property. * * @param value * allowed object is * {@link String } * */ public void setCSIS(String value) { this.csis = value; } /** * Gets the value of the usis property. * * @return * possible object is * {@link String } * */ public String getUSIS() { return usis; } /** * Sets the value of the usis property. * * @param value * allowed object is * {@link String } * */ public void setUSIS(String value) { this.usis = value; } /** * Gets the value of the esis property. * * @return * possible object is * {@link String } * */ public String getESIS() { return esis; } /** * Sets the value of the esis property. * * @param value * allowed object is * {@link String } * */ public void setESIS(String value) { this.esis = value; } /** * Gets the value of the psis property. * * @return * possible object is * {@link String } * */ public String getPSIS() { return psis; } /** * Sets the value of the psis property. * * @param value * allowed object is * {@link String } * */ public void setPSIS(String value) { this.psis = value; } /** * Gets the value of the duns property. * * @return * possible object is * {@link String } * */ public String getDUNS() { return duns; } /** * Sets the value of the duns property. * * @param value * allowed object is * {@link String } * */ public void setDUNS(String value) { this.duns = value; } /** * Gets the value of the mutuallyDefined property. * * @return * possible object is * {@link String } * */ public String getMutuallyDefined() { return mutuallyDefined; } /** * Sets the value of the mutuallyDefined property. * * @param value * allowed object is * {@link String } * */ public void setMutuallyDefined(String value) { this.mutuallyDefined = value; } /** * Gets the value of the apas property. * * @return * possible object is * {@link String } * */ public String getAPAS() { return apas; } /** * Sets the value of the apas property. * * @param value * allowed object is * {@link String } * */ public void setAPAS(String value) { this.apas = value; } /** * Gets the value of the localOrganizationID property. * * @return * possible object is * {@link LocalOrganizationIDType } * */ public LocalOrganizationIDType getLocalOrganizationID() { return localOrganizationID; } /** * Sets the value of the localOrganizationID property. * * @param value * allowed object is * {@link LocalOrganizationIDType } * */ public void setLocalOrganizationID(LocalOrganizationIDType value) { this.localOrganizationID = value; } /** * Gets the value of the organizationName property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the organizationName property. * * <p> * For example, to add a new item, do as follows: * <pre> * getOrganizationName().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link String } * * */ public List<String> getOrganizationName() { if (organizationName == null) { organizationName = new ArrayList<String>(); } return this.organizationName; } /** * Gets the value of the contacts property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the contacts property. * * <p> * For example, to add a new item, do as follows: * <pre> * getContacts().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link ContactsType } * * */ public List<ContactsType> getContacts() { if (contacts == null) { contacts = new ArrayList<ContactsType>(); } return this.contacts; } /** * Gets the value of the noteMessage property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the noteMessage property. * * <p> * For example, to add a new item, do as follows: * <pre> * getNoteMessage().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link String } * * */ public List<String> getNoteMessage() { if (noteMessage == null) { noteMessage = new ArrayList<String>(); } return this.noteMessage; } }
cc0-1.0
lfreneda/cepdb
api/v1/52131210.jsonp.js
133
jsonp({"cep":"52131210","logradouro":"Rua Gua\u00edra","bairro":"Linha do Tiro","cidade":"Recife","uf":"PE","estado":"Pernambuco"});
cc0-1.0
lfreneda/cepdb
api/v1/72546406.jsonp.js
153
jsonp({"cep":"72546406","logradouro":"Quadra QR 116 Conjunto F","bairro":"Santa Maria","cidade":"Bras\u00edlia","uf":"DF","estado":"Distrito Federal"});
cc0-1.0
badges/shields
frontend/components/markup-modal/index.tsx
994
import React from 'react' import Modal from 'react-modal' import styled from 'styled-components' import { BaseFont } from '../common' import { RenderableExample } from '../../lib/service-definitions' import { MarkupModalContent } from './markup-modal-content' const ContentContainer = styled(BaseFont)` text-align: center; ` export function MarkupModal({ example, isBadgeSuggestion, baseUrl, onRequestClose, }: { example: RenderableExample | undefined isBadgeSuggestion: boolean baseUrl: string onRequestClose: () => void }): JSX.Element { return ( <Modal ariaHideApp={false} contentLabel="Example Modal" isOpen={example !== undefined} onRequestClose={onRequestClose} > {example !== undefined && ( <ContentContainer> <MarkupModalContent baseUrl={baseUrl} example={example} isBadgeSuggestion={isBadgeSuggestion} /> </ContentContainer> )} </Modal> ) }
cc0-1.0
lfreneda/cepdb
api/v1/69917558.jsonp.js
148
jsonp({"cep":"69917558","logradouro":"Alameda das Ac\u00e1cias","bairro":"Ch\u00e1cara Ip\u00ea","cidade":"Rio Branco","uf":"AC","estado":"Acre"});
cc0-1.0
armangal/SmartExecutor
src/test/java/org/clevermore/TestPoolNames.java
705
/** * Written by Arman Gal, and released to the public domain, * as explained at http://creativecommons.org/publicdomain/zero/1.0/ * * @author Arman Gal, arman@armangal.com, @armangal */ package org.clevermore; import org.clevermore.IPoolName; public enum TestPoolNames implements IPoolName { SCHEDULED_POOL(TestPoolNamesConstants.SCHEDULED), // CACHED1(TestPoolNamesConstants.CACHED1), // FAST(TestPoolNamesConstants.FAST), // CUSTOM1(TestPoolNamesConstants.CUSTOM1)// ; private String name; private TestPoolNames(String name) { this.name = name; } @Override public String getPoolName() { return name; } }
cc0-1.0
lfreneda/cepdb
api/v1/45066301.jsonp.js
144
jsonp({"cep":"45066301","logradouro":"Rua Vinte e Um","bairro":"Jatob\u00e1","cidade":"Vit\u00f3ria da Conquista","uf":"BA","estado":"Bahia"});
cc0-1.0
lfreneda/cepdb
api/v1/61901180.jsonp.js
132
jsonp({"cep":"61901180","logradouro":"Rua 56","bairro":"Jereissati II","cidade":"Maracana\u00fa","uf":"CE","estado":"Cear\u00e1"});
cc0-1.0
lfreneda/cepdb
api/v1/08545042.jsonp.js
166
jsonp({"cep":"08545042","logradouro":"Rua Tito Temporim","bairro":"Jardim S\u00e3o Jo\u00e3o","cidade":"Ferraz de Vasconcelos","uf":"SP","estado":"S\u00e3o Paulo"});
cc0-1.0
seminaPK/FSE2DB
src/it/fse2db/bean/gtfs/FareAttributes.java
63
package it.fse2db.bean.gtfs; public class FareAttributes { }
cc0-1.0
AnneEscarrone/museuOswaldoAranha2017
dev/portal/application/modules/usuario/views/admin/listar.php
1150
<div id="container"> <div class="page-header"> <h1>Clientes <small>Listagem</small></h1><br/> <a class="btn btn-success alteraFonte" href="<?php echo base_url('admin/usuario/cadastrar');?>"><span class="glyphicon glyphicon-plus"></span> Novo</a> </div> <?php // Cabeçalho da tabela $this->table->set_heading('Nome','CPF', 'Email', 'Ações'); foreach($usuarios->result() as $u) { //aki mandamos os campos que queremos exibir $this->table->add_row($u->nome,$u->cpf_cnpj, $u->email, opcoes2( base_url('admin/usuario/excluir/'.$u->idUsuario), base_url('admin/usuario/alterar/'.$u->idUsuario)) ); } echo $this->pagination->create_links(); // Template de Tabela (config/cfg.php) // Carregar arquivo cfg em $autoload['config'] -- config/autoload.php // Carregar arquivo table em $autoload['libraries'] -- config/autoload.php $this->table->set_template($this->config->item('tabela_lista')); // Gerar a tabela if ($usuarios->num_rows() > 0) { echo $this->table->generate(); } else { echo alert("Não há registros, clique em novo para cadastrar." , 'success'); } ?> </div>
cc0-1.0
lfreneda/cepdb
api/v1/66640860.jsonp.js
139
jsonp({"cep":"66640860","logradouro":"Quadra Tr\u00eas","bairro":"Mangueir\u00e3o","cidade":"Bel\u00e9m","uf":"PA","estado":"Par\u00e1"});
cc0-1.0
lfreneda/cepdb
api/v1/27320400.jsonp.js
144
jsonp({"cep":"27320400","logradouro":"Rua S\u00e3o Pedro","bairro":"Vista Alegre","cidade":"Barra Mansa","uf":"RJ","estado":"Rio de Janeiro"});
cc0-1.0
lfreneda/cepdb
api/v1/21850590.jsonp.js
143
jsonp({"cep":"21850590","logradouro":"Travessa Mal\u00e1sia","bairro":"Bangu","cidade":"Rio de Janeiro","uf":"RJ","estado":"Rio de Janeiro"});
cc0-1.0
lfreneda/cepdb
api/v1/63113405.jsonp.js
138
jsonp({"cep":"63113405","logradouro":"Rua Evandro Augusto Lima","bairro":"Novo Crato","cidade":"Crato","uf":"CE","estado":"Cear\u00e1"});
cc0-1.0
lfreneda/cepdb
api/v1/79094200.jsonp.js
147
jsonp({"cep":"79094200","logradouro":"Rua Peru","bairro":"Jardim Batist\u00e3o","cidade":"Campo Grande","uf":"MS","estado":"Mato Grosso do Sul"});
cc0-1.0
lfreneda/cepdb
api/v1/77827080.jsonp.js
158
jsonp({"cep":"77827080","logradouro":"Rua dos Ip\u00eas","bairro":"Loteamento Aragua\u00edna Sul","cidade":"Aragua\u00edna","uf":"TO","estado":"Tocantins"});
cc0-1.0
lfreneda/cepdb
api/v1/79074290.jsonp.js
187
jsonp({"cep":"79074290","logradouro":"Rua Jos\u00e9 Ferreira da Cunha","bairro":"Parque Residencial Iracy Coelho Netto","cidade":"Campo Grande","uf":"MS","estado":"Mato Grosso do Sul"});
cc0-1.0
lfreneda/cepdb
api/v1/89032466.jsonp.js
142
jsonp({"cep":"89032466","logradouro":"Rua Wilson Bornhofen","bairro":"Passo Manso","cidade":"Blumenau","uf":"SC","estado":"Santa Catarina"});
cc0-1.0
lfreneda/cepdb
api/v1/78050420.jsonp.js
128
jsonp({"cep":"78050420","logradouro":"Rua Dois","bairro":"Dom Bosco","cidade":"Cuiab\u00e1","uf":"MT","estado":"Mato Grosso"});
cc0-1.0
lfreneda/cepdb
api/v1/12092430.jsonp.js
168
jsonp({"cep":"12092430","logradouro":"Rua Jos\u00e9 Nivaldo dos Santos","bairro":"S\u00e3o Gon\u00e7alo","cidade":"Taubat\u00e9","uf":"SP","estado":"S\u00e3o Paulo"});
cc0-1.0
lfreneda/cepdb
api/v1/52190313.jsonp.js
156
jsonp({"cep":"52190313","logradouro":"Rua J\u00falio Lib\u00f3rio da Silva","bairro":"Nova Descoberta","cidade":"Recife","uf":"PE","estado":"Pernambuco"});
cc0-1.0
lfreneda/cepdb
api/v1/41650755.jsonp.js
125
jsonp({"cep":"41650755","logradouro":"Rua da Tainha","bairro":"Piat\u00e3","cidade":"Salvador","uf":"BA","estado":"Bahia"});
cc0-1.0
lfreneda/cepdb
api/v1/89211410.jsonp.js
146
jsonp({"cep":"89211410","logradouro":"Rua Rep\u00fablica do Peru","bairro":"Floresta","cidade":"Joinville","uf":"SC","estado":"Santa Catarina"});
cc0-1.0
lfreneda/cepdb
api/v1/15025010.jsonp.js
156
jsonp({"cep":"15025010","logradouro":"Rua Boa Vista","bairro":"Boa Vista","cidade":"S\u00e3o Jos\u00e9 do Rio Preto","uf":"SP","estado":"S\u00e3o Paulo"});
cc0-1.0
lfreneda/cepdb
api/v1/29310808.jsonp.js
171
jsonp({"cep":"29310808","logradouro":"Escadaria Nedir Mendes Mastela","bairro":"Bom Pastor","cidade":"Cachoeiro de Itapemirim","uf":"ES","estado":"Esp\u00edrito Santo"});
cc0-1.0