Skip to content

Instantly share code, notes, and snippets.

View j3ck's full-sized avatar
🏠
Working from home

Eugene j3ck

🏠
Working from home
View GitHub Profile
@j3ck
j3ck / 1.js
Created November 14, 2019 13:40
const smallestDivisor = (num) => {
// BEGIN (write your solution here)
const div = (iter) => {
if (num === iter) {
return num;
}
if (iter > 1 && num % iter === 0) {
return iter;
}
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`)
@j3ck
j3ck / l.bash
Last active March 27, 2020 14:01
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
@j3ck
j3ck / 1.rb
Last active April 27, 2018 15:44
module Kek
class << self
def run
@logger = Logger.new('timestamp')
test
kek
end
def test
@j3ck
j3ck / main.js
Created November 11, 2017 21:38
/*
* #1
* Получить из данного массива пользователей
* массив их полных имен
* EX: ['Vasya Vasiliev', 'Ivan Ivanov']
*/
{
const users = [
{ id: 1, name: 'Vasya', surname: 'Vasiliev' },
#1
a = [2,3,5,6,12]
for i in a
if i.even? == true
puts i
end
end
#2
def lol
# ... something
@operations, history = [], {}
wtf
#... wat
end
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 = []
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