This file contains hidden or 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 Microsoft.IdentityModel.Tokens; | |
| using System; | |
| using System.IdentityModel.Tokens.Jwt; | |
| using System.Linq; | |
| using System.Security.Claims; | |
| using System.Text; | |
| namespace JwtTestConsoleApp | |
| { | |
| class Program |
This file contains hidden or 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
| Visual Studio Kod, her şeyden önce bir editördür ve son derece verimli kaynak kodu düzenlemesi için ihtiyacınız olan özellikleri içerir. Bu konu sizi editörün temellerine götürecek ve kodunuzla birlikte hareket etmenizi sağlayacak. | |
| Alt+MouseLeftClick | |
| Tıklanan yerleri işaretler ve bir yazı yazdığınızda işaretli yerlerin hepsi etkilenir. | |
| Shift+Alt+Down | |
| bulunduğunuz satırı alt satıra kopyalar. | |
| Shift+Alt+Üst | |
| Bulunduğunuz satırı üst satıra kopyalar. |
This file contains hidden or 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
| Visual Studio Code, editörü kendisini kontrol etmenizi sağlayan güçlü bir komut satırı arayüzüne sahiptir. | |
| Komut satırı seçenekleri aracılığıyla dosyaları açabilir, uzantıları yükleyebilir, | |
| ekran dilini değiştirebilirsiniz. | |
| Vs code electronjs ile yapılmıştır. | |
| https://electronjs.org/ | |
| Yeni Dosya oluşturmak : | |
| echo > index.html | |
| Powershell |
This file contains hidden or 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
| /* | |
| Open Chrome Developer Tools | |
| Select Console Tab | |
| Paste the following code | |
| and press the Enter! | |
| Subscribe Youtube Channel : https://www.youtube.com/codeislifes | |
| */ | |
| function wait(ms) { | |
| var start = new Date().getTime(); |
This file contains hidden or 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
| /* | |
| Open Chrome Developer Tools | |
| Select Console Tab | |
| Paste the following code | |
| and press the Enter! | |
| Subscribe Youtube Channel : https://www.youtube.com/codeislifes | |
| */ | |
| var removeMessages = function () { | |
| let messageListContainer = document.querySelector('.msg-conversations-container__conversations-list.list-style-none.ember-view'); |
NewerOlder