This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* The maps api is loaded using the Google Loader. Include | |
* <script type="text/javascript" src="https://www.google.com/jsapi"></script> | |
* in your index.html to use this component. | |
*/ | |
enyo.kind({ | |
name: 'Google.DirectionsService', | |
kind: 'Control', | |
published: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "Macaw", | |
"description": "An open source micro-blogging client", | |
"version": "1.0.0", | |
"launch_path": "/index.html", | |
"icons": { | |
"512": "/icon512.png", | |
"256": "/icon256.png", | |
"128": "/icon128.png", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
➜ Installer_maxosx ./Install.sh | |
javax.xml.transform.TransformerException: java.io.FileNotFoundException: /Users/.lgsdkTvregistery/.webosTVregistery.xml (No such file or directory) | |
at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.getOutputHandler(TransformerImpl.java:529) | |
at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(TransformerImpl.java:344) | |
at com.lge.sdk.ngtv.installer.ConfigurationManager.WriteConfigFile.writeConfig(Unknown Source) | |
at com.lge.sdk.ngtv.installer.ConfigurationManager.ConfigurationManager.initilizeConfigFile(Unknown Source) | |
at com.lge.sdk.ngtv.installer.installerscreen.MainUI$4.handleEvent(Unknown Source) | |
at org.eclipse.swt.widgets.EventTable.sendEvent(Unknown Source) | |
at org.eclipse.swt.widgets.Display.sendEvent(Unknown Source) | |
at org.eclipse.swt.widgets.Widget.sendEvent(Unknown Source) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% load static mptt_tags %} | |
<section class="darkGreyBg darkDarkGreyTop"> | |
<div class="container"> | |
<div class="row row-centered cp-nav"> | |
{% recursetree opps_menu %} | |
{% if not node.is_leaf_node and node.name == "Ediciones" %} | |
<ul>{{ children }}</ul> | |
{% endif %} | |
{% endrecursetree %} | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{# Esse é o template para o container box "home-hero-items-box" depende de dois posts #} | |
{% load static obj_tags images_tags %} | |
<section class="slice animate-hover-slide bg-3"> | |
<div class="w-section inverse"> | |
<div class="container"> | |
<div class="row"> | |
{% for article in articlebox.ordered_containers %} | |
<div class="col-md-6"> | |
<div class="w-box"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{# Esse é um carrosel. Ele pega os posts ordenados de um container box. #} | |
{% load static obj_tags images_tags %} | |
<section class="slice animate-hover-slide greyBg"> | |
<div class="w-section inverse blog-grid"> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-md-12"> | |
<!-- Carousels --> | |
<div> | |
<h3 class="whiteFg section-title"><span class="text-center">Disfruta de algunas de las conferencias de Campus Party</span></h3> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a respeito de: http://meiobit.com/305379/mozilla-firefox-pede-doacoes-para-se-manter-vivo-apos-contrato-com-google-expirar/#disqus_thread | |
Nossa que materia ruim. | |
Vamos lá, coisas erradas: | |
Primeiro a Mozilla é uma comunidade global de pessoas com objetivo de defender uma internet livre feita por usuários e para usuários. Essa comunidade se junta em uma fundação que por sua vez possui uma corporação. Ou seja, a estrutura é um pouco mais complexa que uma ONG. | |
Segundo, todo ano existe a campanha de doação para a Mozilla. Todo ano. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Building repository 'multimedia:apps' cache ...................................................................................................[done] | |
Retrieving repository 'openSUSE:Tumbleweed' metadata ---------------------------------------------------------------------------------------------[/] | |
Warning: The gpg key signing file 'repomd.xml' has expired. | |
Repository: openSUSE:Tumbleweed | |
Key Name: openSUSE:Tumbleweed OBS Project <openSUSE:[email protected]> | |
Key Fingerprint: 56FE3F66 EE9AD664 DD8978DF 03FCF140 B367F5CD | |
Key Created: Mon 18 Feb 2013 02:09:00 PM BRT | |
Key Expires: Wed 29 Apr 2015 02:09:00 PM BRT (EXPIRED) | |
Rpm Name: gpg-pubkey-b367f5cd-5122602c | |
Retrieving repository 'openSUSE:Tumbleweed' metadata ..................................................... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function makePromise() { | |
return new Promise(function(resolve, reject){ | |
setTimeout(function(){ resolve('hey!') }, 500); | |
}); | |
} | |
var gambiwrap = function(p) { | |
console.log("Promessa não resolvida"); | |
return p.then(function(r) { |