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 smallestDivisor = (num) => { | |
// BEGIN (write your solution here) | |
const div = (iter) => { | |
if (num === iter) { | |
return num; | |
} | |
if (iter > 1 && num % iter === 0) { | |
return iter; | |
} |
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
nokogiri: https://github.com/sparklemotion/nokogiri/issues/1801#issuecomment-424656625 |
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
function getMirror(mirrors, offset) { | |
Promise.all( | |
mirrors.slice(offset * 6, (offset + 1) * 6).map((mirror) => checkMirror(mirror)) | |
).then(() => { | |
setTimeout(() => getMirror(mirrors, offset + 1), 0) | |
}) | |
.catch(err => console.log(err)); | |
} | |
fetch(`${basePath}/mirrors.json`) |
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
sudo make build | |
docker run --rm -it -v /Users/j3ck/projects/firmware:/root/teleset --mount source=ccache_root,target=/root/.ccache teleset:v1 /bin/bash -i "/root/teleset/go.sh" || :; | |
SECUREBOOT=1, TELESET_RELEASE_KEYS=1 | |
including device/amlogic/gxbb_skt/vendorsetup.sh | |
including device/amlogic/gxl_skt/vendorsetup.sh | |
including device/amlogic/gxm_skt/vendorsetup.sh | |
including device/amlogic/p200/vendorsetup.sh | |
including device/amlogic/p200_2G/vendorsetup.sh | |
including device/amlogic/p201/vendorsetup.sh | |
including device/amlogic/p212/vendorsetup.sh |
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
module Kek | |
class << self | |
def run | |
@logger = Logger.new('timestamp') | |
test | |
kek | |
end | |
def test |
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 | |
* Получить из данного массива пользователей | |
* массив их полных имен | |
* EX: ['Vasya Vasiliev', 'Ivan Ivanov'] | |
*/ | |
{ | |
const users = [ | |
{ id: 1, name: 'Vasya', surname: 'Vasiliev' }, |
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 | |
a = [2,3,5,6,12] | |
for i in a | |
if i.even? == true | |
puts i | |
end | |
end | |
#2 |
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
def lol | |
# ... something | |
@operations, history = [], {} | |
wtf | |
#... wat | |
end | |
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
module Chesters | |
class Invoice | |
attr_accessor :number, :phone, :fax, :account_code, | |
:date, :payment_due, :sub_total, :total, | |
:gst, :sales_despatch, :sales_order, | |
:customer_order, :staff, :gst_no | |
attr_accessor :line_items | |
def initialize | |
@line_items = [] |
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
module MyModule | |
# self here is MyModule | |
@species = "frog" | |
@color = "red polka-dotted" | |
@log = [] | |
def self.log(msg) | |
# self here is still MyModule, so the instance variables are still available | |
@log << msg | |
end |