В этом видео, научимся создавать SSH соединение к удаленному серверу с помощью VSCode.
Покупка VDS cо скидкой на первый месяц:
Промокод: 6481114441
Исходный код урока и полный курс можно получить здесь:
✅
🤝 Важные ссылки:
✅ Все новости в телеграм канале:
✅ Обсудить уроки можно в чате:
✅ Обсудить уроки можно в ВК:
✅ Эксклюзивный контент — Boosty:
✅ Поддержать канал:
√ Тэги для поиска:
#ssh #remotessh #docker #dockercompose #clientserver #ios #mac #kotlin #android #java #androidstudio #firebase #telegram #создатьприложение #backend про не работает битрикс.
Для каких типов данных используется обобщенный класс List из пространства имен System.Collections.Generic?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace cecs_342_lab2
{
public static class Extensions
{
public static bool LuhnAlgorithm(this string input)
{
// Based on pseudo code given by Wikipedia
char[] chars = input.ToCharArray();
Int32 sum = 0;
// Wait, why are we starting at 1 and not 0?
// Because the Wikipedia ASCII chart considers the first character to be 1
Int32 digit = 1;
foreach(char c in chars.Reverse())
{
Int32 number = (Int32)(c — 48);
if(digit % 2 == 0)
{
number = number * 2;
}
if (number > 9)
{
// Split and add the digits up separately
number = (number % 10) + ((number — (number % 10)) / 10);
}
sum += number;
}
Int32 sum2 = sum * 9;
return (sum2 % 10) == 0;
}
}
}