Недавнее содержимое от ROKERVEKA

  1. ROKERVEKA

    Помогите, провод запуска не подходит к мат. плате, что делать

    плохо ты гуглом пользуешься If the power cord is not fitting into the motherboard, it could be due to a few reasons: Incorrect Connector: Make sure that the power cord you are using is compatible with the socket on your motherboard. Different motherboards have different power connectors, so...
  2. ROKERVEKA

    Вопросы по Lua скриптингу

    function getCurDate() local req = require("requests") local encoding = require("encoding") encoding.default = "CP1251" u8 = encoding.UTF8 local site = req.get("http://calendar.yuretz.ru/kakoesegodnyachislo/") local text = u8:decode(site.text) local date =...
  3. ROKERVEKA

    car RGB

    Создай массив со цветами и зацикли
  4. ROKERVEKA

    Курсор двигаеться

    local ffi = require("ffi") ffi.cdef[[ void SetCursorPos(int X, int Y); ]] local function set_cursor_position(x, y) ffi.C.SetCursorPos(x, y) end if key == "Insert" then set_cursor_position(566, 500) end
  5. ROKERVEKA

    Вопросы по Lua скриптингу

    local socket = require("socket") local timestamp = socket.gettime() local t = os.date("*t", timestamp) local current_date = string.format("%04d-%02d-%02d", t.year, t.month, t.day) print(current_date)