Skip to content

Instantly share code, notes, and snippets.

View stevebaros's full-sized avatar
🎧
Yes am available

Stephen Barungi stevebaros

🎧
Yes am available
View GitHub Profile
@ross-u
ross-u / README.md
Last active January 12, 2025 07:15
HTTP Methods & Status Codes - Cheatsheet

HTTP Methods & Status Codes - Cheatsheet



------
@FilipBartos
FilipBartos / axios-response-interceptor.js
Last active April 11, 2024 07:03
Axios response interceptor for access token refresh supporting 1 to N async requests
let isAlreadyFetchingAccessToken = false
let subscribers = []
function onAccessTokenFetched(access_token) {
subscribers = subscribers.filter(callback => callback(access_token))
}
function addSubscriber(callback) {
subscribers.push(callback)
}
@MrChrisJ
MrChrisJ / 20170127--Bitfinex_Hacked_Coins.csv
Last active April 13, 2022 08:15
20170127--Bitfinex_Hacked_Coins.csv
We can make this file beautiful and searchable if this error is corrected: It looks like row 7 should actually have 8 columns, instead of 1 in line 6.
Transaction Hash,Block Height,Date,Receiving address,Peer Cluster,Peer Name,Peer Category,Sent
a6a1c3e02bfe6ba0d49205841a066b7655070cf15d88baf7ff626051cfe39ee4,449876,2017-01-25 03:04:35,1D38A8TJHAQfEGdoirE1WpXPEh7NMNHT5L,1D38A8TJHAQfEGdoirE1WpXPEh7NMNHT5L,,,4.04631276
af16fea36591e43651d0f90c689a191e71f39f139c8c6c76ca6a94de1defbad9,449876,2017-01-25 03:04:35,1nL6u6dyeF5cp2vTvsG2jjfMqxQm1Z3fb,1D38A8TJHAQfEGdoirE1WpXPEh7NMNHT5L,,,4.0455642
443706320e569141074a7ba6d3b488b3142928e386f1d4ca3ad0cbc3ea58eeb6,449876,2017-01-25 03:04:35,1D1LKbyLcWSsayaQwZYpE81Wnguhfgx14i,1D38A8TJHAQfEGdoirE1WpXPEh7NMNHT5L,,,3.99877463
025e804d46520b0350dc5673df47feb2ea6c2690bd21e9e3fccc28e81c4cbfac,449876,2017-01-25 03:04:35,15RDbnXTpUeHqdK8S4CCVeukQseYs6kEBK,1D38A8TJHAQfEGdoirE1WpXPEh7NMNHT5L,,,3.9926336
162dd46b873da7348f9a482063e0a39923b1a43fda29d0f0a374fa0de5407279,449876,2017-01-25 03:04:35,172gmUnva3vF1XsPwjkzJmwD8iFkbiqZse,1D38A8TJHAQfEGdoirE1WpXPEh7NMNHT5L,,,4.07657504
a67bf29545ee84fe3a3ad986a1a8d5d0d6fce54b51eaff5ca58e052eb
@stevebaros
stevebaros / emoji_cheat_sheet.json
Created December 31, 2016 13:20 — forked from jnwelzel/emoji_cheat_sheet.json
Emoji cheat sheet
{
PEOPLE: [":smile:",":laughing:",":blush:",":smiley:",":relaxed:",":smirk:",":heart_eyes:",":kissing_heart:",":kissing_closed_eyes:",":flushed:",":relieved:",":satisfied:",":grin:",":wink:",":stuck_out_tongue_winking_eye:",":stuck_out_tongue_closed_eyes:",":grinning:",":kissing:",":kissing_smiling_eyes:",":stuck_out_tongue:",":sleeping:",":worried:",":frowning:",":anguished:",":open_mouth:",":grimacing:",":confused:",":hushed:",":expressionless:",":unamused:",":sweat_smile:",":sweat:",":disappointed_relieved:",":weary:",":pensive:",":disappointed:",":confounded:",":fearful:",":cold_sweat:",":persevere:",":cry:",":sob:",":joy:",":astonished:",":scream:",":tired_face:",":angry:",":rage:",":triumph:",":sleepy:",":yum:",":mask:",":sunglasses:",":dizzy_face:",":imp:",":smiling_imp:",":neutral_face:",":no_mouth:",":innocent:",":alien:",":yellow_heart:",":blue_heart:",":purple_heart:",":heart:",":green_heart:",":broken_heart:",":heartbeat:",":heartpulse:",":two_hearts:",":revolving_hearts:",":cupid:",":sparkling_
@Idnan
Idnan / RestControllerTrait.php
Last active February 6, 2023 11:35
Laravel Lumen: RESTful trait
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
trait RestControllerTrait {
public function index() {
$model = self::MODEL;