Skip to content

Instantly share code, notes, and snippets.

View xtrmstep's full-sized avatar
🏠
Working from home

Alexander Goida xtrmstep

🏠
Working from home
  • Sofia, Bulgaria
View GitHub Profile
@xtrmstep
xtrmstep / dynamic_postgresql_command.sql
Created November 27, 2023 10:58
Shows several things about PostgreSQL: how to use multi-statement query in query window, output message and use metadata
DO
$do$
declare
r record;
query_cmd text;
begin
for r in select table_name from information_schema.tables where table_schema = 'public' and table_name like 'prefix%'
loop
query_cmd := format('delete from %s where CONDITION', r.table_name);
-- raise notice '%', query_cmd;
@xtrmstep
xtrmstep / url-query-parameter.js
Created February 20, 2023 08:33
Add or update URL query parameter in JavaScript
// usage:
// 'http://www.website.com/'.urlQueryParameter('id', 2) => http://www.website.com/?id=2
// 'http://www.website.com/?type=1'.urlQueryParameter('id', 2) => http://www.website.com/?type=1&id=2
String.prototype.isString = true;
String.prototype.urlQueryParameter = function(key, value) {
var uri = this;
if (uri.isString) {
var regEx = new RegExp("([?|&])" + key + "=.*?(&|$)", "i");
var separator = uri.indexOf('?') !== -1 ? "&" : "?";
@xtrmstep
xtrmstep / object_dump.js
Created February 20, 2023 07:32
Object dump of an object during execution of JavaScript code
function odump(object, depth, max) {
depth = depth || 0;
max = max || 2;
if (depth > max) return false;
var indent = "";
for (var i = 0; i < depth; i++) indent += " ";
var output = "";
for (var key in object) {
output += "n" + indent + key + ": ";
switch (typeof object[key]) {
@xtrmstep
xtrmstep / get_spark_dataframe_size.py
Created January 26, 2023 11:49
Calculating the size of a Spark data frame
files = [
"file://path"
]
df = spark.read.json(files)
catalyst_plan = df._jdf.queryExecution().logical()
df_size_read = spark._jsparkSession.sessionState().executePlan(catalyst_plan).optimizedPlan().stats().sizeInBytes()
@xtrmstep
xtrmstep / flatten_spark_dataframe.py
Created January 10, 2023 17:06
Flatten Spark Dataframe
# source: https://stackoverflow.com/a/50156142/2833774
def flatten(schema, prefix=None):
fields = []
for field in schema.fields:
name = prefix + '.' + field.name if prefix else field.name
alias_name = name.replace(".", "__")
dtype = field.dataType
if isinstance(dtype, pst.ArrayType):
dtype = dtype.elementType
@xtrmstep
xtrmstep / README.md
Created November 27, 2022 16:18 — forked from roachhd/README.md
EMOJI cheatsheet 😛😳😗😓🙉😸🙈🙊😽💀💢💥✨💏👫👄👃👀👛👛🗼🔮🔮🎄🎅👻

EMOJI CHEAT SHEET

Emoji emoticons listed on this page are supported on Campfire, GitHub, Basecamp, Redbooth, Trac, Flowdock, Sprint.ly, Kandan, Textbox.io, Kippt, Redmine, JabbR, Trello, Hall, plug.dj, Qiita, Zendesk, Ruby China, Grove, Idobata, NodeBB Forums, Slack, Streamup, OrganisedMinds, Hackpad, Cryptbin, Kato, Reportedly, Cheerful Ghost, IRCCloud, Dashcube, MyVideoGameList, Subrosa, Sococo, Quip, And Bang, Bonusly, Discourse, Ello, and Twemoji Awesome. However some of the emoji codes are not super easy to remember, so here is a little cheat sheet. ✈ Got flash enabled? Click the emoji code and it will be copied to your clipboard.

People

:bowtie: 😄

@xtrmstep
xtrmstep / readme.md
Last active November 18, 2022 18:35 — forked from StevenACoffman/ send_metric_to_statsd.sh
Send a metric to StatsD from bash

SENDING METRICS TO STATSD WITH A SHELL ONE-LINER

NOTE: From here

Etsy’s great post about tracking every release and has some good tips about tracking releases with statsd and graphite (including some essential graphite config tweaks). I was wondering how to do this from within a shell script, and I had to dig through lots of StatsD code and examples to find this snippet. I forget where I eventually found it, and thought it’d make it easier to find.

Deploy scripts are just one place where a concise and safe way to record a metric/event in important. From Etsy’s blog, using vertical lines to represent distinct events (code deployments) to give more context to the login trends:

Sending a metric from the command line, with netcat or curl, is just one bit of ‘glue’ that is essential for pulling t

@xtrmstep
xtrmstep / send-logs-to-gcp-logging.md
Last active August 14, 2022 12:40
How to send logs to GCP Cloud Logging

Custom Logs in GCP Logging

Logs can be sent to GCP logging very simple.

Basic Usage

You need to install the package google-cloud-logging.

Then the code will looks somehting like this:

@xtrmstep
xtrmstep / apache_airflow_readings.md
Created August 12, 2022 05:51
Apache Airflow Readings
@xtrmstep
xtrmstep / docker_image_build_notes.md
Created August 12, 2022 05:46
List of key notes about building and using Docker images

Here I gathered answers to small pitfalls which from time to time appears because you’re not doing some actions often. Such actions include using of .dockerignore, mounting files, SSL certificates for web servers in containers, etc.

Building of Docker images

  1. The file want be applied if it’s not located in the same directory where you run docker build command.
  2. Building of an image will fail if you use specific file names which you are ignoring. For example, if you write in Dockerfile COPY filetoignore.txt . and you are ignoring such file(s) in .dockerignore, you’ll get an error
  3. Paths inside Dockerfile are relative to the folder where you’re running command docker build and not to the one where your Dockerfile is located.
  4. Relative paths should use only current or child folders, since the parent one (or through it) is out of Docker context during building.

Docker-compose