This file contains 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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Timers; | |
namespace EffectsManager | |
{ | |
class Program | |
{ | |
static void Main(string[] args) |
This file contains 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
fun <B, T : B, R : B> Flow<T>.exceptionTransform(errorHandler: suspend (exception: Exception) -> R): Flow<B> { | |
return flow { | |
var fromDownstream = false | |
try { | |
collect { value -> | |
try { | |
emit(value) | |
} catch (e: Exception) { | |
fromDownstream = true | |
throw e |
This file contains 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
Privacy policy | |
YaPlace will record camera sensor and microphone data, which is used for the purpose of taking photos and recording videos. | |
YaPlace requires permission to "access photos, media and files on your devices", as this permission is required for Android to save resultant photos and videos to your device. | |
Location permission is required for geotagging of photos. If enabled, your location is encoded in the saved image and video files (and it is only used for this purpose). | |
Internet acess is used for communicating with our database server to recognise objects on taken pictures. |
This file contains 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
<?xml version="1.0" ?> | |
<!DOCTYPE PISI SYSTEM "https://solus-project.com/standard/pisi-spec.dtd"> | |
<PISI> | |
<Source> | |
<Name>teamviewer</Name> | |
<Homepage>https://www.teamviewer.com/</Homepage> | |
<Packager> | |
<Name>Automated Packaging</Name> | |
<Email>[email protected]</Email> | |
</Packager> |
This file contains 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
module func !Для того, чтобы где-то содержать функцию - объявим модуль | |
implicit none !как обычно | |
contains !модуль содержит, используется один раз за модуль | |
function deg(number,power) result(product) !обявим функцию | |
real*8, intent(in) :: number, power !входные данные, intent(in) указывает, | |
! что эти переменные мы не имеем права | |
! менять их внутри функции | |
real*8 product !переменная должна называтсья так же как и в объявлении | |
product = number**power !дальше пишем что функция делает |