The requested URL /mvcless/news was not found on this server.
Нужно ли ставить запрет копирования текста на киносайте?
Смотрел в консоли, что он делает с разметкой. Он её вычищает полностью.
clientThanksCarousel.slick('unslick').empty();
у вас удаляется сам элемент #clientThanksCarousel
со страницы, либо вы его как-то еще удаляете. Так как при следующем обращении у вас ошибка. <span data-title="Контакти">Контакти<i class="fa fa-anchor" aria-hidden="true"></i></span>
#include <iostream>
#include <vector>
#include <string>
#include <sstream>
std::string to_string(std::vector<char> data)
{
std::stringstream ss;
for(size_t i = 0; i < data.size(); ++i)
{
if(i != 0)
{
ss << data[i];
}
}
return ss.str();
}
int main()
{
std::vector<char> str;
char c;
std::cout << "Enter text: ";
while(std::cin.get(c) && c != '\n')
{
str.push_back(c);
}
std::string result = to_string(str);
std::cout << result;
}
#include <Windows.h>
#include <stdlib.h>
#include <math.h>
int main()
{
float x;
HDC hDC = GetDC( GetConsoleWindow( ) );
HPEN Pen = CreatePen( PS_SOLID, 2, RGB(255, 255, 255));
SelectObject( hDC, Pen );
MoveToEx( hDC, 0, 85, NULL );
LineTo( hDC, 200, 85 );
MoveToEx( hDC, 100, 0, NULL );
LineTo( hDC, 100, 170 );
for ( x = -8.0f; x <= 8.0f; x += 0.01f ) // O(100,85) - center
{
MoveToEx( hDC, 10*x+100, -10*sin(x)+85, NULL );//10 - scale
LineTo( hDC, 10*x+100, -10*sin(x)+85 );
}
system("pause");
}
$(selector).mouseenter(function() {
$(this).stop().animate({...});
});
$(selector).mouseleave(function() {
$(this).stop().animate({...});
});