Misyonumuz

Toplumun her kesimine yazılım hizmeti sunmak, yazılım sektöründe iş imkanı oluşturarak ülkemize hizmet etmek, çalışma arkadaşlarımızın sürekli gelişmesini ve güven içinde çalışmasını sağlamak.

Business Growth

Many variations of at Lorem Ipsum but the majority have suffered. Lorem Ipsum the majority suffered.

Business Sustainability

Many variations of at Lorem Ipsum but the majority have suffered. Lorem Ipsum the majority suffered.

Business Performance

Many variations of at Lorem Ipsum but the majority have suffered. Lorem Ipsum the majority suffered.

Business Organization

Many variations of at Lorem Ipsum but the majority have suffered. Lorem Ipsum the majority suffered.

Dedicated Teams

Many variations of at Lorem Ipsum but the majority have suffered. Lorem Ipsum the majority suffered.

24X7 support

Many variations of at Lorem Ipsum but the majority have suffered. Lorem Ipsum the majority suffered.

Blog

Windows Sunucuda React uygulamanız için Http to Https işlemi nasıl yapılır
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.web>
       <customErrors mode="Off" />
</system.web>
<system.webServer>
        <rewrite>
            <rules>
                <rule name="herhangibiretiket" stopProcessing="true">
                    <match url="(.*)" />
                    <conditions>
                        <add input="{HTTPS}" pattern="^OFF$" />
                    </conditions>
                    <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" />
                </rule>
					<rule name="ReactRouter Routes" stopProcessing="true">
        <match url=".*" />
        <conditions logicalGrouping="MatchAll">
          <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
          <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
          <add input="{REQUEST_URI}" pattern="^/(docs)" negate="true" />
        </conditions>
        <action type="Rewrite" url="index.html" />
      </rule>
            </rules>
        </rewrite>

</system.webServer>
</configuration>
Javascript- karekter sansürleme işlemi

Javascript- karekter sansürleme işlemi

Kredi kartı mesaj bilgilerinde, kargo bilgilerinde çoğu zaman gördüğümüz bir kelime içerisinde belli sayıda joker karekterler(“*” vesaire) bulunmakta. Joker karekterlerin amacı belli seviyede güvenlik sağlamaktadır, pekala bu javascripte nasıl yapılabilir

function sansurle(deger, sayi) {
        var part1 = "";
        var part2 = "";
        var sonuc = "";
        const sansurBaslangici = sayi;
        for (var index = 0; index < deger.length; index++) {
            var element = deger[index];
            part1 = element.substring(0, sansurBaslangici);
            part2 = element.substring(sansurBaslangici, element.length);
            for (var i = 0; i < part2.length; i++) {


                part2 = part2.replace(part2[i], "*");
            }
            element = part1 + part2;
            sonuc += element + " ";
        }
        return sonuc;
    }