Приложение для подбора людей на концерт. Вам нужно найти компаньона на любое мероприятие? Это лучшее приложение для этого!
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
public class BleCommandExecutor implements CommandExecutor { | |
private final BleDevice bleDevice; | |
private final Executor executor = Executors.newSingleThreadExecutor(); | |
private final Map<String, Queue<CommandCallback<String>>> callbacks = new ConcurrentHashMap<>(); | |
public BleCommandExecutor(BleDevice bleDevice) { | |
this.bleDevice = bleDevice; | |
} | |
@Override |
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 python | |
import sys | |
from os.path import splitext, basename | |
if len(sys.argv) < 2: | |
sys.exit('Usage: %s dump.bin' % sys.argv[0]) | |
ntag_file = sys.argv[1] | |
nfc_file = splitext(ntag_file)[0] + '.nfc' |
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 | |
import hashlib | |
import os | |
import traceback | |
import json | |
import time | |
def remove_prefix(text, prefix): |
Приветствую, любители реверс-инжинирить Android. Перед вами шпаргалка по Smali - аналогу ассемблера для Android-приложений.
Изначальный текст на русском взят отсюда. Там текст появился из машинного перевода официальной документации.
В итоге, оформил сухой текст + поправил небольшие опечатки и корявости перевода. По поводу замечаний и предложений можете писать либо мне в ЛС, либо оформлять PR на Gist.
By: @saurabhshri
Many users when are given server access, do not have root (or sudo) privileges and can not simply do
sudo apt-get install python-pip
.
Here's an easy way you can install and use pip without root (or sudo) access in a local directory.
Note : This works without easy_install
too.
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
Под общей редакцией А.В. Пролетарского - Технологии коммутации и маршрутизации в локальных компьютерных сетях - 2013 | |
А.Ф. Третьяков, Л.В. Тарасенко - Материаловедение и технологии обработки материалов - 2014 | |
В.П. Строгалев, И.О. Толкачева, Н.В. Быков - Основы прикладной газовой динамики - 2014 | |
О.П. Феоктистова, Е.Б. Гартиг, А.А. Пожалостин, А.А. Панкратов - Кинематика точки и простейшие движения твердого тела - 2012 | |
Под редакцией И.П. Мачневой - Сборник домашних заданий для студентов специальности "Средства поражения и боеприпасы". Часть 2 - 2014 | |
Т.М. Волосатова, С.В. Родионов, Д.Т. Шварц - Прикладное программирование на языке C++ - 2015 | |
В.С. Попов - Линейная алгебра - 2016 | |
М.В. Белодедов, О.М. Михайлова, М.М. Абулкасимов - Электротехника - 2015 | |
И.В. Телеснина - Танцуем с удовольствием - 2008 | |
С.В. Резник, О.В. Денисов - Постановка тепловых испытаний элементов композитных стержневых космических конструкций. Часть 1. Расчетно-теоретические исследования (2-е издание) - 2017 |
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
package ru.lionzxy.printbox.view.print_map.ui | |
import android.Manifest | |
import android.annotation.SuppressLint | |
import android.app.Activity | |
import android.content.Intent | |
import android.graphics.PorterDuff | |
import android.os.Bundle | |
import android.support.v4.content.ContextCompat | |
import android.support.v7.widget.LinearLayoutManager |
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
package ru.lionzxy.eventbird.prometheus | |
import io.ktor.application.ApplicationCall | |
import io.ktor.application.ApplicationCallPipeline | |
import io.ktor.application.ApplicationFeature | |
import io.ktor.application.call | |
import io.ktor.http.HttpStatusCode | |
import io.ktor.http.content.OutgoingContent | |
import io.ktor.pipeline.PipelineContext | |
import io.ktor.request.httpMethod |
NewerOlder