A
AnonymousFeb. 18, 2021, 8:21 a.m.

<script>
$(document).ready(function () {
    $(document).on('click', '[data-elem-id="1605859307264"] a', function (e) {
        var url = $(this).attr('href');
        e.preventDefault();
       
A
AnonymousFeb. 13, 2021, 8:24 a.m.

string = input()
 
res = 0
for letter in string:
    res += int(letter)
 
print(res)
A
AnonymousFeb. 8, 2021, 12:44 p.m.

from turtle import *

# Создаём переменные, которые будут хранить цвета
# и менять их в зависимости от времени суток
car_color = "green"
star_color = "yellow"

# создаём функцию, которая будет 
A
AnonymousFeb. 1, 2021, 9:11 a.m.

&lt;?php

class Stack
{
	const LIMIT = 100;
	
	private array $stack;

	public function __construct()
	{
		$this-&gt;stack = [];
	}
	
	public function addElem(int $elem): void
	{
		if (c
A
AnonymousJan. 30, 2021, 9:29 a.m.

import pygame
from game.tilemap import *


class Block(pygame.sprite.Sprite):
    def __init__(self, image, x, y):
        pygame.sprite.Sprite.__init__(self)
        self.image = pygame.image.
A
AnonymousJan. 30, 2021, 2:41 a.m.

#include <cmath>
#include <cstdio>
#include <fstream>
#include <iomanip>
#include <iostream>

using namespace std;

int main() {
  int a, b, c, d;
  cin >> a >> b >> c >> d;
  int a1 = a * 
BlinCT
BlinCTJan. 27, 2021, 3:24 p.m.

ListView
    {
        id: tableView

        anchors.top:  headers ? rowHeader.bottom : root.top
        anchors.left: parent.left
        anchors.right: parent.right
        anchors.bottom: p
A
AnonymousJan. 23, 2021, 8:35 a.m.

import pygame
import time
import os

pygame.init()

clock = pygame.time.Clock()
autog = 0
coins = 0
display_width = 850
display_height = 600

white = (255, 255, 255)
black = (0, 0, 0)
gr
A
AnonymousJan. 16, 2021, 9:39 a.m.

import pygame


class Street(pygame.sprite.Sprite):

    def __init__(self, color, x, y):
        pygame.sprite.Sprite.__init__(self)
        self.image = pygame.Surface((BLOCK_SIZE, BLOCK_SIZE
A
AnonymousJan. 15, 2021, 11:11 a.m.

import random


class Player:

    def __init__(self, name, money, position):
        self.name = name
        self.money = money
        self.position = position
        self.street = 0
   
A
AnonymousDec. 5, 2020, 1:10 p.m.

import socket
import threading
import tkinter as tk
from tkinter import scrolledtext


def registration():
    # Создаём надпись и крепим в 1 строку, 1 столбец
    tk.Label(mainWindow, text='В
A
AnonymousNov. 27, 2020, 12:48 p.m.
A
AnonymousNov. 26, 2020, 12:51 p.m.
M
MaterimelyNov. 8, 2020, 4:58 p.m.

#include <iostream>
#include <cmath>
#include <iomanip>
using namespace std;

double function(double u,double t){
	if (u > 1)return u + t;
	if (0 <= u <= 1)return u - t;
	if (u < 0)return t - 
M
MaterimelyOct. 28, 2020, 1:22 p.m.

#include <iostream>
#include <cmath>
#include<iomanip>
using namespace std;
void func1()
{
	int height, masa, w;
	cout << "Введiть ваш зрiст:";
	cin >> height;
	cout << "Вкажiть вашу стать(0-
M
MaterimelyOct. 23, 2020, 4:06 a.m.

using namespace std;
bool prime(long int i)
{
	for (long int x = 2; x <= sqrt(i); x++)
	{
		if (i%x == 0)return false;
	}
		return true;
	
}
int main()
{
do {
		setlocale(LC_ALL, "ukr");
BlinCT
BlinCTOct. 22, 2020, 1:46 p.m.

int main(int argc, char** argv)
{
    int line = 0;

    if (argc > 1)
    {
        char* key = "-d";
        char* keyArg = argv[1];

        if (keyArg == key)
        {
            int 
M
MaterimelyOct. 14, 2020, 7:38 a.m.

#include <iostream>
using namespace std;


int main()
{

	double x, y;
	cout << "Input x\n";
	cin >> x;
	cout << "Input y\n";
	cin >> y;
	double a = 4-2*x;
	double b = -5+2*x+y;
	double 
M
MaterimelyOct. 13, 2020, 2:13 p.m.

#include <iostream>
using namespace std;


int main()
{

	double x, y, Ax = 2, Ay = -1, Bx = 2, By = 1, Cx = 3, Cy = -1;
	cout << "Input x\n";
	cin >> x;
	cout << "Input y\n";
	cin >> y;
	
A
AnonymousOct. 9, 2020, 4:22 a.m.

def moveZeroes(self, nums):
    """
    :type nums: List[int]
    :rtype: None Do not return anything, modify nums in-place instead.
    """
    if len(nums) < 2:
        return

    count_ite
Ua

Qt - Test 001. Signals and slots

  • Result:84points,
  • Rating points4
Ua

Qt - Test 001. Signals and slots

  • Result:42points,
  • Rating points-8
ОК

Qt - Test 001. Signals and slots

  • Result:47points,
  • Rating points-6
Last comments
ИМ
Игорь МаксимовNov. 22, 2024, 5:51 p.m.
Django - Tutorial 017. Customize the login page to Django Добрый вечер Евгений! Я сделал себе авторизацию аналогичную вашей, все работает, кроме возврата к предидущей странице. Редеректит всегда на главную, хотя в логах сервера вижу запросы на правильн…
Evgenii Legotckoi
Evgenii LegotckoiOct. 31, 2024, 7:37 p.m.
Django - Lesson 064. How to write a Python Markdown extension Добрый день. Да, можно. Либо через такие же плагины, либо с постобработкой через python библиотеку Beautiful Soup
A
ALO1ZEOct. 19, 2024, 2:19 p.m.
Fb3 file reader on Qt Creator Подскажите как это запустить? Я не шарю в программировании и кодинге. Скачал и установаил Qt, но куча ошибок выдается и не запустить. А очень надо fb3 переконвертировать в html
ИМ
Игорь МаксимовOct. 5, 2024, 1:51 p.m.
Django - Lesson 064. How to write a Python Markdown extension Приветствую Евгений! У меня вопрос. Можно ли вставлять свои классы в разметку редактора markdown? Допустим имея стандартную разметку: <ul> <li></li> <li></l…
d
dblas5July 5, 2024, 5:02 p.m.
QML - Lesson 016. SQLite database and the working with it in QML Qt Здравствуйте, возникает такая проблема (я новичок): ApplicationWindow неизвестный элемент. (М300) для TextField и Button аналогично. Могу предположить, что из-за более новой верси…
Now discuss on the forum
n
nklyJan. 3, 2025, 8:52 a.m.
Нужно запретить перемещение только некоторых итемов, остальные перемещать можно. Вопрос решен. Узнать QModelIndex элемента на который мы перетаскиваем другой элемент, можно с помощью функции indexAt(event->position().toPoint()) представления QTreeViev вызываемой в переопр…
M
MarselAug. 16, 2023, 8:26 p.m.
OAuth2.0 через VK, получение email Спасибо большое за помощь и простите за то что отнял время своей невнимательностью.
Evgenii Legotckoi
Evgenii LegotckoiJune 24, 2024, 9:11 p.m.
добавить qlineseries в функции Я тут. Работы оень много. Отправил его в бан.
t
tonypeachey1Nov. 15, 2024, 12:04 p.m.
google domain [url=https://google.com/]domain[/url] domain [http://www.example.com link title]
NSProject
NSProjectJune 4, 2022, 9:49 a.m.
Всё ещё разбираюсь с кешем. В следствии прочтения данной статьи. Я принял для себя решение сделать кеширование свойств менеджера модели LikeDislike. И так как установка evileg_core для меня не была возможна, ибо он писался…

Follow us in social networks