| Компонент | Ссылка | 
|---|---|
| диоды 1N4148 | ссылка | 
| ATMEGA328P | ссылка | 
| Кроватка под ATMEGA | ссылка | 
| Диоды zender 3.6v | ссылка | 
| Конденсатор 100pf | [ссылка](https://aliexpress.ru/item/10050022 | 
  
    
      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
    
  
  
    
  | ;; Delete selection | |
| (delete-selection-mode t) | |
| ;; Disable GUI components | |
| (tooltip-mode -1) | |
| (menu-bar-mode -1) | |
| (tool-bar-mode -1) | |
| (scroll-bar-mode -1) | |
| (blink-cursor-mode -1) | |
| (setq use-dialog-box nil) | 
  
    
      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
    
  
  
    
  | from bs4 import BeautifulSoup | |
| import urllib3 | |
| import time | |
| url = 'https://yandex.ru/pogoda/saint-petersburg?lat=59.918474&lon=30.480931' | |
| http = urllib3.PoolManager() | |
| while True: | |
| r = http.request('GET', url) | 
  
    
      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
    
  
  
    
  | %include "io.inc" | |
| section .data | |
| space db ' ', 0 | |
| rs db 'Result is:', 10, 0 | |
| ph db 'Your array is:', 10, 0 | |
| min db 127 | |
| max db -128 | |
| mas db 0,0,0,0,0,0,0,0,0,0 | 
  
    
      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
    
  
  
    
  | #include <stdio.h> | |
| #include <stdlib.h> | |
| int main() { | |
| FILE *file; | |
| file = fopen("text.txt", "r"); | |
| char buff[255]; | |
| char *pr; | |
| int max = INT16_MIN; | 
  
    
      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
    
  
  
    
  | %include "io.inc" | |
| section .data | |
| space db ' ', 0 | |
| db1 db 'deb', 0 | |
| rs db 'Result is:', 10, 0 | |
| ph db 'Your array is:', 10, 0 | |
| max_str db 'Enter max number', 10, 0 | |
| min_str db 'Enter min number', 10, 0 | |
| min db 0 | 
  
    
      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
    
  
  
    
  | cmake_minimum_required(VERSION 2.6) | |
| project(laba) | |
| set(CMAKE_CXX_STANDARD 11) | |
| file(GLOB SRC "*.cpp" "*.h") | |
| # FIND_PATH(SDL SDL2/SDL.h) | |
| find_package(SDL2 REQUIRED) | |
| message("find " ${SDL2}) | 
  
    
      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 main | |
| import ( | |
| "encoding/json" | |
| "net/http" | |
| ) | |
| type Controller interface { | |
| GetById(id int) (interface{}, error) | |
| } | 
  
    
      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
    
  
  
    
  | <template lang="pug"> | |
| .container | |
| h1 {{msg}} | |
| pre {{token}} | |
| pre {{user}} | |
| .row | |
| .col-sm-6 | |
| .form | |
| .form-group | |
| input.form-control(v-model="user.username") | 
  
    
      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
    
  
  
    
  | { | |
| "name": "packageName", | |
| "version": "1.0.0", | |
| "description": "", | |
| "main": "index.js", | |
| "scripts": { | |
| "test": "echo \"Error: no test specified\" && exit 1", | |
| "dev": "webpack --mode=development" | |
| }, | |
| "author": "", | 
NewerOlder