List of genres for Netflix accessible via https//www.netflix.com/browse/genre/<code>
where <code>
is in one of the following
Kind | Code |
---|---|
Action & Adventure | 1365 |
Action Comedies | 43040 |
Action Sci-Fi & Fantasy | 1568 |
Action Thrillers | 43048 |
dist/ |
package main_test | |
import ( | |
"fmt" | |
"io" | |
"runtime" | |
"testing" | |
"time" | |
) |
<!-- shortcodes/ghGist.html --> | |
<table class="table ghStarred" style="border: 1px;"> | |
<thead> | |
<tr> | |
<td> Message </td> | |
<td> URL </td> | |
<td> Public </td> | |
</tr> | |
</thead> | |
{{ $url := .Get "url" }} |
List of genres for Netflix accessible via https//www.netflix.com/browse/genre/<code>
where <code>
is in one of the following
Kind | Code |
---|---|
Action & Adventure | 1365 |
Action Comedies | 43040 |
Action Sci-Fi & Fantasy | 1568 |
Action Thrillers | 43048 |
#!/usr/bin/env ruby | |
# encoding: utf-8 | |
require 'optparse' | |
require 'ostruct' | |
begin | |
require 'pry' | |
rescue LoadError | |
puts 'Pry is not availble' |
module BasicMath | |
def sum | |
reduce(0) { |acc, val| val + acc } | |
end | |
def mean | |
sum.to_f / length | |
end | |
def deviations |
require 'pry' | |
require 'rspec' | |
# Not using class variables | |
class PersonNoVar | |
@counter = 0 | |
class << self | |
attr_accessor :counter | |
end |
var remove_tweet = function() { | |
setTimeout(function(){ | |
tweet = $('.Icon.Icon--dots')[0].click() | |
setTimeout(function () { | |
$(".js-actionDelete .dropdown-link").click() | |
setTimeout(function(){ | |
$('.btn.primary-btn.delete-action')[0].click(); | |
}, 100); |