Skip to content

Instantly share code, notes, and snippets.

View mehmetkurt's full-sized avatar
🏛️
B2B & B2C Pro

Mehmet KURT mehmetkurt

🏛️
B2B & B2C Pro
View GitHub Profile
@mehmetkurt
mehmetkurt / LinkedIn Hack Remove All Messages
Last active December 1, 2022 17:47
LinkedIn.com Remove All Messages : LinkedIn.com Hack
/*
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');
@mehmetkurt
mehmetkurt / LinkedIn Bulk Invite
Last active May 30, 2018 14:19
LinkedIn Bulk Invite : LinkedInHack
/*
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();
@mehmetkurt
mehmetkurt / codeislife eğitim - Angular 6 Dersleri 3 - İleri Seviye Visual Studio Code Kullanımı
Created June 8, 2018 09:21
codeislife eğitim - Angular 6 Dersleri 3 - İleri Seviye Visual Studio Code Kullanımı
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
@mehmetkurt
mehmetkurt / Kısa Yollar
Created June 10, 2018 22:53
codeislife eğitim - Angular 6 Dersleri 4 - Visual Studio Code Kullanımı
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.
@mehmetkurt
mehmetkurt / JwtToken.cs
Last active January 16, 2024 17:57
C# Create Jwt Token
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
@mehmetkurt
mehmetkurt / vsremoveblanklines.txt
Last active October 28, 2018 21:17
Remove Blank Lines Regex - Visual Studio 20XX
^(?:[\t ]*(?:\r?\n|\r))+
@mehmetkurt
mehmetkurt / gitoverridepull.txt
Created October 28, 2018 21:16
Git force pull to overwrite local files
git fetch --all
git reset --hard origin/develop
git pull origin develop
@mehmetkurt
mehmetkurt / gitpushnewlocalbranchtoremote.txt
Created November 1, 2018 09:31
Git push a new local branch to a remote Git repository and track it too?
In Git 1.7.0 and later, you can checkout a new branch:
git checkout -b <branch>
Edit files, add and commit. Then push with the -u (short for --set-upstream) option:
git push -u origin <branch>
@mehmetkurt
mehmetkurt / removesqlgolines.txt
Last active November 26, 2018 12:25
Delete SQL GO Lines Regex
https://stackoverflow.com/a/12453161
^GO\r($\n)
@mehmetkurt
mehmetkurt / GitCheatSheet.md
Last active May 19, 2023 11:31
Git Cheat Sheet