Skip to content

Instantly share code, notes, and snippets.

View ramazansancar's full-sized avatar
📚
Study

Ramazan Sancar ramazansancar

📚
Study
View GitHub Profile
@ramazansancar
ramazansancar / command.sh
Created January 20, 2023 08:44
Windows App Update Command
winget upgrade --all
const fetch = require('node-fetch');
const { readFileSync, writeFileSync } = require('fs');
const filePath = "./radarrTorrents.json" // where to store info about current torrents being downloaded
const maxAcceptedDownloadTime = 6000000; // any torrent that takes longer than this time (in milliseconds) to download is abandonded
const maxFileSize = 4000000000 // any torrent greater than this size (in bytes) is exempt from the time limit restriction
const waitTime = 600000; // how much time (in milliseconds) to give the torrent to find peers and lower it's download time
const dateLocale = "en-GB";
const dateOptions = { dateStyle: 'short', timeStyle: 'short' };
const fetch = require('node-fetch');
const { readFileSync, writeFileSync } = require('fs');
const filePath = "./radarrTorrents.json" // where to store info about current torrents being downloaded
const maxAcceptedDownloadTime = 6000000; // any torrent that takes longer than this time (in milliseconds) to download is abandonded
const maxFileSize = 4000000000 // any torrent greater than this size (in bytes) is exempt from the time limit restriction
const waitTime = 600000; // how much time (in milliseconds) to give the torrent to find peers and lower it's download time
const dateLocale = "en-GB";
const dateOptions = { dateStyle: 'short', timeStyle: 'short' };
[{"id":193,"name":"Acıbadem Mehmet Ali Aydınlar\r\nÜniversitesi","city":"İstanbul","founded":null,"type":null,"website":"http://www.acibadem.edu.tr","numberOfStudent":null},{"id":194,"name":"Adana Alparslan Türkeş Bilim Ve\r\nTeknoloji Üniversitesi","city":"Adana","founded":null,"type":null,"website":"http://www.atu.edu.tr","numberOfStudent":null},{"id":195,"name":"Adıyaman Üniversitesi","city":"Adıyaman","founded":null,"type":null,"website":"http://www.Adıyaman.edu.tr/","numberOfStudent":null},{"id":196,"name":"Afyon Kocatepe Üniversitesi","city":"Afyon","founded":null,"type":null,"website":"http://www.aku.edu.tr","numberOfStudent":null},{"id":197,"name":"Afyonkarahisar Sağlik Bilimleri\r\nÜniversitesi","city":"Afyon","founded":null,"type":null,"website":"www.afsu.edu.tr","numberOfStudent":null},{"id":198,"name":"Ağrı İbrahim Çeçen Üniversitesi","city":"Ağrı","founded":null,"type":null,"website":"http://www.agri.edu.tr","numberOfStudent":null},{"id":199,"name":"Akdeniz Üniversitesi","city":"Antalya","founde
@ramazansancar
ramazansancar / Application Tracking System List.json
Last active December 13, 2022 07:00
Application Tracking System (ATS) List source by angel.co Recruit
[
{
"name": "Greenhouse",
"shortName": "greenhouse"
},
{
"name": "Lever",
"shortName": "lever"
},
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>İÜ Bilgisayar Programcılığı Final Tarihi</title>
<style>
body {
text-align: center;
padding: 70px 50px;
background: #0D1A29;
@ramazansancar
ramazansancar / SMS_Providers_Table.md
Last active December 1, 2022 15:01
SMS Send API Provider List
Gateway Bulk SMS MMS Premium Free Countries
Twilio checked checked checked cancel Global
Zipwhip cancel cancel checked cancel Global
Kaleyra checked cancel checked cancel Global
Telnyx checked cancel checked cancel United States
SMS.to checked cancel checked checked Global
SendPulse checked cancel checked cancel Global
Octopush checked cancel checked checked Global
SL Interactive checked cancel checked checked Africa
@ramazansancar
ramazansancar / content.js
Last active November 15, 2022 12:01
JSON Viewer Extension
var port = chrome.runtime.connect(),
collapsers,
options,
jsonObject,
rawData,
errorLocs = [];
function displayError(error, loc, offset) {
var locKey = loc.first_column + ';' +
loc.first_line + ';' +
@ramazansancar
ramazansancar / 2022-10-(27-28-29)-İstanbul-Konserler.md
Last active October 28, 2022 15:35
İzmir ve İstanbul'da gerçekleşecek olan 29 Ekim Konserleridir.

İstanbul 29 Ekim Konserleri

Sanatçı Tarih - Saat Konum
MADRİGAL 27 Ekim 2022 Perşembe - 20.00 Galata Kulesi Meydanı
KALBEN 28 Ekim 2022 Cuma - 21.00 Cumhuriyet Etkinlik Alanı – Beylikdüzü
BEGE & SELDA BAĞCAN 29 Ekim 2022 Cumartesi - 18.30 Üsküdar Meydanı
HALUK LEVENT 29 Ekim 2022 Cumartesi - 19.30 Ataşehir Bulvarı
PİNHANİ 29 Ekim 2022 Cumartesi - 20.00 Yahya Kemal Beyatlı Gösteri Merkezi – Küçükçekmece
SERDAR ORTAÇ 29 Ekim 2022 Cumartesi - 20.00 Milli Egemenlik Parkı – Bahçelievler
@ramazansancar
ramazansancar / gri.com.tr-script.js
Last active October 16, 2022 16:55
Gri.com.tr 'de tüm uzantıları seçme kodu - https://www.gri.net/domain-kayit.php - Google Chrome Inspect(Öğeyi Denetle/İncele) 'de Console 'a yazmanız yeterli. Network 'den kontrol edebilirsiniz. Bizim yaptığımız test sonucunda ~3-3,5dk sürdü. 509 Byte gelen veriler boş olanlar. Yüksek olanlar ise dolu veriler anlamına geliyor. Status=(Pending) o…
$(".multi-tld-list > li > input").each(function () {
$("input").each(function () {
return this.checked = true
});
});