
Aleksey
30.03.2018
08:38:45
"пиво" это образно

Ivan
30.03.2018
08:39:02
Купи еще один мак

Алексей
30.03.2018
08:45:25
Ребят, у меня одного такая проблема "Failed to connect to GitHub to update the CocoaPods/Specs specs repo - Please check if you are offline, or that GitHub is down" ?
Пытаюсь обновить зависимости

Google

Виталий
30.03.2018
08:48:05
Resolved Issues
Toolbars or multiline labels in stack views no longer result in an Auto Layout misalignment on the canvas. This issue resulted in problems such as zero width multi-line labels
слава богам
надо обновляться

Сергей
30.03.2018
08:48:22

Виталий
30.03.2018
08:48:35
Interface Builder
из Xcode 9.3 Release Notes
New Features
Projects created in Xcode 9.3 use a new project format that is incompatible with earlier versions of Xcode.
еще бы поправили, чтоб xcode намертво не зависал при drag & drop ассетов из файндера, и тогда вообще жизнь наладится

Ilya
30.03.2018
08:53:38
Чет хз. Всегда работало норм

Виталий
30.03.2018
08:54:54
там от количества зависит
если хватануть больше чем надо, он умирает
и приходится порциями по чуть чуть добавлять

Сергей
30.03.2018
08:55:47

Google

Виталий
30.03.2018
08:56:09

Аня
30.03.2018
08:56:22
Учусь в университете, первый курс, из Харькова, про группу узнала на сайте #whois

Сергей
30.03.2018
08:57:00

Виталий
30.03.2018
08:57:04

Аня
30.03.2018
08:57:09
Да

Алексей
30.03.2018
08:57:13
че за универ?

Аня
30.03.2018
08:57:49
Искала канал для c++, потому что сегодня кр по алгоритмам c++,а мы плюсы не учили, и натолкнулась на эту группу.
ХНУРЭ

Виталий
30.03.2018
08:58:08

Сергей
30.03.2018
08:58:13

Аня
30.03.2018
08:58:36
Сама не знаю ?

Сергей
30.03.2018
08:59:25
Ох, Виталь, принимай
У нас все новички на свифт проходят Виталю

Виталий
30.03.2018
09:00:51
?

Aleksey
30.03.2018
09:01:57
да что вы ее свфит то сразу? может проникнется скобочками

Сергей
30.03.2018
09:02:35
Был же вопрос Лех, она ответила

Aleksey
30.03.2018
09:03:26
а точно, не сразу заметил это да

Alexey
30.03.2018
09:05:19

Ivan
30.03.2018
09:18:01
Искала плюсы, пришла на свифт. Неплохо.

Artem
30.03.2018
09:19:04
Бедняга, думала тут в группе кодинг обсуждают

Google

Ivan
30.03.2018
09:19:09

Aleksey
30.03.2018
09:19:27

Ivan
30.03.2018
09:19:27

Artem
30.03.2018
09:19:39
это на деле

Aleksey
30.03.2018
09:19:47
Через недельку займусь

Ivan
30.03.2018
09:20:19

Aleksey
30.03.2018
09:27:56
Пораб

tox
30.03.2018
09:35:34
а что с предикейтом не так NOT (SELF contains '1' OR '2')" ?
или с этим SELF CONTAINS[cd] '1' OR '2'
let pre = NSPredicate(format: s) - падает

Anton
30.03.2018
09:44:49
Contains 1 or contains 2?

-_-
30.03.2018
09:47:47

Kei
30.03.2018
09:50:22

tox
30.03.2018
10:02:36

Аня
30.03.2018
10:02:46

tox
30.03.2018
10:09:23
а как то можно проверить вилидна ли строка для NSPredicate(format: s) ?

-_-
30.03.2018
10:12:37

Аня
30.03.2018
10:12:46
Ааа Ахах

Tattobu
30.03.2018
10:18:59

Google

Tattobu
30.03.2018
10:19:54
Потому что там универ только один, им Каразина, остальные это институты …

-_-
30.03.2018
10:20:57

Евгений
30.03.2018
10:24:10
свифторы, вам обновок подвезли https://www.raywenderlich.com/187826/whats-new-in-swift-4-1


