- Flip your projector
- Unscrew 2 legs
- Rotate black part
- Unscrew 6 screws (2 in the middle and 4 on corners)
- Take a platic card and move it though perimether of bottom part
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
#!/usr/bin/env python3.11 | |
import base64 | |
import json | |
import requests | |
import select | |
import signal | |
import subprocess | |
import sys | |
import time |
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
gh api -H "Accept: application/vnd.github+json" /repos/metanorma/metanorma-ietf/actions/caches \ | |
| jq -r '.actions_caches[].key' | grep -E 'chocolatey-cache' \ | |
| ruby -r 'cgi' -e 'while line = gets; puts CGI.escape(line.strip); end' \ | |
| xargs -n 1 --no-run-if-empty -S 2048 -I {} \ | |
env PAGER=cat gh api -X DELETE -H "Accept: application/vnd.github+json" "/repos/metanorma/metanorma-ietf/actions/caches?key={}" |
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
{ | |
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
"basics": { | |
"name": "Aliaksandr Babrykovich", | |
"label": "Software Engineer", | |
"image": "", | |
"email": "[email protected]", | |
"summary": "As a software engineer with extensive experience in backend development and mobile platforms, I bring a wealth of knowledge and a proven track record of delivering robust, scalable, and efficient software solutions. My career began as a Java EE developer, where I honed my skills in enterprise-level backend systems. Over time, my role evolved, expanding my competencies to include Android and iOS development, as well as working with less mainstream mobile platforms. This diverse experience has equipped me with a deep understanding of the full software development lifecycle, from initial design through to deployment and maintenance. I am curious about leveraging technology to solve complex problems and drive innovation, always striving for excellence in every proj |
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
#!/usr/bin/env bash | |
# rev 10 | |
# | |
# Input inteface | |
# | |
YOUTUBE_VID_ID="" | |
DURATION="" | |
START_TIME="0:00" |
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
#!/usr/bin/env python3 | |
# https://www.bakonkurs.by/kenguru/primery/k2017-3.pdf - task 24 | |
flovers = [6, 7, 8, 11] | |
print(flovers) | |
while flovers.count(0) < 2: | |
mi = flovers.index(min(flovers)) | |
for i, v in enumerate(flovers): |
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(conan_install conan_file host_profile) | |
# download helper conan.cmake | |
if(NOT EXISTS "${CMAKE_BINARY_DIR}/conan.cmake") | |
message(STATUS "Downloading conan.cmake from https://github.com/conan-io/cmake-conan") | |
file( | |
DOWNLOAD "https://raw.githubusercontent.com/conan-io/cmake-conan/v0.16.1/conan.cmake" | |
"${CMAKE_BINARY_DIR}/conan.cmake" | |
EXPECTED_HASH SHA256=396e16d0f5eabdc6a14afddbcfff62a54a7ee75c6da23f32f7a31bc85db23484 | |
TLS_VERIFY ON) | |
endif() |
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
// https://prisoners.spring96.org/ru/table | |
(function(month) { | |
// drop header | |
$('.navbar').remove(); | |
$('h2.mb-5').remove(); | |
$('#table_length').remove(); | |
$('#table_filter').remove(); | |
// select month | |
$('select').first().val(month).change(); | |
$('tr')[1].remove(); |
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
# Create 'alias' for FindXXX.cmake script | |
# Used to not change naming in existing scripts | |
function(alias_package source_package_dir source_package_name target_package_name) | |
set (source_find "${source_package_dir}/Find${source_package_name}.cmake") | |
if (NOT EXISTS ${source_find}) | |
message(WARNING "Skip aliasing because ${source_find} not exists") | |
return() | |
endif() | |
file(READ ${source_find} find_source_package_cmake_script) |
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
import org.gradle.internal.os.OperatingSystem | |
println "Loaded personal ~/.gradle/init.gradle" | |
final String RAMDiskName = "GradleRamDisk" | |
final long RAMDiskBytes = 4L * 1024L * 1024L * 1024L // 4Gb | |
interface RAMDiskManager { | |
boolean isReady(); | |
String getPath(); |
NewerOlder