Skip to content

Instantly share code, notes, and snippets.

View maxbaluev's full-sized avatar
😀
awesome AI

Max Baluev maxbaluev

😀
awesome AI
View GitHub Profile
@maxbaluev
maxbaluev / txt
Created August 10, 2023 10:16
Codereviewer-ai-error
2023-08-10T09:48:07.0475690Z Requested labels: ubuntu-latest
2023-08-10T09:48:07.0475971Z Job defined at: Inside-AI-me/meetsnap/.github/workflows/master.yml@refs/pull/52/merge
2023-08-10T09:48:07.0476120Z Waiting for a runner to pick up this job...
2023-08-10T09:48:07.9199673Z Job is waiting for a hosted runner to come online.
2023-08-10T09:48:12.0362558Z Job is about to start running on the hosted runner: GitHub Actions 1 (hosted)
2023-08-10T09:48:17.1251054Z Current runner version: '2.307.1'
2023-08-10T09:48:17.1287881Z ##[group]Operating System
2023-08-10T09:48:17.1288702Z Ubuntu
2023-08-10T09:48:17.1289061Z 22.04.3
@maxbaluev
maxbaluev / install-nvidia-docker.sh
Last active January 9, 2020 19:54
Install cuda 10.1 and nvidia-docker on ubuntu 16.04
# remove cuda if exist
sudo apt-get purge nvidia*
sudo apt-get autoremove
sudo apt-get autoclean
sudo rm -rf /usr/local/cuda*
# install cuda dependencies
sudo apt-get update
sudo apt install build-essential
# install cuda
curl -OL https://developer.nvidia.com/compute/cuda/10.1/Prod/local_installers/cuda_10.1.105_418.39_linux.run
@maxbaluev
maxbaluev / wdio.conf.js
Created May 17, 2018 10:34 — forked from disintegrator/wdio.conf.js
Run Chrome Headless with WebdriverIO and selenium-standalone
exports.config = {
capabilities: [
{
browserName: 'chrome',
chromeOptions: {
args: ['headless', 'disable-gpu'],
},
},
],
services: ['selenium-standalone'],
CREATE TABLE `transaction`( `to` varchar(255) NOT NULL, `from` varchar(255) DEFAULT NULL, `value` varchar(255) DEFAULT NULL, `block` int(11) DEFAULT NULL,\n `hash` varchar(255) DEFAULT NULL,
PRIMARY KEY (`to`), UNIQUE KEY `idtransaction_UNIQUE` (`to`)) ENGINE=InnoDB DEFAULT CHARSET=utf8
0x00999B4E3d3d1E13668441a1a5A1AC22286c9c8B
Building runtime :
√ Starting docker container
! Preparing environment for build
- Copying ssh keys into the build environment...
- Setting up directories and permissions...
- Cloning engine :
Cloning into 'engine'...
remote: Counting objects: 1265, done.
remote: Compressing objects: 100% (9/9), done.
remote: Total 1265 (delta 1), reused 0 (delta 0), pack-reused 1255
@maxbaluev
maxbaluev / designer.html
Last active August 29, 2015 14:07
designer
<link rel="import" href="../paper-tabs/paper-tabs.html">
<link rel="import" href="../paper-tabs/paper-tab.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;