Аня
30.03.2018
10:28:53
Additional problems for LAB1 in DST
• Write a method reverse() that rearranges a given linked list L in reverse order. So the result is L with the original nodes in reverse order. (Do not use deleteItem() and addItem() methods.) After return from the function, print the list L.
• Write a method reverse_copy() that rearranges nodes of a given linked list L in reverse order. So the result is in linked list L1. (Use deleteItem() and addItem() methods in the code of reverse_copy().) After return from the function, print the list L1.
• Write a method ListEqual() to test if the calling list L1 and the argument linked lists L2 are equal (i.e., have the same values in the same order). Print both L1 and L2.
• Write a method insertDuplicate() which inserts duplicate integer values right into the original sorted linked list L. Note: If list L has duplicate values they are not duplicated! They are left as they are. For ex., original list L: (1 2 3); result list L: (1 1 2 2 3 3). But: original list L: (1 2 2 2 3); result list L: (1 1 2 2 2 3 3)
• Write a method copyDuplicate() which copies sorted linked list L into L1, inserting duplicate integer values into L2. Note: If list L has duplicate values they are not duplicated in L1! They are left as they are. For ex., original list L: (1 2 3); result list L1: (1 1 2 2 3 3). But: original list L: (1 2 2 2 3); result list L1: (1 1 2 2 2 3 3)
• Write a function copyReverse() which returns a copy L1 of a linked list L in reverse order.
• Write a function to return a copy of only a part of an original linked list from node#k to node#j.
For ex., original List1: (1 2 3 4 5 6 7 8 9); k = 2, j = 6 result List2: (3 4 5 6 7).
• Write a method to split a linked list into two lists at a specific point in the list. E.g., inList = (10 20 30 40 50) loc = 3, outlist1 = (10 20 30) outlist2 = (40 50)
• Write a method to merge together two ordered linked lists L1 and L2 to get an ordered result in L1.
• Write a method to merge together two ordered linked lists L1 and L2 to get an ordered result in L3.
• Write a method that returns a linked list L3 that is the union of two ordered linked lists L1 and L2.
• Write a method that returns a linked list L3 that is the intersection of two ordered linked lists L1 and L2.
• Write a method that returns a linked list L3 that is the difference of two ordered linked lists L1 - L2 (in set theory meaning of the difference)
• Write a method to determine if all the elements in an ordered linked list L2 are contained in another ordered linked list L1. (returns: true or false)
• Write a method which removes duplicate items in a sorted linked list. For ex., original List: (1 2 2 3 3 3 3 3 3); result List: (1 2 3).
• Write a method read() to build a sorted linked list of integer values entered by a user from a keyboard in an arbitrary sequence.
• Write a method int deleteItem(int item) that never changes the value of the pointer to the 1st node of a linked list. (Actually, the pointer is changed only when, in a single-node list, the only node is deleted.)
• For ordered linked lists of integer items, write a recursive function bool search(int item) that returns true if item is in the list and false otherwise. (Simple)
• For ordered linked lists of integer items, write a recursive function int sumItems() that returns the total sum of items stored in the list. (Simple)
• For ordered linked lists of integer items, write a recursive function int sumItems() that returns the total sum of even items stored in the list. (Simple)
• For ordered linked lists of integer items, write a function void printReverse() that prints data items of the list from the end to its beginning without changing the sequence of items in the original list. (Simple)

Admin
ERROR: S client not available

Аня
30.03.2018
10:28:55
Такое
Ахахах

-_-
30.03.2018
10:35:11
А по какой причине у вас нет теории?))

Евгений
30.03.2018
10:46:24
Аня это вуз какой-то?

Aleksey
30.03.2018
10:46:49
ХИРЭ

Donna Anna
30.03.2018
10:47:42
то есть даешь студиозусу очень кропотливое дурацкое задание он кидается гуглить, знакомится с хорошими людьми... профит

Аня
30.03.2018
10:48:42
Потому что препод не знает си шарп
И его любимый язык с++
И все
А то что мы его не учили его не колышет

Евгений
30.03.2018
10:49:13
ХИРЭ
прикольно. С 2004 года задачи почти не поменялись, даже с учетом другого вуза

Аня
30.03.2018
10:52:16
??

Виталий
30.03.2018
11:23:41
хз как можно считать себя программистом не зная плюсы

Google

Valery
30.03.2018
11:26:08
спасибо ему скажите
А за что спасибо-то? Я практически уверен, что это никак не поможет им нормально познать плюсы

505
30.03.2018
11:26:09
так надо начинать общение с сишниками

Aleksey
30.03.2018
11:37:52
начинается, потом скобочки

Ivan
30.03.2018
11:39:24
Да ладно. Студенчество не для того, чтобы знать. А для того чтобы уметь познавать. Иногда ещё для того чтобы уметь делиться полученными знаниями :)

Виталий
30.03.2018
11:43:57
это да, им видать новых лекарств в комитет завезли

Евгений
30.03.2018
11:59:45

Виталий
30.03.2018
12:10:08

Евгений
30.03.2018
12:11:03

Виталий
30.03.2018
12:13:01

Евгений
30.03.2018
12:13:56
хосспаде, дичь какая
у нас бы он из комнаты не вышел

Roman
30.03.2018
13:12:41
Такой вопрос, есть ли чем можно было бы контролировать что бы во всех файлах были копирайты. Имеется в виду, что кто то из команды скачал проект и начал там чето педалить. И что бы не поправлять его по 100500 раз в пул реквестах мол пофикси копирайты. Знаю есть кастомные темплейты, но они насколько я понимаю чисто в xcode а не в проекте. Может есть какое то правило в каком то линтере которое с этим поможет?

Илья
30.03.2018
13:45:08

Roman
30.03.2018
13:45:30
хммм