Skip to content

Instantly share code, notes, and snippets.

View shdxw's full-sized avatar
💭
hi comrade

shdxw shdxw

💭
hi comrade
View GitHub Profile

Ищем ключи в помойке (Github)


Скрипт ищет ключи в файлах по запросу пользователя

😈 Зачем искать ключи бинанса?

Полезно когда:

  • Хотите стать милиардером
  • Хотите отработать акки
    @shdxw
    shdxw / resume.md
    Last active December 28, 2021 02:41

    Владислав Бабкин

    Profile

    Я разработчик на Java. Ищу интересную, оплачиваемую работу в хорошей компании.

    Skills

    Java, Spring, Docker, Dart, Android, Postgresql.

    UnexpectedValueException:
    The stream or file "/app/var/log/dev.log" could not be opened in append mode: Failed to open stream: Permission denied
    at /app/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:119
    at Monolog\Handler\StreamHandler->write(array('message' => 'Uncaught PHP Exception UnexpectedValueException: "The stream or file "/app/var/log/dev.log" could not be opened in append mode: Failed to open stream: Permission denied" at /app/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php line 119', 'context' => array('exception' => object(UnexpectedValueException)), 'level' => 500, 'level_name' => 'CRITICAL', 'channel' => 'request', 'datetime' => object(DateTimeImmutable), 'extra' => array(), 'formatted' => '[2021-09-07T09:38:58.455621+00:00] request.CRITICAL: Uncaught PHP Exception UnexpectedValueException: "The stream or file "/app/var/log/dev.log" could not be opened in append mode: Failed to open stream: Permission denied" at /app/vendor/monolog/monolog/src/Monolog/Handler/Str
    @shdxw
    shdxw / contracts...token...ERC20Standard.sol
    Created May 22, 2021 03:20
    Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.5.17+commit.d19bba13.js&optimize=false&runs=200&gist=
    pragma solidity ^0.5.7;
    library SafeMath {
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    if (a == 0) {
    return 0;
    }
    uint256 c = a * b;
    @shdxw
    shdxw / README.txt
    Created May 22, 2021 03:19
    Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.5.17+commit.d19bba13.js&optimize=false&runs=200&gist=
    REMIX EXAMPLE PROJECT
    Remix example project is present when Remix loads very first time or there are no files existing in the File Explorer.
    It contains 3 directories:
    1. 'contracts': Holds three contracts with different complexity level, denoted with number prefix in file name.
    2. 'scripts': Holds two scripts to deploy a contract. It is explained below.
    3. 'tests': Contains one test file for 'Ballot' contract with unit tests in Solidity.
    SCRIPTS
    package ru.java.serialization;
    import java.io.Serializable;
    import java.util.Calendar;
    import java.util.Date;
    import java.util.GregorianCalendar;
    public class Human implements Serializable {
    private String name;
    private String secondName;
    // testPoly.cpp : Этот файл содержит функцию "main". Здесь начинается и заканчивается выполнение программы.
    //
    #include "pch.h"
    #include <iostream>
    #include <string>
    #include <vector>
    using namespace std;
    @shdxw
    shdxw / poly
    Created May 9, 2020 10:31
    it's my pizzahat prog
    // testPoly.cpp : Этот файл содержит функцию "main". Здесь начинается и заканчивается выполнение программы.
    //
    #include "pch.h"
    #include <iostream>
    #include <string>
    #include <vector>
    using namespace std;
    using namespace std;
    class Wallet_info{
    public: //public св-ва
    int rur_amount = 0;
    };
    Class Human{
    protected:
    string name; //Инкапсуляция с помощью set/get
    float RandomFloat(float min, float max) {
    return (max - min) * ((((float) rand()) / (float) RAND_MAX)) + min ;
    }