Skip to content

Instantly share code, notes, and snippets.

View baymac's full-sized avatar
👋

Parichay Barpanda baymac

👋
View GitHub Profile
@eoinahern
eoinahern / client.js
Last active October 21, 2021 17:49
connecting to ktor websocket endpoints with simple node.js client (dont really use node a lot)
const WebSocket = require('ws')
//setup input from console
var stdin_input = process.stdin;
stdin_input.setEncoding("utf-8");
//connect socket!!
const url = "ws://localhost:8080/output_all";
const connection = new WebSocket(url);
@miguelmota
miguelmota / uint8_to_hex.cpp
Last active August 16, 2024 13:02
C++ uint8_t to hex string
#include <sstream>
#include <iostream>
#include <iomanip>
std::string uint8_to_hex_string(const uint8_t *v, const size_t s) {
std::stringstream ss;
ss << std::hex << std::setfill('0');
for (int i = 0; i < s; i++) {
@vitalyisaev2
vitalyisaev2 / personal_access_token.py
Last active April 26, 2024 05:02
Script for obtaining Gitlab API Personal Access Token
#!/usr/bin/python3
"""
Script that creates Personal Access Token for Gitlab API;
Tested with:
- Gitlab Community Edition 10.1.4
- Gitlab Enterprise Edition 12.6.2
- Gitlab Enterprise Edition 13.4.4
"""
import sys
import requests
@Geoff-Ford
Geoff-Ford / composing-software.md
Last active November 10, 2024 09:04
Eric Elliott's Composing Software Series

Eric Elliott's "Composing Software" Series

A collection of links to the excellent "Composing Software" series of medium stories by Eric Elliott.

Edit: I see that each post in the series now has index, previous and next links. However, they don't follow a linear flow through all the articles with some pointing back to previous posts effectively locking you in a loop.

@nepsilon
nepsilon / how-to-ssh-agent.md
Last active June 3, 2024 05:05
Remember passphrases with ssh-agent — First published in fullweb.io issue #31

How to use ssh-agent to cache your SSH credentials?

Contributed by Fabien Loudet, Linux SysAdmin at Rosetta Stone

Tired of always having to enter your SSH key passphrase when logging in to remote machines? Here comes ssh-agent. Enter the passphrase once and it will keep it in memory for you

Using ssh-agent in your shell session: