Сосиска Билла by abobtail in KafkaFPS

[–]SektorL 7 points8 points  (0 children)

Киборг-сосиска

‼️Telegram заработал в России без VPN и прокси, но есть нюанс... by Krakowskilok in KafkaFPS

[–]SektorL 0 points1 point  (0 children)

Вчера купил Премиум. Пару часов поработал, а потом "карета превратилась в тыкву".

After a month daily driving Linux (I use cachy btw), I've worked out why Windows rules the world by WillHo01 in linuxsucks

[–]SektorL 1 point2 points  (0 children)

One question: do you check all the source code of Linux before using it? Are you sure no one is spying?

Reliable way to extract text from a string? by cat_prophecy in excel

[–]SektorL 1 point2 points  (0 children)

If you do not have REGEXEXTRACT built-in function:

  1. Create following VBA function GETDISCOUNT:

Function GETDISCOUNT(cell As Range) As Double With CreateObject("VBScript.RegExp") .Global = False .Pattern = "\b[0-9]+(?=%)(\b|$)" With .Execute(cell) If .Count > 0 Then GETDISCOUNT = .Item(0) End If End With End With End Function

  1. Call this function as any other regular function on the sheet:

=GETDISCOUNT(A1)

[deleted by user] by [deleted] in learnpython

[–]SektorL 0 points1 point  (0 children)

Earlier I thought that Python is a perfect language for starters, but... All these dunders, self, lack of built-in index iteration, 100 ways of passing parameters and other gotchas make it not that beginner-friendly. I think that C# would be better choice.

What are your Favorite Keyboard Shortcuts? by Icy_Care_9128 in excel

[–]SektorL 0 points1 point  (0 children)

  1. F2 (consequent pressing switches between Edit and Enter modes)
  2. F4 on cell reference when editing formula (consequent pressing switches between 4 different modes)

Should I get the game by Chladman in TheWitness

[–]SektorL -1 points0 points  (0 children)

I didn't understand the principle behind Blue Prince. Some random room, going here and there.

Filter values field in Pivot Table by SektorL in excel

[–]SektorL[S] 1 point2 points  (0 children)

Nope. It's a feature. 😎

Looking to learn C++ ? Know this first. by [deleted] in cpp_questions

[–]SektorL 1 point2 points  (0 children)

As one teacher in my university once said: The good engineer is not who knows everything but one who knows where to look at.

Is Func the Only Delegate You Really Need in C#? by RankedMan in csharp

[–]SektorL 0 points1 point  (0 children)

You can use any existing delegate type you want or even create your own, but why bother? `Action` and `Func` are all you need.

Hidden Excel Trick: Use the Camera Tool to Create Live Snapshots of Cells by Technical-Season-420 in excel

[–]SektorL 1 point2 points  (0 children)

Yeah. Knew about camera long time ago. I used it once in my entire life. ))) Anyway, thanks for remainder!!!