Skip to content

Instantly share code, notes, and snippets.

View returnednull's full-sized avatar
🎯
Focusing

returnednull

🎯
Focusing
View GitHub Profile
@thewh1teagle
thewh1teagle / main.py
Last active April 8, 2025 20:00
Bypass Chrome v20 encryption and extract cookies using Chrome Remote Debugging without admin rights.
"""
Bypass Chrome v20 appbound encryption and extract cookies using Chrome Remote Debugging without admin rights.
Including HTTP Only and Secure cookies.
Developed by: github.com/thewh1teagle
License: MIT
For educational purposes only.
Usage:
pip install websocket-client requests
python main.py
@popescuaaa
popescuaaa / useAxios.ts
Created August 16, 2021 13:12
react typescript axios hook
/* eslint-disable react-hooks/exhaustive-deps */
import { useEffect, useState } from "react";
import axios, { Method } from "axios";
/**
* https://github.com/ali-master/react-typescript-hooks-sample
*/
const useFetch = (
url: string,
method: Method,
@berkocan
berkocan / Hava Durumu (Api) Json Kodu.php
Last active November 28, 2021 21:23
Hava Durumu (Api) Json Kodu | Hava Durumu Api
Hava durumunu json ile api olarak sitenize eklemek için aşağıdaki kodları kullanabilirsiniz. ▼☟↓
<?php
$JSON = json_decode(file_get_contents('https://api.genelpara.com/embed/hava-durumu.json'), true);
?>
<ul>
<li>
<span>İstanbul</span>
<span>Hava: <?php echo $JSON['istanbul']['hava']; ?></span>
<span>Sıcaklık: <?php echo $JSON['istanbul']['sicaklik']; ?></span>
@berkocan
berkocan / Günlük Korona Verileri (Api) Json Kodu.php
Last active December 21, 2020 18:39
Günlük Korona Verileri (Api) Json Kodu | Korona Api
Günlük korona verilerini json ile api olarak sitenize eklemek için aşağıdaki kodları kullanabilirsiniz. ▼☟↓
<?php
$JSON = json_decode(file_get_contents('https://api.genelpara.com/embed/korona.json'), true);
?>
<ul>
<li>
<span>Korona</span>
<span>Tarih: <?php echo $JSON['korona']['tarih']; ?></span>
<span>Test: <?php echo $JSON['korona']['gunluk_test']; ?></span>
@berkocan
berkocan / Parite Kurları (Api) Json Kodu.php
Last active May 24, 2022 19:23
Parite Kurları (Api) Json Kodu, Sitene Parite Kurları Ekle | EUR/USD, Dolar/Euro (Api) Json
Kripto paraları json ile api olarak sitenize eklemek için aşağıdaki kodları kullanabilirsiniz. ▼☟↓
<?php
$JSON = json_decode(file_get_contents('https://api.genelpara.com/embed/parite.json'), true);
?>
<ul>
<li>
<span>EUR/USD</span>
<span>Fiyat: <?php echo $JSON['EUR/USD']['satis']; ?></span>
<span>Değişim: <?php echo $JSON['EUR/USD']['degisim']; ?></span>
@berkocan
berkocan / Hisse Senetleri (Api) Json Kodu.php
Last active September 1, 2023 14:25
Hisse Senetleri (Api) Json Kodu, Sitene Hisse Senetleri Ekle | Hisse, Borsa (Api) Json
Hisse senetleri json ile api olarak sitenize eklemek için aşağıdaki kodları kullanabilirsiniz. ▼☟↓
<?php
$JSON = json_decode(file_get_contents('https://api.genelpara.com/embed/borsa.json'), true);
?>
<ul>
<li>
<span>AKBNK</span>
<span>Fiyat: <?php echo $JSON['AKBNK']['satis']; ?></span>
<span>Değişim: <?php echo $JSON['AKBNK']['degisim']; ?></span>
@berkocan
berkocan / Kripto Paralar (Api) Json Kodu.php
Last active April 17, 2024 20:04
Kripto Paralar (Api) Json Kodu, Sitene Kripto Paraları Ekle | Bitcoin, BTC (Api) Json
Kripto paraları json ile api olarak sitenize eklemek için aşağıdaki kodları kullanabilirsiniz. ▼☟↓
<?php
$JSON = json_decode(file_get_contents('https://api.genelpara.com/embed/kripto.json'), true);
?>
<ul>
<li>
<span>Bitcoin</span>
<span>Fiyat: <?php echo $JSON['BTC']['satis']; ?></span>
<span>Değişim: <?php echo $JSON['BTC']['degisim']; ?></span>
@berkocan
berkocan / Altın Fiyatları (Api) Json Kodu.php
Last active January 30, 2024 10:21
Altın Fiyatları (Api) Json Kodu, Sitene Altın Fiyatları Ekle | Gram, Çeyrek Altın (Api) Json
Altın fiyatlarını json ile api olarak sitenize eklemek için aşağıdaki kodları kullanabilirsiniz. ▼☟↓
<?php
$JSON = json_decode(file_get_contents('https://api.genelpara.com/embed/altin.json'), true);
?>
<ul>
<li>
<span>Gram Altın</span>
<span>Fiyat: <?php echo $JSON['GA']['satis']; ?></span>
<span>Değişim: <?php echo $JSON['GA']['degisim']; ?></span>
@berkocan
berkocan / Döviz Kurları (Api) Json Kodu.php
Last active December 5, 2023 22:25
Döviz Kurları (Api) Json Kodu, Sitene Döviz Kurları Ekle | Dolar, Euro (Api) Json
Döviz kurlarını json ile api olarak sitenize eklemek için aşağıdaki kodları kullanabilirsiniz. ▼☟↓
<?php
$JSON = json_decode(file_get_contents('https://api.genelpara.com/embed/doviz.json'), true);
?>
<ul>
<li>
<span>USD</span>
<span>Fiyat: <?php echo $JSON['USD']['satis']; ?></span>
<span>Değişim: <?php echo $JSON['USD']['degisim']; ?></span>
@0xjac
0xjac / private_fork.md
Last active May 29, 2025 19:28
Create a private fork of a public repository

The repository for the assignment is public and Github does not allow the creation of private forks for public repositories.

The correct way of creating a private frok by duplicating the repo is documented here.

For this assignment the commands are:

  1. Create a bare clone of the repository. (This is temporary and will be removed so just do it wherever.)

git clone --bare [email protected]:usi-systems/easytrace.git