This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.tiktok.com/@tuckystrike/video/7241379755084254490 | |
https://www.tiktok.com/@p3ga31/video/7233785295181827346 | |
https://www.tiktok.com/@brianmonarchcomedy/video/7240152611477851438 | |
https://www.tiktok.com/@dicoblaze/video/7235536825975098629 | |
https://www.tiktok.com/@ronrivera38/video/7160133433182768426 | |
https://www.tiktok.com/@vx2431/video/7188368917440531717 | |
https://www.tiktok.com/@the_paratrooper_patriot/video/7015759944783908101 | |
https://www.tiktok.com/@jsmncrdns/video/6858831492634758406 | |
https://www.tiktok.com/@thalassophile719beauty/video/7188702895590739243 | |
https://www.tiktok.com/@johnnystoscano/video/7149757273299111211 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# >>> conda initialize >>> | |
# !! Contents within this block are managed by 'conda init' !! | |
__conda_setup="$('/home/oem/miniconda3/bin/conda' 'shell.zsh' 'hook' 2> /dev/null)" | |
if [ $? -eq 0 ]; then | |
eval "$__conda_setup" | |
else | |
if [ -f "/home/oem/miniconda3/etc/profile.d/conda.sh" ]; then | |
. "/home/oem/miniconda3/etc/profile.d/conda.sh" | |
else | |
export PATH="/home/oem/miniconda3/bin:$PATH" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
onverting the provided Ruby on Rails code to PostgreSQL stored procedure is not a straightforward process, and it will require a significant amount of effort to re-implement the same functionality in PostgreSQL. | |
Here are the general steps you can follow: | |
Identify the data models and relationships: You need to identify the data models and relationships used in the Rails code and translate them into PostgreSQL data structures, including tables, columns, indexes, and constraints. | |
Define the stored procedure parameters: You need to define the stored procedure parameters based on the input parameters used in the Rails code. | |
Implement the main logic: You need to implement the main logic of the Rails code in the stored procedure. This will include querying the relevant tables, filtering the data based on the input parameters, and returning the result. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Token Based API Access for Supabase | |
-- | |
-- How to configure Supabase (https://supabase.com/) to generate and accept API tokens. | |
-- | |
-- (c) 2022 Felix Zedén Yverås | |
-- Provided under the MIT license (https://spdx.org/licenses/MIT.html) | |
-- | |
-- Disclaimer: This file is formatted using pg_format. I'm not happy with the result but | |
-- prefer to follow a tool over going by personal taste. | |
-- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo yum update | |
# Installing ZSH | |
sudo yum -y install zsh | |
# Check ZSH has been installed | |
zsh --version | |
# Install "util-linux-user" because "chsh" is not available by default | |
# See https://superuser.com/a/1389273/599050 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package app | |
import ( | |
"context" | |
"fin-go/routes/accounts" | |
"fin-go/routes/analysisTrees" | |
"fin-go/routes/categories" | |
"fin-go/routes/itemTokens" | |
"fin-go/routes/plaidHelper" | |
"fin-go/routes/resetDB" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# weechat script to display image in terminal | |
# (tested in termite, which is based on vte-ng) | |
# requirements: | |
# * weechat (of course) | |
# * w3m (for w3mimgdisplay) | |
# * imlib2-webp (optional, for webp support) | |
# | |
# save this script as ~/.weechat/python/test.py and load using | |
# /python load test.py | |
# in weechat. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# coding: utf-8 | |
import os | |
os.chdir('/home/jp/Documents/gitWorkspace') | |
CODE_DIR = 'PTI' | |
os.chdir(f'./{CODE_DIR}') |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Author: Oleh Pshenychnyi | |
# Date: 13.02.2021 | |
# | |
# Kill all processes matching a provided pattern. | |
# | |
# Usage: | |
# | |
# >> bash killer.sh celery |