Skip to content

Instantly share code, notes, and snippets.

View R4wm's full-sized avatar
💝
tab tab tab...

r4wm R4wm

💝
tab tab tab...
View GitHub Profile
@R4wm
R4wm / alert.py
Created December 27, 2023 21:06
#!/usr/bin/env python3
import sys
import requests
import redis
import socket
import pathlib
import site
teams_path = pathlib.Path(__file__).absolute().parent.parent.parent
site.addsitedir(teams_path)
@R4wm
R4wm / testimony.md
Last active December 31, 2023 16:48
a brief draft of my testimony

What do you trust for your salvation

I trust in Jesus Christ work on the cross finished for my salvation. He did all that is necessary for me to pay my sin debt and inherit his righteousness. He died for my sins, and he rose from the grave for my justification.

How did you come to understand mid-Acts Pauline right division ?

I used to be a Baptist for approximately 16 years. One day I decided to get serious about the gospel so others could also be saved. I started by going to the train station and sharing the gospel with complete strangers who were willing to listen As I started sharing (copying what I heard from the pulpit for many years), I found my self to be contrary in my instructions such as "Your saved by grace and not of works" then I would tell them that they need to "say this prayer and mean it from their heart" and "you need to be willing to turn from your sin" .. I started spending time studying on my own and trying to make sense of this

@R4wm
R4wm / qmk_cheetsheet.sh
Created November 27, 2023 14:47
qmk cheet sheet
qmk flash -b lily58_rev1_layout_mine.hex.hex
@R4wm
R4wm / create_indexes.sh
Last active July 17, 2023 17:30
create indexes in elasticsearch
#!/bin/bash
today=date "+%Y.%m.%d"
soc_prefix="soc-"
bot_prefix="bot_event-"
rate_limits_prefix="rate_limits-"
rate_limiting_enforcer_prefix="rate_limiting_enforcer-"
postfix="-000001"
@R4wm
R4wm / delete_indexes.sh
Created July 17, 2023 17:15
delete indexes
#!/bin/bash
list_of_index=""
source ~/gitlab/soc/utils/es/cmd/bash_rc
# {
# "error": {
# "root_cause": [
# {
# "type": "too_long_http_line_exception",
# "reason": "An HTTP line is larger than 4096 bytes."
# }
@R4wm
R4wm / projects.README.md
Created June 6, 2023 14:37
projects.README.md
  • create encrypted personal linux server
  • create a beacon to track ip address of personal server
@R4wm
R4wm / Dockerfile
Last active January 6, 2023 07:05
setup hoyj clickhouse docker instance
[r4wm@todo hoyj_clickhouse_database]$ cat Dockerfile
FROM yandex/clickhouse-server
RUN apt update
COPY create_database.sh .
COPY create_media_table.sql .
VOLUME /home/r4wm/hoyj_clickhouse_database:/var/lib/clickhouse
EXPOSE 8123/tcp
[r4wm@todo hoyj_clickhouse_database]$
@R4wm
R4wm / romans6.md
Last active July 6, 2022 17:21
Romans 6 personal outline

Chapter 6

  • we have a choice on who to serve
  • True baptism, into Jesus Christ, into His death
    • I am buried WITH Him by baptism into death
      • I shall also live with Him
      • This is NOTHING related to water baptism (washing away of sins)
  • The old man is crucified with Him
  • I am not under the law, I am under grace
    • Dead unto sin
  • This means that sin has no hold on me. It cant condemn me anymore. Sin is nullified even if/when I commit the act
@R4wm
R4wm / webster_short.sh
Created July 6, 2022 17:20
webster command line
#!/bin/bash
key=$(cat ~/.webster/config.json | jq .key | sed s/\"//g)
curl -s "https://www.dictionaryapi.com/api/v3/references/collegiate/json/$1?key=$key" | jq .[0].shortdef
@R4wm
R4wm / daysfromnow.html
Created May 27, 2022 18:03
simple tool to help brandy with work stuff
<html>
<head>
<style>
.calendar-wrapper {
width: 360px;
margin: 3em auto;
padding: 2em;
border: 1px solid #dcdcff;
border-radius: 5px;
background: #fff;