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
<!--Код генератора www.aleksandr-kuzmin.ru--> | |
<script type="text/javascript"> | |
function send(){ | |
var text=document.getElementById('text').value; | |
var transl=new Array(); | |
transl['А']='a'; transl['а']='a'; | |
transl['Б']='b'; transl['б']='b'; | |
transl['В']='v'; transl['в']='v'; | |
transl['Г']='g'; transl['г']='g'; | |
transl['Д']='d'; transl['д']='d'; |
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
https://mail.google.com/mail/u/0/?view=cm&fs=1&tf=1&source=mailto&su=Вопрос автору сайта www.aleksandr-kuzmin.ru&[email protected]&body=Доброго времени суток. Хочу задать Вам вопрос: |
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
Написать <a href="mailto:[email protected]?subject=Вопрос автору сайта www.aleksandr-kuzmin.ru&body=Доброго времени суток. Хочу задать Вам вопрос:" target="_blank" rel="noopener nofollow">автору</a> |
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
var accountTag = 'own_remove_account_tag'; | |
var css = " \ | |
.own_popup { \ | |
width: 50%; min-width: 676px; height: 80%; padding: 15px; \ | |
background: white; border: 1px solid #eee; border-radius: 15px; \ | |
z-index: 999999; position: fixed; margin: auto; \ | |
top: 50px; left: 0; right: 0; \ | |
-webkit-box-shadow: 0px 3px 38px 0px rgba(50, 50, 50, 0.32); \ | |
-moz-box-shadow: 0px 3px 38px 0px rgba(50, 50, 50, 0.32); \ | |
box-shadow: 0px 3px 38px 0px rgba(50, 50, 50, 0.32); \ |
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
/*Вставляем в теле сайта*/ | |
<body> | |
<a class="btn_telegram_share" href="https://telegram.me/share/url?url=ВАШ_URL&text=ТЕКСТ">Поделиться</a> | |
</body> | |
</html> | |
/*Вставляем CSS стиль*/ |
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
/*! Slick.js | v1.8.0 - https://kenwheeler.github.io/slick */ | |
!function(i){"use strict";"function"==typeof define&&define.amd?define(["jquery"],i):"undefined"!=typeof exports?module.exports=i(require("jquery")):i(jQuery)}(function(i){"use strict";var e=window.Slick||{};(e=function(){var e=0;return function(t,o){var s,n=this;n.defaults={accessibility:!0,adaptiveHeight:!1,appendArrows:i(t),appendDots:i(t),arrows:!0,asNavFor:null,prevArrow:'<button class="slick-prev" aria-label="Previous" type="button">Previous</button>',nextArrow:'<button class="slick-next" aria-label="Next" type="button">Next</button>',autoplay:!1,autoplaySpeed:3e3,centerMode:!1,centerPadding:"50px",cssEase:"ease",customPaging:function(e,t){return i('<button type="button" />').text(t+1)},dots:!1,dotsClass:"slick-dots",draggable:!0,easing:"linear",edgeFriction:.35,fade:!1,focusOnSelect:!1,focusOnChange:!1,infinite:!0,initialSlide:0,lazyLoad:"ondemand",mobileFirst:!1,pauseOnHover:!0,pauseOnFocus:!0,pauseOnDotsHover:!1,respondTo:"window",respon |
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
$LocalTempDir = $env:TEMP; $ChromeInstaller = "ChromeInstaller.exe"; (new-object System.Net.WebClient).DownloadFile('http://dl.google.com/chrome/install/375.126/chrome_installer.exe', "$LocalTempDir\$ChromeInstaller"); & "$LocalTempDir\$ChromeInstaller" /silent /install; $Process2Monitor = "ChromeInstaller"; Do { $ProcessesFound = Get-Process | ?{$Process2Monitor -contains $_.Name} | Select-Object -ExpandProperty Name; If ($ProcessesFound) { "Still running: $($ProcessesFound -join ', ')" | Write-Host; Start-Sleep -Seconds 2 } else { rm "$LocalTempDir\$ChromeInstaller" -ErrorAction SilentlyContinue -Verbose } } Until (!$ProcessesFound) |
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
Sub Удалить_Списание_На_Расходы() | |
Dim rng As Range | |
Dim cell As Range | |
Dim searchText As String | |
searchText = "Списание на расходы" ' Текст для поиска и удаления | |
' Определяем используемую область на активном листе | |
Set rng = ActiveSheet.UsedRange | |