This file contains 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
# ~/.bashrc: executed by bash(1) for non-login shells. | |
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
# for examples | |
# If not running interactively, don't do anything | |
case $- in | |
*i*) ;; | |
*) return;; | |
esac |
This file contains 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
googlebot | |
bingbot | |
yandex | |
baiduspider | |
twitterbot | |
facebookexternalhit | |
rogerbot | |
linkedinbot | |
embedly | |
quora link preview |
This file contains 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
const expect = require('chai').expect; | |
const EventEmitter = require('events'); | |
const rxjs = require('rxjs'); | |
const { ajax } = require('rxjs/ajax'); | |
const { debounce, debounceTime, distinctUntilChanged, switchMap, tap } = require('rxjs/operators'); | |
describe('A emitter', function () { | |
it('should emit something', async function (done) { |
This file contains 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
//Hit compile and run to see a sample output. | |
//Read values from stdin, do NOT hard code input. | |
// process.stdin.resume(); | |
process.stdin.setEncoding("ascii"); | |
var input = ""; | |
//only to read all chunk data | |
process.stdin.on("data", function (chunk) { |
This file contains 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
version: '3' | |
services: | |
lookup: | |
container_name: lookup | |
image: nsqio/nsq | |
command: /nsqlookupd | |
ports: | |
- "4160:4160" | |
- "4161:4161" | |
worker: |
This file contains 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
func benchmarkFib(i int, b *testing.B) { | |
for n := 0; n < b.N; n++ { | |
Fib(i) | |
} | |
} | |
func BenchmarkFib1(b *testing.B) { benchmarkFib(1, b) } | |
func BenchmarkFib2(b *testing.B) { benchmarkFib(2, b) } | |
func BenchmarkFib3(b *testing.B) { benchmarkFib(3, b) } | |
func BenchmarkFib10(b *testing.B) { benchmarkFib(10, b) } |
This file contains 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
{{#dropdown/negociacao-filtro content="filtro" constrainWidth=600 alignment="right" belowOrigin=true }} | |
{{/dropdown/negociacao-filtro}} | |
<!-- Dropdown Trigger --> | |
<!-- Dropdown Structure --> | |
<div id="filtro" class="dropdown-content filtro"> | |
<div class="row"> | |
<div class="col m4 input-field"> | |
{{input value=value type="text"}} | |
<label for="last_name" class="active">Filtro 1</label> |
This file contains 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
@@ -1,4 +1,12 @@ | |
Discard Hunk | |
Stage Hunk | |
import Ember from 'ember'; | |
export default Ember.Route.extend({ | |
afterModel() { | |
return this.get('store').query('b/parametro', { orderBy: 'ssupervisor', equalTo: true}) |
This file contains 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
-log | |
[OK] Operating on 64-bit architecture | |
-------- Log file Recommendations ------------------------------------------------------------------ | |
[--] Log file: /var/lib/mysql/mariadbeus05.err(0B) | |
[!!] Log file /var/lib/mysql/mariadbeus05.err doesn't exist | |
[!!] Log file /var/lib/mysql/mariadbeus05.err isn't readable. | |
-------- Storage Engine Statistics ----------------------------------------------------------------- | |
[--] Status: +Aria +CSV +InnoDB +MEMORY +MRG_MyISAM +MyISAM +PERFORMANCE_SCHEMA +SEQUENCE |
NewerOlder