This file contains hidden or 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
unit UGLAZ; {$mode objfpc}{$H+}{Абдулов Тимур Рифович 2015 год Email [email protected] . | |
;INFO | |
;Site https://sites.google.com/site/timpascallib/ | |
;Youtube https://www.youtube.com/watch?v=iqhYCRSG7Ug&list=PLlqeq-isbP97f-RrNJt6_ampCdYygWgVQ | |
;Google+ https://plus.google.com/u/0/+%D0%A2%D0%B8%D0%BC%D1%83%D1%80%D0%90%D0%B1%D0%B4%D1%83%D0%BB%D0%BE%D0%B2/posts | |
;GIST https://gist.github.com/MisterTimur/2551507245f3453d03cd | |
;------------------------------------------------------------------------------} | |
interface | |
uses // Используемые модули | |
Windows,Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls, |
This file contains hidden or 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 server;/*Абдулов Тимур Рифович 2015 год Email [email protected] . | |
;INFO | |
;Site https://sites.google.com/site/timpascallib/ | |
;Youtube https://www.youtube.com/watch?v=8UsQWQUJYVk | |
;Google+ https://plus.google.com/u/0/+%D0%A2%D0%B8%D0%BC%D1%83%D1%80%D0%90%D0%B1%D0%B4%D1%83%D0%BB%D0%BE%D0%B2/posts | |
;GIST https://gist.github.com/MisterTimur/ed9eb5439dfac433035a | |
;------------------------------------------------------------------------------*/ | |
import java.io.IOException; | |
import java.net.ServerSocket; | |
import java.net.Socket; |
This file has been truncated, but you can view the full file.
This file contains hidden or 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
;{ Тимур Рифович 2015 год Email [email protected] . | |
;INFO Кодировка файла должна быть CP 866 | |
;GITS https://gist.github.com/MisterTimur/7c64ae327d8d9dcf02f5 | |
;Site http://sites.google.com/site/abdulovtimuros/ | |
;Youtube http://www.youtube.com/channel/UCUhQNuTAQ933YBTy6awC0Pw | |
;Google+ http://plus.google.com/u/0/+%D0%A2%D0%B8%D0%BC%D1%83%D1%80%D0%90%D0%B1%D0%B4%D1%83%D0%BB%D0%BE%D0%B2/posts | |
; | |
; Для Компиляции | |
; | |
; fasm.exe TimOs16.Pas Tim-Lib.com -d PLA=1 для доса Com файл |
This file contains hidden or 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
OS16 = 1; | |
ПЛАТФОРМА = OS16; | |
IF (ПЛАТФОРМА = OS16) ;{ ЗАГРУЗОЧНЫЙ СЕКТОР ДЛЯ 16 БИТ | |
ЗАГРУЗОЧНЫЙ_СЕКТОР: | |
;--------------------; Настройка сегментных регистров | |
cli ; запрещаем прерывания | |
xor ax,ax ; обнуляем регистр ах | |
mov ds,ax ; настраиваем сегмент ds данных на нулевой адрес | |
mov es,ax ; настраиваем сегмент es на нулевой адрес | |
mov ss,ax ; настраиваем сегмент ss стека на нулевой адрес |
This file contains hidden or 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
// Абудлов Тимур 2017 год . | |
#pragma region ----- Заголовок . | |
#include "stdafx.h" | |
#undef UNICODE | |
#define WIN32_LEAN_AND_MEAN | |
#include <windows.h> | |
#include <winsock2.h> |
This file contains hidden or 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
// ConsoleApplication31.cpp : Этот файл содержит функцию "main". Здесь начинается и заканчивается выполнение программы. | |
// Абдулов ТИмур 2019 | |
#pragma region ===================== Зависимости . | |
#include "pch.h" | |
#include <ctype.h> | |
#include <stdlib.h> | |
#include <stdio.h> | |
#include <conio.h> |
This file contains hidden or 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
// ConsoleApplication39.cpp : Этот файл содержит функцию "main". Здесь начинается и заканчивается выполнение программы. | |
// Абдулов Тимур | |
#include "pch.h" | |
#include <iostream> | |
#include <string> | |
const char TI_SLO=1;// тип Слово |
OlderNewer