diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index b5efff7..0000000 --- a/.gitmodules +++ /dev/null @@ -1,3 +0,0 @@ -[submodule "server/toolkits/core"] - path = server/toolkits/core - url = https://github.com/Freedium-cfd/core diff --git a/Dockerfile b/Dockerfile index 657e82b..4bd3453 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,9 @@ -FROM python:3.12.3-slim +FROM python:3.12.3 +# -slim ENV DEBIAN_FRONTEND=noninteractive -RUN apt update && apt upgrade -y && apt install gcc -y && apt clean # && rm /var/lib/apt/lists/* + +RUN pip install poetry && poetry config virtualenvs.create false WORKDIR /app @@ -16,14 +18,12 @@ RUN pip3 install --no-cache-dir ./database-lib COPY ./core ./core RUN pip3 install --no-cache-dir ./core -# COPY ./server ./server +COPY ./web ./web -COPY ./requirements.txt ./ -RUN pip3 install --no-cache-dir -r requirements.txt +WORKDIR /app/web -COPY ./requirements-fast.txt ./ -RUN pip3 install --no-cache-dir -r requirements-fast.txt +RUN poetry install -EXPOSE 7080 +# EXPOSE 7080 CMD ["python3", "-m", "server", "server"] diff --git a/DockerfileDante b/DockerfileDante deleted file mode 100644 index 5484127..0000000 --- a/DockerfileDante +++ /dev/null @@ -1,4 +0,0 @@ -FROM shturman/dante:1.4.2 - -ENV DEBIAN_FRONTEND=noninteractive -RUN apt update && apt upgrade -y && apt install -y curl && apt clean && rm -rf /var/lib/apt/lists/* \ No newline at end of file diff --git a/README.md b/README.md index 04125d0..9ffddc0 100644 --- a/README.md +++ b/README.md @@ -8,10 +8,6 @@ ## FAQ -### What is happened to GitHub organization? - -Our whole Github organization is not public for now. Reddit community, that was beginning all of that unfourtunately also gone. So we have moved to Codeberg - ### Why did we create Freedium? In mid-June to mid-July 2023, Medium changed their paywall method, and all old paywall bypass methods we had stopped working. So I became obsessed with the idea of creating a service to bypass Medium's paywalled posts. Honestly I am not a big fan of Medium, but I sometimes read articles to improve my knowledge. @@ -20,27 +16,20 @@ In mid-June to mid-July 2023, Medium changed their paywall method, and all old p In the first version of Freedium, we reverse-engineered Medium.com's GraphQL endpoints and built our own parser and toolkits to show you unpaywalled Medium posts. Unfortunately, Medium closed this loophole and nowadays we just pay subscriptions and share access through Freedium. Sometimes we got a bugs because of the self-written parser, but we are working to make Freedium bug-free. -### What language are being used? - -We use Python, with Jinja template builder, and some JS magic in Frontend :) - ### Wow! I would like to contribute to Freedium. How can I do that? We need volunteers who have Medium subscriptions because we might get banned by Medium. And if you developer you can start from the this (https://codeberg.org/Freedium-cfd/web) repository. ### Plans, future? -Speed up Freedium, and probably create open source Medium frontend in next life +Speed up Freedium, add support for more services than just Medium and (probably) create open source Medium frontend (in next life) -## Tech stack: +## Technologies: -- FastAPI, Gunicorn, Unicorn as worker, -- Tailwinds CSS v3 -- Dragonfly (Redis like key-value database) -- Jinja2 -- Python 3.9+ -- Caddy -- Sentry +- Backend: Python 3.9+, Unicorn, FastAPI, Jinja2, Sentry +- Frontend: Tailwinds CSS v3 +- Database: PostgreSQL, Dragonfly (Redis and Memcached compatible key-value database) +- Utils: Caddy, Docker, Docker Compose, Cloudflare WARP proxy (wgcf) ## Local run: @@ -50,18 +39,38 @@ Requirements: - git - Linux. Officially, we can't guarantee that Freedium will work on other OS. -We need configure our Freedium instance. Copy `.env_template` to `.env` configuration file and set values, required for you. +To configure your Freedium instance, follow these steps: -``` -git clone https://codeberg.org/Freedium-cfd/web/ ./web --depth 1 -cd ./web -cp .env_template .env -# do some changes in .env, if you want -sudo docker-compose -f docker-compose-dev.yml up -``` +1. Clone the repository: + + ``` + git clone https://codeberg.org/Freedium-cfd/web/ ./web --depth 1 + cd ./web + ``` + +2. Create and configure the environment file: + + ``` + cp .env_template .env + ``` + + Open the `.env` file and adjust the values as needed for your setup. + +3. Set up the Docker network: + + ``` + sudo docker network create caddy_net + ``` + +4. Start the Freedium services: + ``` + sudo docker compose -f ./docker-compose/docker-compose.yml up + ``` And now you can access local instance of Freedium by opening browser and type `http://localhost:6752`. +These steps will set up and run your local Freedium instance. + ## TODO: - Integrate library notifiers - https://github.com/liiight/notifiers diff --git a/CaddyfileDev b/caddy/CaddyfileDev similarity index 96% rename from CaddyfileDev rename to caddy/CaddyfileDev index b357642..43e1cb4 100644 --- a/CaddyfileDev +++ b/caddy/CaddyfileDev @@ -106,12 +106,6 @@ } - handle_path /sitemap.xml { - root * /static/sitemap.xml - file_server - } - - handle_path /websocket { respond "Access denied" 403 } @@ -208,6 +202,6 @@ route /* { - reverse_proxy web:7080 + reverse_proxy freedium_web:7080 } } \ No newline at end of file diff --git a/CaddyfileDevTemplate b/caddy/CaddyfileDevTemplate similarity index 75% rename from CaddyfileDevTemplate rename to caddy/CaddyfileDevTemplate index f02d5df..03b432a 100644 --- a/CaddyfileDevTemplate +++ b/caddy/CaddyfileDevTemplate @@ -6,6 +6,6 @@ {{ template }} route /* { - reverse_proxy web:7080 + reverse_proxy freedium_web:7080 } } diff --git a/CaddyfileMaintance b/caddy/CaddyfileMaintance similarity index 100% rename from CaddyfileMaintance rename to caddy/CaddyfileMaintance diff --git a/CaddyfileProd b/caddy/CaddyfileProd similarity index 96% rename from CaddyfileProd rename to caddy/CaddyfileProd index 2ee0f4d..7dc2e47 100644 --- a/CaddyfileProd +++ b/caddy/CaddyfileProd @@ -107,12 +107,6 @@ freedium.cfd { } - handle_path /sitemap.xml { - root * /static/sitemap.xml - file_server - } - - handle_path /websocket { respond "Access denied" 403 } @@ -209,6 +203,6 @@ freedium.cfd { route /* { - reverse_proxy web:7080 + reverse_proxy freedium_web:7080 } } \ No newline at end of file diff --git a/CaddyfileProdTemplate b/caddy/CaddyfileProdTemplate similarity index 84% rename from CaddyfileProdTemplate rename to caddy/CaddyfileProdTemplate index 8b1abb6..73371b4 100644 --- a/CaddyfileProdTemplate +++ b/caddy/CaddyfileProdTemplate @@ -7,6 +7,6 @@ freedium.cfd { {{ template }} route /* { - reverse_proxy web:7080 + reverse_proxy freedium_web:7080 } } diff --git a/DockerfileCaddy b/caddy/Dockerfile similarity index 100% rename from DockerfileCaddy rename to caddy/Dockerfile diff --git a/scripts/generate_caddy_rules.py b/caddy/generate_caddy_file.py similarity index 100% rename from scripts/generate_caddy_rules.py rename to caddy/generate_caddy_file.py diff --git a/static/android-chrome-192x192.png b/caddy/static/android-chrome-192x192.png similarity index 100% rename from static/android-chrome-192x192.png rename to caddy/static/android-chrome-192x192.png diff --git a/static/android-chrome-512x512.png b/caddy/static/android-chrome-512x512.png similarity index 100% rename from static/android-chrome-512x512.png rename to caddy/static/android-chrome-512x512.png diff --git a/static/apple-touch-icon.png b/caddy/static/apple-touch-icon.png similarity index 100% rename from static/apple-touch-icon.png rename to caddy/static/apple-touch-icon.png diff --git a/static/browserconfig.xml b/caddy/static/browserconfig.xml similarity index 100% rename from static/browserconfig.xml rename to caddy/static/browserconfig.xml diff --git a/static/favicon-16x16.png b/caddy/static/favicon-16x16.png similarity index 100% rename from static/favicon-16x16.png rename to caddy/static/favicon-16x16.png diff --git a/static/favicon-32x32.png b/caddy/static/favicon-32x32.png similarity index 100% rename from static/favicon-32x32.png rename to caddy/static/favicon-32x32.png diff --git a/static/favicon.ico b/caddy/static/favicon.ico similarity index 100% rename from static/favicon.ico rename to caddy/static/favicon.ico diff --git a/static/humans.txt b/caddy/static/humans.txt similarity index 100% rename from static/humans.txt rename to caddy/static/humans.txt diff --git a/static/mstile-144x144.png b/caddy/static/mstile-144x144.png similarity index 100% rename from static/mstile-144x144.png rename to caddy/static/mstile-144x144.png diff --git a/static/mstile-150x150.png b/caddy/static/mstile-150x150.png similarity index 100% rename from static/mstile-150x150.png rename to caddy/static/mstile-150x150.png diff --git a/static/mstile-310x150.png b/caddy/static/mstile-310x150.png similarity index 100% rename from static/mstile-310x150.png rename to caddy/static/mstile-310x150.png diff --git a/static/mstile-310x310.png b/caddy/static/mstile-310x310.png similarity index 100% rename from static/mstile-310x310.png rename to caddy/static/mstile-310x310.png diff --git a/static/mstile-70x70.png b/caddy/static/mstile-70x70.png similarity index 100% rename from static/mstile-70x70.png rename to caddy/static/mstile-70x70.png diff --git a/static/robots.txt b/caddy/static/robots.txt similarity index 100% rename from static/robots.txt rename to caddy/static/robots.txt diff --git a/static/safari-pinned-tab.svg b/caddy/static/safari-pinned-tab.svg similarity index 100% rename from static/safari-pinned-tab.svg rename to caddy/static/safari-pinned-tab.svg diff --git a/static/security.txt b/caddy/static/security.txt similarity index 100% rename from static/security.txt rename to caddy/static/security.txt diff --git a/static/site.webmanifest b/caddy/static/site.webmanifest similarity index 100% rename from static/site.webmanifest rename to caddy/static/site.webmanifest diff --git a/core/requirements-dev.txt b/core/requirements-dev.txt deleted file mode 100644 index 8c8b520..0000000 --- a/core/requirements-dev.txt +++ /dev/null @@ -1,3 +0,0 @@ -djlint==1.32.1 -ruff==0.0.261 -black==23.7.0 \ No newline at end of file diff --git a/core/requirements.txt b/core/requirements.txt index a01ed85..ea4c53d 100644 --- a/core/requirements.txt +++ b/core/requirements.txt @@ -9,4 +9,5 @@ bs4==0.0.1 Jinja2==3.1.2 beautifulsoup4==4.12.2 async-lru==2.0.4 +orjson==3.10.6 asyncer \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index 7f1a63c..0000000 --- a/docker-compose.yml +++ /dev/null @@ -1,282 +0,0 @@ -# https://blog.thelazyfox.xyz/how-to-create-healthchecks-for-docker/ - -version: '3.7' - -services: - caddy_freedium: - build: - context: ./ - dockerfile: ./DockerfileCaddy - # container_name: caddy_freedium - cap_add: - - NET_ADMIN - ports: - - "6752:6752" - volumes: - - ./CaddyfileDev:/etc/caddy/Caddyfile # - ./CaddyfileMaintance:/etc/caddy/Caddyfile - - caddy_data:/data - - caddy_config:/config - - ./static:/static - networks: - - caddy_net - healthcheck: - test: [ "CMD-SHELL", "curl -f http://localhost:6752/ --max-time 80 --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3 Safari/605.1.15'" ] - interval: 30s - start_period: 20s - timeout: 80s - retries: 3 - # restart: always - stop_grace_period: 2m - - web: - build: - context: ./ - dockerfile: ./Dockerfile - command: python3 -m server server - environment: - - "PROXY_LIST=socks5://wgcf1:1080,socks5://wgcf2:1080" - volumes: - # - ./.env:/app/.env - # - ./server/user_data/logs:/app/server/user_data/logs - - .:/app - - ./core/medium_parser/:/app/medium_parser - - ./core/rl_string_helper/:/app/rl_string_helper - # develop: - # watch: - # - action: rebuild - # path: ./server - # target: /app/server - # - action: rebuild - # path: ./core - # target: /app/core - # - action: rebuild - # path: ./rl_string_helper - # target: /app/rl_string_helper - # - action: rebuild - # path: ./database-lib - # target: /app/database-lib - # - action: rebuild - # path: "**/requirements.txt" - # - action: rebuild - # path: "**/requirements-fast.txt" - ports: - - "7080:7080" - networks: - - caddy_net - # healthcheck: - # test: ["CMD-SHELL", "curl -f http://web:7080/ --max-time 80 --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3 Safari/605.1.15'"] - # interval: 30s - # start_period: 20s - # timeout: 80s - # retries: 3 - # restart: always - mem_limit: 4g - stop_grace_period: 2m - - ########## WGCF PROXY ----1---- ########## - - wgcf1: - image: neilpang/wgcf-docker:latest - container_name: wgcf1 - volumes: - # - ./wgcf:/wgcf - - /lib/modules:/lib/modules - - ./scripts/entryWGCF.sh:/entry.sh - - /etc/localtime:/etc/localtime:ro - privileged: true - sysctls: - net.ipv6.conf.all.disable_ipv6: 0 - cap_add: - - NET_ADMIN - # ports: - # - "9681:1080" - restart: always - networks: - - caddy_net - healthcheck: - test: curl -fs https://www.cloudflare.com/cdn-cgi/trace | grep -q -E 'warp=(on|plus)' && exit 0 || exit 1 - interval: 5s - timeout: 2s - retries: 10000 - - dante_1: - image: shturman/dante:1.4.2 - container_name: dante_1 - # build: - # context: ./ - # dockerfile: ./DockerfileDante - volumes: - - ./scripts/dante.config:/etc/sockd.conf - - /etc/localtime:/etc/localtime:ro - restart: always - environment: - - CFGFILE=/etc/sockd.conf - network_mode: "service:wgcf1" - depends_on: - wgcf1: - condition: service_healthy - # healthcheck: - # test: curl --proxy socks5://localhost:1080 https://google.com - # interval: 5s - # timeout: 2s - # retries: 5 - - wgcf1_healthcare_service: - build: - context: ./scripts/wgcf-healthcare - dockerfile: Dockerfile - environment: - - TG_TOKEN=${TELEGRAM_BOT_TOKEN} - - TG_CHAT_ID=${TELEGRAM_ADMIN_ID} - - CONTAINERS_TO_RESTART=wgcf1,dante_1 - - PROXY_HOST=wgcf1 - - PROXY_PORT=1080 - - SLEEP_DURATION=30 - # depends_on: - # - dante_1 - restart: always - networks: - - caddy_net - volumes: - - /var/run/docker.sock:/var/run/docker.sock - - /etc/localtime:/etc/localtime:ro - # network_mode: "host" - - ########## WGCF PROXY ----2---- ########## - - wgcf2: - image: neilpang/wgcf-docker:latest - container_name: wgcf2 - volumes: - # - ./wgcf:/wgcf - - /lib/modules:/lib/modules - - ./scripts/entryWGCF.sh:/entry.sh - - /etc/localtime:/etc/localtime:ro - privileged: true - sysctls: - net.ipv6.conf.all.disable_ipv6: 0 - depends_on: - wgcf1: - condition: service_healthy - cap_add: - - NET_ADMIN - # ports: - # - "9681:1080" - restart: always - networks: - - caddy_net - healthcheck: - test: curl -fs https://www.cloudflare.com/cdn-cgi/trace | grep -q -E 'warp=(on|plus)' && exit 0 || exit 1 - interval: 5s - timeout: 2s - retries: 10000 - - dante_2: - image: shturman/dante:1.4.2 - container_name: dante_2 - # build: - # context: ./ - # dockerfile: ./DockerfileDante - volumes: - - ./scripts/dante.config:/etc/sockd.conf - - /etc/localtime:/etc/localtime:ro - restart: always - environment: - - CFGFILE=/etc/sockd.conf - network_mode: "service:wgcf2" - depends_on: - wgcf2: - condition: service_healthy - # healthcheck: - # test: curl --proxy socks5://localhost:1080 https://google.com - # interval: 5s - # timeout: 2s - # retries: 5 - - wgcf2_healthcare_service: - build: - context: ./scripts/wgcf-healthcare - dockerfile: Dockerfile - environment: - - TG_TOKEN=${TELEGRAM_BOT_TOKEN} - - TG_CHAT_ID=${TELEGRAM_ADMIN_ID} - - CONTAINERS_TO_RESTART=wgcf2,dante_2 - - PROXY_HOST=wgcf2 - - PROXY_PORT=1080 - - SLEEP_DURATION=40 - # depends_on: - # - dante_2 - restart: always - networks: - - caddy_net - volumes: - - /var/run/docker.sock:/var/run/docker.sock - - /etc/localtime:/etc/localtime:ro - # network_mode: "host" - - # redis_service: - # image: redis:latest - # networks: - # - caddy_net - # healthcheck: - # test: ["CMD", "redis-cli", "ping"] - # interval: 30s - # start_period: 20s - # timeout: 10s - # retries: 3 - # restart: always - # stop_grace_period: 2m - - redis_service: - image: 'docker.dragonflydb.io/dragonflydb/dragonfly' - ulimits: - memlock: -1 - # expose: - # - 6379 - networks: - - caddy_net - volumes: - - dragonflydata:/data - healthcheck: - test: [ "CMD", "redis-cli", "ping" ] - interval: 30s - start_period: 20s - timeout: 10s - retries: 3 - restart: always - stop_grace_period: 2m - mem_limit: 2g - - postgres: - image: postgres:16.3-alpine3.20 - networks: - - caddy_net - # ports: - # - 5432:5432 - volumes: - # - ~/apps/postgres:/var/lib/postgresql/data - - ./postgres:/var/lib/postgresql/data - environment: - - POSTGRES_PASSWORD=postgres - - POSTGRES_USER=postgres - - POSTGRES_DB=postgres - stop_grace_period: 2m - - autoheal: - restart: always - image: willfarrell/autoheal - environment: - - AUTOHEAL_CONTAINER_LABEL=all - volumes: - - /var/run/docker.sock:/var/run/docker.sock - stop_grace_period: 2m - -volumes: - caddy_data: - caddy_config: - dragonflydata: - - -networks: - caddy_net: - external: true diff --git a/docker-compose/docker-compose.db.yml b/docker-compose/docker-compose.db.yml new file mode 100644 index 0000000..841121d --- /dev/null +++ b/docker-compose/docker-compose.db.yml @@ -0,0 +1,37 @@ +version: '3.7' + +services: + redis_service: + container_name: redis_service + image: 'docker.dragonflydb.io/dragonflydb/dragonfly' + ulimits: + memlock: -1 + networks: + - freedium_net + volumes: + - freedium_dragonflydata:/data + healthcheck: + test: [ "CMD", "redis-cli", "ping" ] + interval: 30s + start_period: 20s + timeout: 10s + retries: 3 + restart: always + stop_grace_period: 2m + mem_limit: 2g + + postgres: + image: postgres:16.3-alpine3.20 + container_name: freedium_postgres + networks: + - freedium_net + volumes: + - ./postgres:/var/lib/postgresql/data + environment: + - POSTGRES_PASSWORD=postgres + - POSTGRES_USER=postgres + - POSTGRES_DB=postgres + stop_grace_period: 2m + +volumes: + freedium_dragonflydata: diff --git a/docker-compose/docker-compose.main.yml b/docker-compose/docker-compose.main.yml new file mode 100644 index 0000000..d0ca040 --- /dev/null +++ b/docker-compose/docker-compose.main.yml @@ -0,0 +1,55 @@ +version: '3.7' + +services: + caddy_freedium: + container_name: caddy_freedium + build: + context: ../caddy + dockerfile: Dockerfile + cap_add: + - NET_ADMIN + ports: + - "6752:6752" + volumes: + - ../caddy/CaddyfileDev:/etc/caddy/Caddyfile + - freedium_caddy_data:/data + - freedium_caddy_config:/config + - ../caddy/static:/static + networks: + - freedium_net + - caddy_net + healthcheck: + test: [ "CMD-SHELL", "curl -f http://localhost:6752/ --max-time 80 --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3 Safari/605.1.15'" ] + interval: 30s + start_period: 20s + timeout: 80s + retries: 3 + stop_grace_period: 2m + + freedium_web: + container_name: freedium_web + build: + context: ../ + dockerfile: Dockerfile + environment: + - "PROXY_LIST=socks5://wgcf1:1080,socks5://wgcf2:1080" + # volumes: + # - ./web:/app/web + # - ./core/medium_parser/:/app/medium_parser + # - ./core/rl_string_helper/:/app/rl_string_helper + ports: + - "7080:7080" + networks: + - freedium_net + mem_limit: 4g + stop_grace_period: 2m + +volumes: + freedium_caddy_data: + freedium_caddy_config: + + +networks: + caddy_net: + external: true + freedium_net: diff --git a/docker-compose/docker-compose.utility.yml b/docker-compose/docker-compose.utility.yml new file mode 100644 index 0000000..e263d3d --- /dev/null +++ b/docker-compose/docker-compose.utility.yml @@ -0,0 +1,12 @@ +version: '3.7' + +services: + autoheal: + container_name: freedium_autoheal + restart: always + image: willfarrell/autoheal + environment: + - AUTOHEAL_CONTAINER_LABEL=all + volumes: + - /var/run/docker.sock:/var/run/docker.sock + stop_grace_period: 2m diff --git a/docker-compose/docker-compose.wgcf.yml b/docker-compose/docker-compose.wgcf.yml new file mode 100644 index 0000000..225913a --- /dev/null +++ b/docker-compose/docker-compose.wgcf.yml @@ -0,0 +1,111 @@ +version: '3.7' + +services: + wgcf1: + image: neilpang/wgcf-docker:latest + container_name: wgcf1 + volumes: + - /lib/modules:/lib/modules + - /etc/localtime:/etc/localtime:ro + - ../wgcf/entry.sh:/entry.sh + privileged: true + sysctls: + net.ipv6.conf.all.disable_ipv6: 0 + cap_add: + - NET_ADMIN + restart: always + networks: + - freedium_net + healthcheck: + test: curl -fs https://www.cloudflare.com/cdn-cgi/trace | grep -q -E 'warp=(on|plus)' && exit 0 || exit 1 + interval: 5s + timeout: 2s + retries: 10000 + + dante_1: + image: shturman/dante:1.4.2 + container_name: dante_1 + volumes: + - ../wgcf/dante/sockd.conf:/etc/sockd.conf + - /etc/localtime:/etc/localtime:ro + restart: always + environment: + - CFGFILE=/etc/sockd.conf + network_mode: "service:wgcf1" + depends_on: + wgcf1: + condition: service_healthy + + wgcf1_healthcare_service: + build: + context: ../wgcf/wgcf-healthcare + dockerfile: Dockerfile + environment: + - TG_TOKEN=${TELEGRAM_BOT_TOKEN} + - TG_CHAT_ID=${TELEGRAM_ADMIN_ID} + - CONTAINERS_TO_RESTART=wgcf1,dante_1 + - PROXY_HOST=wgcf1 + - PROXY_PORT=1080 + - SLEEP_DURATION=30 + restart: always + networks: + - freedium_net + volumes: + - /var/run/docker.sock:/var/run/docker.sock + - /etc/localtime:/etc/localtime:ro + + wgcf2: + image: neilpang/wgcf-docker:latest + container_name: wgcf2 + volumes: + - /lib/modules:/lib/modules + - /etc/localtime:/etc/localtime:ro + - ../wgcf/entry.sh:/entry.sh + privileged: true + sysctls: + net.ipv6.conf.all.disable_ipv6: 0 + depends_on: + wgcf1: + condition: service_healthy + cap_add: + - NET_ADMIN + restart: always + networks: + - freedium_net + healthcheck: + test: curl -fs https://www.cloudflare.com/cdn-cgi/trace | grep -q -E 'warp=(on|plus)' && exit 0 || exit 1 + interval: 5s + timeout: 2s + retries: 10000 + + dante_2: + image: shturman/dante:1.4.2 + container_name: dante_2 + volumes: + - ../wgcf/dante/sockd.conf:/etc/sockd.conf + - /etc/localtime:/etc/localtime:ro + restart: always + environment: + - CFGFILE=/etc/sockd.conf + network_mode: "service:wgcf2" + depends_on: + wgcf2: + condition: service_healthy + + wgcf2_healthcare_service: + build: + context: ../wgcf/wgcf-healthcare + dockerfile: Dockerfile + environment: + - TG_TOKEN=${TELEGRAM_BOT_TOKEN} + - TG_CHAT_ID=${TELEGRAM_ADMIN_ID} + - CONTAINERS_TO_RESTART=wgcf2,dante_2 + - PROXY_HOST=wgcf2 + - PROXY_PORT=1080 + - SLEEP_DURATION=40 + restart: always + networks: + - freedium_net + volumes: + - /var/run/docker.sock:/var/run/docker.sock + - /etc/localtime:/etc/localtime:ro diff --git a/docker-compose/docker-compose.yml b/docker-compose/docker-compose.yml new file mode 100644 index 0000000..37a1a76 --- /dev/null +++ b/docker-compose/docker-compose.yml @@ -0,0 +1,7 @@ +version: '3.7' + +include: + - docker-compose.main.yml + - docker-compose.wgcf.yml + - docker-compose.db.yml + - docker-compose.utility.yml diff --git a/prod.docker-compose.yml b/prod.docker-compose.yml deleted file mode 100644 index 7290f96..0000000 --- a/prod.docker-compose.yml +++ /dev/null @@ -1,82 +0,0 @@ -# https://blog.thelazyfox.xyz/how-to-create-healthchecks-for-docker/ - -version: '3.7' - -services: - caddy: - build: - context: ./ - dockerfile: ./DockerfileCaddy - cap_add: - - NET_ADMIN - ports: - - "80:80" - - "443:443" - volumes: - - ./CaddyfileProd:/etc/caddy/Caddyfile - - caddy_data:/data - - caddy_config:/config - networks: - - web_network - healthcheck: - test: ["CMD-SHELL", "curl http://caddy:80/ --max-time 80"] - interval: 30s - start_period: 20s - timeout: 80s - retries: 3 - restart: always - - web: - build: - context: ./ - dockerfile: ./Dockerfile - command: python3 -m server server - volumes: - - .:/app - expose: - - 7080 - networks: - - web_network - healthcheck: - test: ["CMD-SHELL", "curl http://localhost:7080/ --max-time 60"] - interval: 30s - start_period: 20s - timeout: 80s - retries: 3 - restart: always - mem_limit: 2g - - dragonfly: - image: 'docker.dragonflydb.io/dragonflydb/dragonfly' - ulimits: - memlock: -1 - expose: - - 6379 - networks: - - web_network - volumes: - - dragonflydata:/data - healthcheck: - test: ["CMD", "redis-cli", "ping"] - interval: 30s - start_period: 20s - timeout: 10s - retries: 3 - restart: always - - autoheal: - restart: always - image: willfarrell/autoheal - environment: - - AUTOHEAL_CONTAINER_LABEL=all - volumes: - - /var/run/docker.sock:/var/run/docker.sock - -volumes: - caddy_data: - caddy_config: - dragonflydata: - -networks: - web_network: - driver: bridge diff --git a/requirements-dev.txt b/requirements-dev.txt deleted file mode 100644 index a2a2ac2..0000000 --- a/requirements-dev.txt +++ /dev/null @@ -1,3 +0,0 @@ -djlint==1.32.1 -ruff==0.0.261 -black==23.7.0 diff --git a/requirements-fast.txt b/requirements-fast.txt deleted file mode 100755 index bd0de70..0000000 --- a/requirements-fast.txt +++ /dev/null @@ -1 +0,0 @@ -orjson==3.10.6 diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 18827d6..0000000 --- a/requirements.txt +++ /dev/null @@ -1,12 +0,0 @@ -pickledb==0.9.2 -html5lib==1.1 -sentry-sdk[fastapi]==1.29.2 -loguru==0.6.0 # due to: https://github.com/Delgan/loguru/issues/916 -uvicorn[standard]==0.30.3 -anyio<=4.0.0 # Workaround to: https://github.getafreenode.com/tiangolo/fastapi/discussions/11652 -Jinja2==3.1.2 -fastapi==0.108.0 -gunicorn==21.2.0 -redis[hiredis]==4.6.0 -xkcdpass==1.19.3 -apscheduler==3.10.4 \ No newline at end of file diff --git a/rl_string_helper/rl_string_helper/string_helper.py b/rl_string_helper/rl_string_helper/string_helper.py index a08aa5e..1953358 100644 --- a/rl_string_helper/rl_string_helper/string_helper.py +++ b/rl_string_helper/rl_string_helper/string_helper.py @@ -1,9 +1,10 @@ from loguru import logger -from .logger_trace import trace from .utils import quote_html, quote_symbol from jinja2 import Environment, DebugUndefined, Template -from rl_string_helper.mixins.string_assignment import StringAssignmentMixin_py as StringAssignmentMixin +from rl_string_helper.mixins.string_assignment import ( + StringAssignmentMixin_py as StringAssignmentMixin, +) jinja_env = Environment(undefined=DebugUndefined) @@ -21,9 +22,21 @@ Python uses UTF-8 encoding, which each character is encoded as one byte. So here # TODO: doc! Who will read this noodles lol? # TODO: check cases when UTF-16 character can be more that 2 bytes class RLStringHelper: - __slots__ = ("string", "templates", "replaces", "quote_html_type", "quote_replaces", "_default_bang_char") + __slots__ = ( + "string", + "templates", + "replaces", + "quote_html_type", + "quote_replaces", + "_default_bang_char", + ) - def __init__(self, string: str, quote_html_type: list[str] = ["full"], _default_bang_char: str = "R"): + def __init__( + self, + string: str, + quote_html_type: list[str] = ["full"], + _default_bang_char: str = "R", + ): self.string: str = quote_symbol(string) self.templates = [] self.quote_replaces = [] @@ -31,7 +44,6 @@ class RLStringHelper: self.quote_html_type = quote_html_type self._default_bang_char = _default_bang_char - @trace def pre_utf_16_bang(self, string: str, string_pos_matrix: list): utf_16_bang_list = [] string_len_utf_16 = len(string.encode("utf-16-le")) // 2 @@ -47,7 +59,9 @@ class RLStringHelper: if char_len == 2: char_len_dif = char_len - 1 char_present = self._default_bang_char * char_len_dif - string, string_pos_matrix = self._paste_char(string, string_pos_matrix, new_i + 1, char_present) + string, string_pos_matrix = self._paste_char( + string, string_pos_matrix, new_i + 1, char_present + ) i += 1 utf_16_bang_list.append((i, char_len_dif, i)) i += 1 @@ -62,54 +76,70 @@ class RLStringHelper: string.insert(pos, char) return string, string_pos_matrix - def _delete_char(self, string: str, string_pos_matrix: list, pos: int, char_len: int, old_pos: int): + def _delete_char( + self, + string: str, + string_pos_matrix: list, + pos: int, + char_len: int, + old_pos: int, + ): string.pop(pos) string_pos_matrix.pop(old_pos) for matrix_i in range(pos, len(string_pos_matrix)): if isinstance(string_pos_matrix[matrix_i], int): string_pos_matrix[matrix_i] -= char_len elif isinstance(string_pos_matrix[matrix_i], tuple): - string_pos_matrix[matrix_i] = (string_pos_matrix[matrix_i][0] - char_len, string_pos_matrix[matrix_i][1] - char_len) + string_pos_matrix[matrix_i] = ( + string_pos_matrix[matrix_i][0] - char_len, + string_pos_matrix[matrix_i][1] - char_len, + ) return string, string_pos_matrix - @trace - def post_utf_16_bang(self, string: StringAssignmentMixin, string_pos_matrix: list, utf_16_bang_list: list): + def post_utf_16_bang( + self, + string: StringAssignmentMixin, + string_pos_matrix: list, + utf_16_bang_list: list, + ): string = StringAssignmentMixin(str(string)) post_transbang = 0 for bang_pos, char_len, old_pos in utf_16_bang_list: - string, string_pos_matrix = self._delete_char(string, string_pos_matrix, bang_pos - post_transbang, char_len, old_pos - post_transbang) + string, string_pos_matrix = self._delete_char( + string, + string_pos_matrix, + bang_pos - post_transbang, + char_len, + old_pos - post_transbang, + ) post_transbang += char_len return string, string_pos_matrix - @trace def set_template(self, start: int, end: int, template: str): if not isinstance(template, Template): template = jinja_env.from_string(template) self.templates.append(((start, end), template)) - @trace def set_replace(self, start: int, end: int, replace_with: str): self.replaces.append(((start, end), replace_with)) - @trace - def _render_templates(self, string: str, string_pos_matrix: list, utf_16_bang_list: list): + def _render_templates( + self, string: str, string_pos_matrix: list, utf_16_bang_list: list + ): if not self.templates: return string, string_pos_matrix, utf_16_bang_list templates = reversed(self.templates) updated_text = string - @trace def _get_prefix_len(template_raw: Template, inner_char: str = "{"): template = template_raw.render() return template.find(inner_char) - @trace def _get_suffix_len(template_raw: Template, outer_char: str = "}"): template = template_raw.render() return len(template) - template.rfind(outer_char) - 1 - @trace def update_nested_positions(start, end, prefix_len, suffix_len): for i in range(end, len(string_pos_matrix)): string_pos_matrix[i] += suffix_len + prefix_len @@ -118,9 +148,17 @@ class RLStringHelper: for n in range(len(utf_16_bang_list)): utf_16_bang = utf_16_bang_list[n] if utf_16_bang[2] > end: - utf_16_bang_list[n] = (utf_16_bang[0] + prefix_len + suffix_len, utf_16_bang[1], utf_16_bang[2]) + utf_16_bang_list[n] = ( + utf_16_bang[0] + prefix_len + suffix_len, + utf_16_bang[1], + utf_16_bang[2], + ) elif utf_16_bang[2] > start: - utf_16_bang_list[n] = (utf_16_bang[0] + prefix_len, utf_16_bang[1], utf_16_bang[2]) + utf_16_bang_list[n] = ( + utf_16_bang[0] + prefix_len, + utf_16_bang[1], + utf_16_bang[2], + ) for (start, end), template in templates: if start >= len(string_pos_matrix) or end - 1 >= len(string_pos_matrix): @@ -128,13 +166,23 @@ class RLStringHelper: if start == end: continue - new_start, new_end = string_pos_matrix[start], string_pos_matrix[end - 1] + 1 + new_start, new_end = ( + string_pos_matrix[start], + string_pos_matrix[end - 1] + 1, + ) if new_end < new_start: continue context_text = template.render(text=updated_text[new_start:new_end]) - updated_text_template = jinja_env.from_string("{{ updated_text[:new_start] }}{{ context_text }}{{updated_text[new_end:]}}") - updated_text = updated_text_template.render(updated_text=updated_text, context_text=context_text, new_start=new_start, new_end=new_end) + updated_text_template = jinja_env.from_string( + "{{ updated_text[:new_start] }}{{ context_text }}{{updated_text[new_end:]}}" + ) + updated_text = updated_text_template.render( + updated_text=updated_text, + context_text=context_text, + new_start=new_start, + new_end=new_end, + ) prefix_len = _get_prefix_len(template) suffix_len = _get_suffix_len(template) @@ -142,16 +190,21 @@ class RLStringHelper: return updated_text, string_pos_matrix, utf_16_bang_list - @trace - def _render_replaces(self, string: StringAssignmentMixin, string_pos_matrix: list, utf_16_bang_list: list): + def _render_replaces( + self, + string: StringAssignmentMixin, + string_pos_matrix: list, + utf_16_bang_list: list, + ): if not self.replaces and not self.quote_replaces: return string, string_pos_matrix, utf_16_bang_list string = StringAssignmentMixin(str(string)) replaces = self.replaces + self.quote_replaces - @trace - def update_positions(start: int, end: int, replace_len: int, new_start: int, new_end: int): + def update_positions( + start: int, end: int, replace_len: int, new_start: int, new_end: int + ): pos_len_diff = replace_len - (end - start) for pos_index in range(end, len(string_pos_matrix)): if isinstance(string_pos_matrix[pos_index], int): @@ -176,7 +229,11 @@ class RLStringHelper: for n in range(len(utf_16_bang_list)): utf_16_bang = utf_16_bang_list[n] if utf_16_bang[0] > end: - utf_16_bang_list[n] = (utf_16_bang[0] + pos_len_diff, utf_16_bang[1], utf_16_bang[2]) + utf_16_bang_list[n] = ( + utf_16_bang[0] + pos_len_diff, + utf_16_bang[1], + utf_16_bang[2], + ) for (start, end), replace_with in replaces: new_start, new_end = string_pos_matrix[start], string_pos_matrix[end - 1] @@ -184,7 +241,9 @@ class RLStringHelper: new_end += 1 if isinstance(new_start, tuple) or isinstance(new_end, tuple): - new_start = min(new_start) if isinstance(new_start, tuple) else new_start + new_start = ( + min(new_start) if isinstance(new_start, tuple) else new_start + ) new_end = max(new_end) if isinstance(new_end, tuple) else new_end string[new_start:new_end] = replace_with @@ -192,22 +251,31 @@ class RLStringHelper: return string, string_pos_matrix, utf_16_bang_list - @trace def __str__(self): string = StringAssignmentMixin(self.string) string_pos_matrix = list(range(len(string))) - updated_text, string_pos_matrix, utf_16_bang_list = self.pre_utf_16_bang(string, string_pos_matrix) + updated_text, string_pos_matrix, utf_16_bang_list = self.pre_utf_16_bang( + string, string_pos_matrix + ) if self.quote_html_type: - self.quote_replaces = list(quote_html(str(updated_text), self.quote_html_type)) + self.quote_replaces = list( + quote_html(str(updated_text), self.quote_html_type) + ) if not self.templates and not self.replaces and not self.quote_replaces: return self.string - updated_text, string_pos_matrix, utf_16_bang_list = self._render_templates(updated_text, string_pos_matrix, utf_16_bang_list) - updated_text, string_pos_matrix, utf_16_bang_list = self._render_replaces(updated_text, string_pos_matrix, utf_16_bang_list) - updated_text, string_pos_matrix = self.post_utf_16_bang(updated_text, string_pos_matrix, utf_16_bang_list) + updated_text, string_pos_matrix, utf_16_bang_list = self._render_templates( + updated_text, string_pos_matrix, utf_16_bang_list + ) + updated_text, string_pos_matrix, utf_16_bang_list = self._render_replaces( + updated_text, string_pos_matrix, utf_16_bang_list + ) + updated_text, string_pos_matrix = self.post_utf_16_bang( + updated_text, string_pos_matrix, utf_16_bang_list + ) return str(updated_text) def get_text(self): @@ -281,10 +349,20 @@ def parse_markups(markups: list[str]): for markup in markups: if markup["type"] == "A": if markup["anchorType"] == "LINK": - template = jinja_env.from_string('{{text}}') - template = template.render(raw_render(rel=markup.get("rel", ""), title=markup.get("title", ""), href=markup["href"])) + template = jinja_env.from_string( + '{{text}}' + ) + template = template.render( + raw_render( + rel=markup.get("rel", ""), + title=markup.get("title", ""), + href=markup["href"], + ) + ) elif markup["anchorType"] == "USER": - template = jinja_env.from_string('{{text}}') + template = jinja_env.from_string( + '{{text}}' + ) template = template.render(userId=markup["userId"]) else: continue @@ -293,7 +371,9 @@ def parse_markups(markups: list[str]): elif markup["type"] == "EM": template = "{{text}}" elif markup["type"] == "CODE": - template = "{{text}}" + template = ( + "{{text}}" + ) else: continue diff --git a/scripts/build.sh b/scripts/build.sh deleted file mode 100755 index d72d1da..0000000 --- a/scripts/build.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash - -# pip install nuitka==2.0.1 -# sudo apt install patchelf ccache -y -# sudo /usr/sbin/update-ccache-symlinks -# export PATH="/usr/lib/ccache:$PATH" - -python3 -m nuitka --standalone --nofollow-import-to=pytest --python-flag=nosite,-O,isolated --plugin-enable=anti-bloat,implicit-imports,data-files,pylint-warnings --warn-implicit-exceptions --warn-unusual-code --prefer-source-code --include-package=uvicorn.workers --include-package=sentry_sdk.integrations server - diff --git a/scripts/check_health.py b/scripts/check_health.py deleted file mode 100644 index e845313..0000000 --- a/scripts/check_health.py +++ /dev/null @@ -1,37 +0,0 @@ -import asyncio -import aiohttp -import os - -from aiogram import Bot -from loguru import logger - -BOT_TOKEN = os.getenv("BOT_TOKEN") - -if not BOT_TOKEN: - raise ValueError("No bot token!") - -bot = Bot(BOT_TOKEN) - -ADMIN_CHAT_ID = "1621425349" -SLEEP_TIME = 15 * 60 - - -async def main(): - while True: - logger.debug("Checking health of freedium.cfd") - try: - async with aiohttp.ClientSession() as session: - async with session.get("https://freedium.cfd", timeout=3) as response: - response_status = response.status - except Exception as ex: - logger.exception(ex) - response_status = "ERROR" - finally: - if response_status != 200: - await bot.send_message(ADMIN_CHAT_ID, "EMERGENCY! SITE IS DOWN!!!") - - logger.debug("Sleeping ...") - await asyncio.sleep(SLEEP_TIME) - - -asyncio.run(main()) diff --git a/scripts/dev_clean.sh b/scripts/dev_clean.sh deleted file mode 100755 index ccd9763..0000000 --- a/scripts/dev_clean.sh +++ /dev/null @@ -1,2 +0,0 @@ -ruff check ./ --fix -black . diff --git a/scripts/output_rules.txt b/scripts/output_rules.txt deleted file mode 100644 index 9245fb3..0000000 --- a/scripts/output_rules.txt +++ /dev/null @@ -1,148 +0,0 @@ - - handle_path /site.webmanifest { - root * ./static/site.webmanifest - file_server - } - - handle_path /favicon-32x32.png { - root * ./static/favicon-32x32.png - file_server - } - - handle_path /robots.txt { - root * ./static/robots.txt - file_server - } - - handle_path /ads.txt { - root * ./static/ads.txt - file_server - } - - handle_path /humans.txt { - root * ./static/humans.txt - file_server - } - - handle_path /mstile-150x150.png { - root * ./static/mstile-150x150.png - file_server - } - - handle_path /mstile-310x310.png { - root * ./static/mstile-310x310.png - file_server - } - - handle_path /sitemap.xml { - root * ./static/sitemap.xml - file_server - } - - handle_path /99860281ef1143d5a5558ad9a21a470d.txt { - root * ./static/99860281ef1143d5a5558ad9a21a470d.txt - file_server - } - - handle_path /mstile-70x70.png { - root * ./static/mstile-70x70.png - file_server - } - - handle_path /android-chrome-192x192.png { - root * ./static/android-chrome-192x192.png - file_server - } - - handle_path /mstile-310x150.png { - root * ./static/mstile-310x150.png - file_server - } - - handle_path /safari-pinned-tab.svg { - root * ./static/safari-pinned-tab.svg - file_server - } - - handle_path /android-chrome-512x512.png { - root * ./static/android-chrome-512x512.png - file_server - } - - handle_path /favicon-16x16.png { - root * ./static/favicon-16x16.png - file_server - } - - handle_path /favicon.ico { - root * ./static/favicon.ico - file_server - } - - handle_path /browserconfig.xml { - root * ./static/browserconfig.xml - file_server - } - - handle_path /mstile-144x144.png { - root * ./static/mstile-144x144.png - file_server - } - - handle_path /security.txt { - root * ./static/security.txt - file_server - } - - handle_path /apple-touch-icon.png { - root * ./static/apple-touch-icon.png - file_server - } - - handle_path /onboarding/* { - respond "Access denied" 403 - } - - handle_path /wp-* { - respond "Access denied" 403 - } - - handle_path /.env { - respond "Access denied" 403 - } - - handle_path /api* { - respond "Access denied" 403 - } - - handle_path /apple-touch-icon-precomposed.png { - respond "Access denied" 403 - } - - handle_path /rss.xml { - respond "Access denied" 403 - } - - handle_path /.git/* { - respond "Access denied" 403 - } - - handle_path /apple-touch-icon-120x120.png { - respond "Access denied" 403 - } - - handle_path /apple-touch-icon-120x120-precomposed.png { - respond "Access denied" 403 - } - - handle_path /apple-touch-icon-152x152.png { - respond "Access denied" 403 - } - - handle_path /apple-touch-icon-152x152-precomposed.png { - respond "Access denied" 403 - } - - handle_path /.well-known/* { - respond "Access denied" 403 - } \ No newline at end of file diff --git a/scripts/redirect_80.py b/scripts/redirect_80.py deleted file mode 100644 index 8474284..0000000 --- a/scripts/redirect_80.py +++ /dev/null @@ -1,13 +0,0 @@ -import http.server -import socketserver - -class RedirectHandler(http.server.SimpleHTTPRequestHandler): - def do_GET(self): - self.send_response(301) # 301 indicates a permanent redirect - self.send_header('Location', 'https://freedium.cfd') - self.end_headers() - -port = 80 -server = socketserver.TCPServer(('', port), RedirectHandler) -print(f"Redirect server running at http://localhost:{port}") -server.serve_forever() diff --git a/scripts/register_caddy.sh b/scripts/register_caddy.sh deleted file mode 100755 index 458d2bd..0000000 --- a/scripts/register_caddy.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash -arch=$(lscpu | grep Architecture | awk {'print $2'}) - -sudo setcap cap_net_bind_service=+ep $(pwd)/bin/${arch}/caddy diff --git a/scripts/service_up.py b/scripts/service_up.py deleted file mode 100644 index 494a33b..0000000 --- a/scripts/service_up.py +++ /dev/null @@ -1,105 +0,0 @@ -import os -import sys -import time -from loguru import logger -import docker -import requests - -logger.remove() -logger.add(sys.stdout, level="DEBUG") - -error_msg = "[Cloudflare proxy] Freedium proxy is not working, restarting containers..." - -USER_NAME = os.getenv("USER_NAME") -USER_PASSWORD = os.getenv("USER_PASSWORD") -PROXY_HOST = os.getenv("PROXY_HOST", "localhost") -PROXY_PORT = os.getenv("PROXY_PORT", "9681") # 1080 - -_AUTH_DATA = [USER_NAME, USER_PASSWORD] -AUTH_FORMATED = ":".join(filter(bool, _AUTH_DATA)) - -if not PROXY_HOST or not PROXY_PORT: - raise ValueError("PROXY_HOST and PROXY POER must be set") - -containers_to_restart = ["dante_1", "wgcf1"] - - -def restart_containers(): - # client = docker.from_env() - client = docker.DockerClient(base_url="unix://var/run/docker.sock") - - for container_name in containers_to_restart: - try: - container = client.containers.get(container_name) - logger.info(f"Restarting {container_name}...") - container.restart() - logger.info(f"{container_name} restarted successfully.") - except docker.errors.NotFound: - logger.error(f"Container {container_name} not found.") - except Exception as e: - logger.error(f"Error restarting {container_name}: {str(e)}") - - -def send_msg(text: str, max_retries: int = 3) -> bool: - for attempt in range(max_retries): - try: - tg_token = os.getenv("TG_TOKEN") - chat_id = os.getenv("TG_CHAT_ID") - url_req = "https://api.telegram.org/bot" + tg_token + "/sendMessage" + "?chat_id=" + chat_id + "&text=" + text - results = requests.get(url_req) - logger.debug(results.json()) - except Exception as e: - logger.exception(e) - logger.error(f"Error sending message: {str(e)}") - if attempt < max_retries - 1: - logger.info(f"Retrying in 5 seconds...") - time.sleep(5) - else: - logger.info("Message sent successfully.") - return True - - logger.error("All retry attempts failed. Message not sent.") - return False - - -def check_proxy(max_retries=3, retry_delay=5) -> bool: - auth_str = f"{AUTH_FORMATED}@" if AUTH_FORMATED else "" - - proxy_url = f"socks5://{auth_str}{PROXY_HOST}:{PROXY_PORT}" - proxy_test_url = "http://ipinfo.io" - logger.info(f"Checking proxy: {proxy_url}") - for attempt in range(max_retries): - try: - resp = requests.get( - proxy_test_url, - proxies=dict( - http=proxy_url, - https=proxy_url, - ), - timeout=5, - ) - logger.info(f"Proxy is working: {resp.status_code}") - return True - except Exception as e: - logger.exception(e) - logger.error(f"Error checking proxy (attempt {attempt + 1}/{max_retries}): {str(e)}") - if attempt < max_retries - 1: - logger.info(f"Retrying in {retry_delay} seconds...") - time.sleep(retry_delay) - - logger.error("All retry attempts failed. Proxy is not working.") - return False - - -if __name__ == "__main__": - while True: - time.sleep(75) - # time.sleep(10) - try: - logger.info("Checking proxy...") - if not check_proxy(): - logger.info(error_msg) - send_msg(error_msg) - restart_containers() - except Exception as e: - logger.error(f"Error checking proxy: {str(e)}") diff --git a/server/services/__init__.py b/server/services/__init__.py deleted file mode 100644 index 9137fa6..0000000 --- a/server/services/__init__.py +++ /dev/null @@ -1 +0,0 @@ -from .scheduler import scheduler \ No newline at end of file diff --git a/server/services/scheduler.py b/server/services/scheduler.py deleted file mode 100644 index 0ec4214..0000000 --- a/server/services/scheduler.py +++ /dev/null @@ -1,3 +0,0 @@ -from apscheduler.schedulers.asyncio import AsyncIOScheduler - -scheduler = AsyncIOScheduler() \ No newline at end of file diff --git a/server/templates/url_box.html b/server/templates/url_box.html deleted file mode 100644 index fd8450a..0000000 --- a/server/templates/url_box.html +++ /dev/null @@ -1,20 +0,0 @@ -
- -
- diff --git a/server/utils/logger_trace.py b/server/utils/logger_trace.py deleted file mode 100644 index cdc0f0f..0000000 --- a/server/utils/logger_trace.py +++ /dev/null @@ -1,39 +0,0 @@ -import asyncio -import time -from functools import wraps - -from loguru import logger - - -def trace(func): - if asyncio.iscoroutinefunction(func): - logger.trace(f"{func.__name__!r} function is a coroutine") - - @wraps(func) - async def wrapper(*args, **kwargs): - start_ts = time.time() - logger.trace(f"Calling {func.__name__}() with {args}, {kwargs}") - original_result = await func(*args, **kwargs) - logger.trace(f"Result: {original_result}") - logger.trace(f"Result type: {type(original_result)}") - duration_ts = time.time() - start_ts - result = f"{original_result[:42]}..." if type(original_result).__name__ in ["str", "bytes"] else original_result - logger.trace(f"{func.__name__!r}() returned {result!r} in {duration_ts:.2} seconds") - return original_result - - else: - logger.trace(f"{func.__name__!r} is not a coroutine") - - @wraps(func) - def wrapper(*args, **kwargs): - start_ts = time.time() - logger.trace(f"Calling {func.__name__}() with {args}, {kwargs}") - original_result = func(*args, **kwargs) - logger.trace(f"Result: {original_result}") - logger.trace(f"Result type: {type(original_result)}") - duration_ts = time.time() - start_ts - result = f"{original_result[:42]}..." if type(original_result).__name__ in ["str", "bytes"] else original_result - logger.trace(f"{func.__name__!r}() returned {result!r} in {duration_ts:.2} seconds") - return original_result - - return wrapper diff --git a/scripts/generate_sitemap.py b/sitemap-generator/generate_sitemap.py similarity index 100% rename from scripts/generate_sitemap.py rename to sitemap-generator/generate_sitemap.py diff --git a/static/sitemap.xml b/static/sitemap.xml deleted file mode 100644 index 0b77cc9..0000000 --- a/static/sitemap.xml +++ /dev/null @@ -1,48794 +0,0 @@ - - - - - https://medium.com/swlh/understanding-the-agpl-the-most-misunderstood-license-86fd1fe91275 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ryan_za/manipulating-http-https-requests-with-mitmproxy-and-docker-765e86c8ab3a - 2023-10-06 - monthly - 1.0 - - - - https://iamalexmathers.medium.com/14-things-i-wish-i-knew-at-25-now-that-im-38-13daabe0c9cd - 2023-10-06 - monthly - 1.0 - - - - https://iamalexmathers.medium.com/20-mistakes-you-wanna-avoid-in-your-20s-bb56c2d03179 - 2023-10-06 - monthly - 1.0 - - - - https://thebolditalic.com/an-article-about-gentrification-in-oakland-that-isn-t-going-to-make-you-feel-good-about-yourself-d2525b5c7535 - 2023-10-06 - monthly - 1.0 - - - - https://nyulocal.com/dennis-rodman-goes-to-north-korea-everyone-is-kind-of-confused-36950dcee2f6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/some-use-cases-for-http-head-5a8126ef98b6 - 2023-10-06 - monthly - 1.0 - - - - https://artificialcorner.com/bye-bye-chatgpt-ai-tools-better-than-chatgpt-but-few-people-are-using-them-eac93a3627cc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/valve-aims-to-boost-steam-beta-testers-introducing-user-friendly-methods-for-the-beta-program-c58cc94e5853 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/create-your-own-superconductor-simulation-with-python-a206162945e - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/some-linux-commands-that-can-boost-your-work-efficiency-dramatically-9dc802a10618 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@joetrankang/why-i-learn-data-engineering-364411fdee36 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/milvus-pinecone-vespa-weaviate-vald-gsi-what-unites-these-buzz-words-and-what-makes-each-9c65a3bd0696 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jan_5421/crawling-new-filings-on-sec-edgar-using-python-and-socket-io-in-real-time-5cba8c6a3eb8 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-portfolio-that-got-me-a-data-scientist-job-513cc821bfe4 - 2023-10-06 - monthly - 1.0 - - - - https://short-history.com/sex-in-wild-west-8df25267539c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/xnewdata-portugal/aula-12-ferramentas-de-an%C3%A1lise-de-dados-61df48d9470d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/xnewdata-portugal/a14-an%C3%A1lise-de-dados-em-big-data-e3f097398d02 - 2023-10-06 - monthly - 1.0 - - - - https://nadinbrzezinski.medium.com/moscow-dca1e95d73ba - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/xnewdata/a19-how-to-become-a-data-scientist-summary-88b0d1057bfa - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/i-tried-100-chatgpt-prompts-here-are-the-best-4-5b789309d2d8 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/building-a-logistic-regression-in-python-step-by-step-becd4d56c9c8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/applied-data-science/how-to-build-your-own-alphazero-ai-using-python-and-keras-7f664945c188 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-i-would-learn-data-science-with-chatgpt-if-i-could-start-over-8e1f6ae4bb80 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@data.science.enthusiast/explain-any-machine-learning-model-in-python-shap-4caf1c343f3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-visual-learners-guide-to-explain-implement-and-interpret-principal-component-analysis-cc9b345b75be - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/tensorflow-template-for-deep-learning-beginners-3b976d0ee084 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/60-chatgpt-prompts-for-data-science-tried-tested-and-rated-4994c7e6adb2 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/the-most-important-flutter-3-10-feature-that-nobody-talks-about-1cc575a6063f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/is-decision-science-quietly-becoming-the-new-data-science-5616a12fa9e8 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/ai-agents-a-designers-guide-to-the-next-big-thing-99172273bb88 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/bill-gates-people-dont-realize-what-s-coming-dc06d3b81c9d - 2023-10-06 - monthly - 1.0 - - - - https://eand.co/the-acceleration-of-american-fascism-part-2-e583dfedc419 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mind-cafe/you-still-have-6-months-left-in-2023-do-these-5-things-daily-to-become-unstoppable-db7d365b67a1 - 2023-10-06 - monthly - 1.0 - - - - https://www.cantorsparadise.com/mathematics-is-the-road-to-immortality-9db3e8683ef4 - 2023-10-06 - monthly - 1.0 - - - - https://eand.co/no-spin-no-bs-no-hype-heres-how-the-economy-is-really-doing-9f904f8e1f1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@matthewbiggins/side-hustle-passionate-life-4d6a8aad26f2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jexend17/building-an-online-learning-management-system-lms-with-laravel-1fb3ac438ed3 - 2023-10-06 - monthly - 1.0 - - - - https://writingcooperative.com/the-magic-art-of-saying-more-with-less-ab1a3c203faa - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-future-is-electric/origami-electric-helicopters-arent-coming-to-the-skies-of-your-city-cf62a8c14c3a - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/create-and-evaluate-simple-expression-tree-in-python-in-object-oriented-style-5eb27b6376c8 - 2023-10-06 - monthly - 1.0 - - - - https://evilgeek.medium.com/the-top-5-worst-iphones-of-all-time-6816ebc7a6ef - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/rolando-dados/como-criar-seu-card-game-em-30-passos-2cb379423597 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/temporal-fusion-transformer-googles-model-for-interpretable-time-series-forecasting-5aa17beb621 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@redeaddiscolll/predicting-market-movements-with-machine-learning-9747966148b9 - 2023-10-06 - monthly - 1.0 - - - - https://kaabar-sofien.medium.com/a-simple-price-action-trading-strategy-to-consider-2fe094ef7087 - 2023-10-06 - monthly - 1.0 - - - - https://michalmalewicz.medium.com/golden-age-of-ux-is-over-403e4ea1e753 - 2023-10-06 - monthly - 1.0 - - - - https://esthercrawford.medium.com/an-epilogue-to-my-time-working-at-twitter-24a126098246 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/predict/spacex-is-in-trouble-again-2f51658872db - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@GWBycer/how-to-study-hard-gameplay-and-game-design-f7cf2fabe6e7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/super-jump/the-art-of-game-design-analysis-cd58d752741a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/i-interviewed-with-multiple-gaming-companies-here-is-what-you-need-to-know-803bf1bf97ab - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@michael.zats/how-a-medium-blog-can-power-your-professional-journey-3190b7d77c63 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/35-actionable-tips-to-grow-your-medium-blog-4e4017b89905 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/crows-feet/retirement-hobbies-ive-tried-so-you-don-t-have-to-45a18531dcf9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/pm101/thriving-as-an-introverted-pm-embracing-your-unique-style-2f22a6524670 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/robust-regression-all-you-need-to-know-an-example-in-python-878081bafc0 - 2023-10-06 - monthly - 1.0 - - - - https://theworkathomeblogger.com/starting-a-blog-vs-writing-on-medium-afcfc327b1f2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/creator-journey/is-it-still-worth-starting-a-blog-5c9fc10bb84c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/google-launches-cdc-for-bigquery-826e3dcb0d49 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-and-data/what-should-be-the-analytics-organization-structure-a8b54d5ff1d1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-and-data/how-to-collect-the-data-you-need-to-bootstrap-your-digital-marketing-analytics-b401b01071d2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@fareedkhandev/make-your-python-code-more-elegant-readable-or-modern-with-one-command-eb910cefded3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@Evenword/10-killer-python-automation-scripts-141b591254c5 - 2023-10-06 - monthly - 1.0 - - - - https://aws.plainenglish.io/sqs-lessons-learned-improve-performance-and-cutting-costs-86a9d8fb7b39 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bytebytego-system-design-alliance/system-design-blueprint-the-ultimate-guide-e27b914bf8f1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-useful-tech/ios-16-4-is-a-badass-update-heres-why-3bcda00db28 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/googles-wire-automated-dependency-injection-in-go-4e98864c3dd5 - 2023-10-06 - monthly - 1.0 - - - - https://blog.ompluscator.com/golang-blogs-875ab3bda75 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/how-to-run-llama-2-on-mac-m1-and-train-with-your-own-data-8aba7d5ef95e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/new-writers-welcome/medium-updated-its-rules-heres-what-you-need-to-know-32320717ae4c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/1-introduction-to-apache-spark-299db7a4b68d - 2023-10-06 - monthly - 1.0 - - - - https://zulie.medium.com/dont-use-chatgpt-to-write-articles-use-it-for-these-5-things-instead-83f3e2f10d57 - 2023-10-06 - monthly - 1.0 - - - - https://writingcooperative.com/the-platform-that-offers-the-most-innovative-tools-will-attract-the-best-writers-540b3e50e0a7 - 2023-10-06 - monthly - 1.0 - - - - https://forge.medium.com/the-tyranny-of-the-note-taking-industrial-complex-and-other-notes-on-notes-f67552cad006 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/concurrent-execution-in-python-from-fundamentals-to-advanced-topics-23875daef0c4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/sysf/bash-scripting-everything-you-need-to-know-about-bash-shell-programming-cd08595f2fba - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/inventos-digitais/jogo-das-proto-personas-afecf793b471 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/stop-using-smote-to-handle-all-your-imbalanced-data-34403399d3be - 2023-10-06 - monthly - 1.0 - - - - https://endasheridan.xyz/9-insanely-useful-free-websites-you-need-but-no-one-told-you-about-may-2023-9b0363e73c5c - 2023-10-06 - monthly - 1.0 - - - - https://medium.aifastcash.com/ai-tools-that-will-save-you-hundreds-of-hours-dfa12119d4c9 - 2023-10-06 - monthly - 1.0 - - - - https://pub.aimind.so/fastapi-forgot-password-mechanism-end-to-end-74c068fd73bd - 2023-10-06 - monthly - 1.0 - - - - https://pub.aimind.so/fastapi-google-single-sign-on-sso-47454e2e2859 - 2023-10-06 - monthly - 1.0 - - - - https://pub.aimind.so/fastapi-jwt-authentication-with-scope-permissions-per-route-a42457fc85ca - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@gijovijayan_22826/facts-about-africa-gdp-ba6ea7d4d18f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bitchy/we-need-feminist-technoscience-because-men-arent-good-at-creating-technology-for-all-65ae26679df2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/7-little-macos-apps-youve-always-needed-but-never-knew-existed-6668132a54d3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/how-i-use-obsidians-new-properties-feature-productively-214fbae6bc46 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/get-chip/propert-wrappers-in-swift-5-1-14f610530710 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@sascha.wolff/dont-use-rem-em-for-paddings-margins-and-more-94e19026b000 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/build-industry-specific-llms-using-retrieval-augmented-generation-af9e98bb6f68 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/handling-sensitive-data-in-golang-f527aa856d0 - 2023-10-06 - monthly - 1.0 - - - - https://tomaszs2.medium.com/5-amazing-go-projects-cybersecurity-networking-and-cloud-architecture-7c4b68cc7f26 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@chris_42047/how-to-download-company-sec-filings-for-free-python-tutorial-e5ef6d1f6658 - 2023-10-06 - monthly - 1.0 - - - - https://iamalexmathers.medium.com/21-sentences-that-will-make-you-more-attractive-than-most-b4ee755ee6c5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/snowflake/sec-10-k-filings-analysis-for-life-science-companies-leveraging-snowflake-marketplace-llamaindex-f8ef99f18abd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@mrconnor/prediction-of-stock-prices-using-xgboost-and-technical-indicators-8cbcc5738b7 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/qlora-fine-tune-a-large-language-model-on-your-gpu-27bed5a03e2b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/sentiment-analysis-on-movie-reviews-using-sci-kit-learn-1a9f5301389c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/building-a-sentiment-classifier-using-scikit-learn-54c8e7c5d2f0 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/machine-learning-with-scikit-learn-a-practical-guide-26afe1dbe8f5 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/to-be-a-great-software-developer-you-need-a-system-d4f461658743 - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/obsidian-tutorial-for-academic-writing-87b038060522 - 2023-10-06 - monthly - 1.0 - - - - https://techwithdom.medium.com/6-awesome-tech-items-under-50-c85881dbbace - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@arshdeep.supra/ios-16-3-is-making-other-phone-companies-tremble-cf9f3033b11d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/8-non-social-media-ios-apps-i-open-multiple-times-everyday-d77595e59353 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/in-fitness-and-in-health/a-stanford-neurologist-reveals-the-top-4-easy-everyday-habits-that-boost-your-brain-health-294eb007ff81 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/s/story/from-clockworks-to-computers-on-our-wrists-11a709a20000 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/why-do-people-save-their-empty-apple-boxes-92e563203906 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-boost-forecasting-with-multiprocessing-e78bc5ba6dbc - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/a-practical-kubernetes-operator-using-ansible-an-example-d3a9d3674d5b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@techynilesh/xgboost-algorithm-explained-in-less-than-5-minutes-b561dcc1ccee - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/catboost-vs-lightgbm-vs-xgboost-c80f40662924 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@PurpleGreenLemon/who-are-the-people-still-using-php-36a720ef50f0 - 2023-10-06 - monthly - 1.0 - - - - https://dlcoder.medium.com/using-gocron-in-golang-a-practical-guide-to-task-scheduling-4c8412ee801 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/flutter-expert-ide-set-up-25791ce690c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codingthesmartway-com-blog/metagpt-a-game-changer-in-ai-powered-software-development-cd0e7147bc62 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@TheWealthBlog/21-secret-ways-to-use-chatgpt-that-will-make-your-jaw-drop-2f299f282c34 - 2023-10-06 - monthly - 1.0 - - - - https://lizadonnelly.medium.com/rainy-day-drawing-d5df67d7d229 - 2023-10-06 - monthly - 1.0 - - - - https://medium.ericpierce.net/my-medium-day-schedule-fb73bb2bc1e7 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/land-use-land-cover-classification-with-deep-learning-9a5041095ddb - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/why-we-are-stuck-with-so-many-incompetent-programmers-ad841e4f8660 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tsecretdeveloper/10-sayings-that-scream-unprofessional-developer-c8e30fa4ae3a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/8-common-data-structures-every-programmer-must-know-171acf6a1a42 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/web-dev-survey-from-kyoto/favicon-nightmare-how-to-maintain-sanity-7628bfc39918 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@francesco.amighetti/the-rise-of-personal-knowledge-management-systems-2abd508218ce - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@hit6968/how-to-get-free-custom-domain-email-hosting-yandex-mail-f2412fd2b6b1 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/the-lost-art-of-vanilla-javascript-c11519720244 - 2023-10-06 - monthly - 1.0 - - - - https://brett-j-fox.medium.com/what-makes-a-startup-cto-great-9d3f2bfb217d - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/so-did-netflix-win-736e482bdb22 - 2023-10-06 - monthly - 1.0 - - - - https://vanessatorre.medium.com/lazy-girl-jobs-the-cutesy-term-no-woman-needed-1a95f81c9c27 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/science-for-life/soma-breath-made-simple-1e0d7e3266ec - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/science-for-life/breathwork-my-personal-journey-with-soma-breath-58e81a3d3527 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/flutter-community/generative-art-in-flutter-9e53701f7805 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/predict/in-memory-computing-and-analog-chips-for-ai-550ad2081447 - 2023-10-06 - monthly - 1.0 - - - - https://artificialcorner.com/i-used-chatgpt-every-day-for-5-months-here-are-some-hidden-gems-that-will-change-your-life-a451e2093097 - 2023-10-06 - monthly - 1.0 - - - - https://valeman.medium.com/how-to-predict-full-probability-distribution-using-machine-learning-conformal-predictive-f8f4d805e420 - 2023-10-06 - monthly - 1.0 - - - - https://valeman.medium.com/andrey-kolmogorov-one-of-the-greatest-mathematicians-of-the-xxst-century-4167ad02d10 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/stop-using-chatgpt-like-a-noob-use-advanced-tactics-to-outperform-99-of-users-87bf631ec1c1 - 2023-10-06 - monthly - 1.0 - - - - https://valeman.medium.com/benchmarking-facebook-prophet-53273c3ee9c6 - 2023-10-06 - monthly - 1.0 - - - - https://valeman.medium.com/how-to-predict-quantiles-in-a-more-intelligent-way-or-bye-bye-quantile-regression-hello-24a65e4c50f - 2023-10-06 - monthly - 1.0 - - - - https://valeman.medium.com/how-to-detect-anomalies-state-of-the-art-methods-using-conformal-prediction-e02691659412 - 2023-10-06 - monthly - 1.0 - - - - https://valeman.medium.com/how-to-use-machine-learning-to-forecast-time-series-retrospection-on-the-results-of-m5-forecasting-8fa26158c90a - 2023-10-06 - monthly - 1.0 - - - - https://valeman.medium.com/how-to-evaluate-probabilistic-forecasts-ace8b7ad3491 - 2023-10-06 - monthly - 1.0 - - - - https://valeman.medium.com/benchmarking-neural-prophet-part-ii-exploring-electricity-dataset-4cade7b2431c - 2023-10-06 - monthly - 1.0 - - - - https://valeman.medium.com/-86655805a676 - 2023-10-06 - monthly - 1.0 - - - - https://valeman.medium.com/how-to-calibrate-your-classifier-in-an-intelligent-way-a996a2faf718 - 2023-10-06 - monthly - 1.0 - - - - https://valeman.medium.com/conformal-prediction-forecasting-with-mapie-library-for-conformal-prediction-7aac033ae3ef - 2023-10-06 - monthly - 1.0 - - - - https://valeman.medium.com/does-ngboost-work-evaluating-ngboost-against-critical-criteria-for-good-probabilistic-prediction-28c4871c1bab - 2023-10-06 - monthly - 1.0 - - - - https://valeman.medium.com/probabilistic-forecasting-with-conformal-prediction-and-neuralprophet-af9c87901d94 - 2023-10-06 - monthly - 1.0 - - - - https://valeman.medium.com/multi-horizon-probabilistic-forecasting-with-conformal-prediction-and-neuralprophet-5ec5af3888c8 - 2023-10-06 - monthly - 1.0 - - - - https://valeman.medium.com/mutual-information-for-time-series-forecasting-in-python-377d36ded102 - 2023-10-06 - monthly - 1.0 - - - - https://valeman.medium.com/earth-mover-distance-for-time-series-d47b5fffe688 - 2023-10-06 - monthly - 1.0 - - - - https://valeman.medium.com/how-to-use-full-transductive-conformal-prediction-7ed54dc6b72b - 2023-10-06 - monthly - 1.0 - - - - https://valeman.medium.com/time-series-forecasting-using-cyclic-boosting-c6f90e418c4e - 2023-10-06 - monthly - 1.0 - - - - https://valeman.medium.com/singular-spectrum-analysis-a-hidden-treasure-of-time-series-forecasting-b8ae8b30a948 - 2023-10-06 - monthly - 1.0 - - - - https://valeman.medium.com/transformers-are-what-you-do-not-need-cf16a4c13ab7 - 2023-10-06 - monthly - 1.0 - - - - https://valeman.medium.com/jackknife-a-swiss-knife-of-conformal-prediction-for-regression-ce3b56432f4f - 2023-10-06 - monthly - 1.0 - - - - https://valeman.medium.com/demystifying-enbpi-mastering-conformal-prediction-forecasting-d49e65532416 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@bearnest/what-is-conformal-prediction-in-data-science-80a226e1ed1a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/fine-tune-your-own-llama-2-model-in-a-colab-notebook-df9823a04a32 - 2023-10-06 - monthly - 1.0 - - - - https://plazagonzalo.medium.com/snowflake-snowpro-core-practice-exam-c1e71abcdab0 - 2023-10-06 - monthly - 1.0 - - - - https://plazagonzalo.medium.com/snowflake-snowpro-core-solved-exam-5bb2a86ae682 - 2023-10-06 - monthly - 1.0 - - - - https://thetaoist.online/victim-impact-statement-46b66dcc54d1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/hackernoon/building-conclave-a-decentralized-real-time-collaborative-text-editor-a6ab438fe79f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/forecasting-in-python-with-esrnn-model-75f7fae1d242 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/time-series-forecasting-with-conformal-prediction-intervals-scikit-learn-is-all-you-need-4b68143a027a - 2023-10-06 - monthly - 1.0 - - - - https://humanparts.medium.com/the-mtg-color-wheel-c9700a7cf36d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-ai-publishing-experiment/5-ways-im-using-ai-to-make-money-in-2023-28cfd2b4a76b - 2023-10-06 - monthly - 1.0 - - - - https://humanparts.medium.com/laziness-does-not-exist-3af27e312d01 - 2023-10-06 - monthly - 1.0 - - - - https://thealexguides.medium.com/earn-150-writing-jokes-using-chatgpt-2c4bbd6a6feb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@thecameronscott/the-most-realistic-way-to-become-a-millionaire-in-5-years-9e3b864c4523 - 2023-10-06 - monthly - 1.0 - - - - https://ryanholiday.medium.com/24-things-i-wish-i-had-done-sooner-or-my-biggest-regrets-4b0d290449a7 - 2023-10-06 - monthly - 1.0 - - - - https://sungkim11.medium.com/why-you-should-use-multiple-instances-of-same-linux-distro-on-wsl-windows-10-f6f140f8ed88 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/quantile-regression-ff2343c4a03 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/mastering-android-dialogs-dont-follow-official-google-guides-3821f8e9dd91 - 2023-10-06 - monthly - 1.0 - - - - https://aiborder.medium.com/10-best-image-to-video-makers-online-free-6bef6902e7fc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/apples-everest-why-the-iphone-is-in-trouble-b2129b78460d - 2023-10-06 - monthly - 1.0 - - - - https://induv.medium.com/the-fury-over-indias-citizenship-amendment-act-and-the-silence-about-hindu-persecution-f80c959cc560 - 2023-10-06 - monthly - 1.0 - - - - https://zora.medium.com/so-what-if-they-did-thoughts-on-affirmative-action-b714834da28b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mali-m%C3%BC%C5%9Favir-evren-%C3%B6zmen/yurt-d%C4%B1%C5%9F%C4%B1na-uzaktan-%C3%A7al%C4%B1%C5%9F%C4%B1rken-ne-kadar-vergi-%C3%B6derim-8b429f19c0d0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mali-m%C3%BC%C5%9Favir-evren-%C3%B6zmen/yurt-d%C4%B1%C5%9F%C4%B1na-hizmet-verenler-bu-hatay%C4%B1-sak%C4%B1n-yapmay%C4%B1n-919fde0bdadc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-generator/google-bard-can-decode-ancient-writing-and-its-mind-blowing-4069edd7b48d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@bobi_29852/recommendation-from-scratch-part-1-d96b40ab218c - 2023-10-06 - monthly - 1.0 - - - - https://writingcooperative.com/how-to-make-a-difference-with-your-writing-43ea7aacfb13 - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/what-are-large-language-models-2da95a3d7023 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/metagpt-multi-agent-harmony-for-complex-problem-solving-97bcb8f3fe94 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/curation-matters/searching-on-medium-how-to-search-on-medium-in-2023-41e3493b125d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/use-this-free-ai-tool-to-upscale-your-ai-generated-images-faed6d4853fa - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/xgboost-fine-tune-and-optimize-your-model-23d996fab663 - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/interviewing-for-product-manager-roles-in-2023-82746b20b8eb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/nietzsches-philosophy/nietzsche-why-without-music-life-would-be-a-mistake-2-3-f3f2b1ef15eb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/7-concepts-explaining-why-you-are-who-you-are-and-why-you-do-what-you-do-b76525cb2459 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@learnerbywriting/on-living-boring-lives-8a2dc1d4868c - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/how-duolingo-pushes-users-from-freemium-to-premium-4b9fe8bbb21a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/practice-in-public/the-reason-youre-not-writing-on-the-internet-3a359c2edb95 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/how-i-write-2-articles-most-mornings-before-work-with-little-effort-489f88cc4226 - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/how-to-use-chatgpt-in-product-management-f96d8ac5ee6f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/systems-thinking-made-simple/a-linear-thinker-a-design-thinker-and-a-systems-thinker-walk-into-a-bar-dd2db739a38a - 2023-10-06 - monthly - 1.0 - - - - https://vanessatorre.medium.com/dont-mourn-the-loss-of-something-you-don-t-actually-want-ef4d596dc8b3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@bnjmn_marie/run-llama-2-chat-models-on-your-computer-5bddc856715 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@lei.shang/run-llama-2-on-your-local-gpu-62ef019fc108 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@thestartupjournal/top-5-saas-ideas-every-solo-founder-needs-to-jump-on-right-now-cf976aa7dc0f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/best-5-free-stock-market-apis-in-2019-ad91dddec984 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/4-books-to-practice-algorithms-and-land-that-job-as-a-software-engineer-96657de6f510 - 2023-10-06 - monthly - 1.0 - - - - https://tomaszs2.medium.com/go-guide-frameworks-libraries-ide-clouds-resources-mentors-a97e17268d7e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/multi-label-land-cover-classification-with-deep-learning-d39ce2944a3d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-train-a-tensorflow-2-object-detection-model-25d4da64b817 - 2023-10-06 - monthly - 1.0 - - - - https://xabaras.medium.com/universally-unique-ids-as-a-primary-key-in-a-room-database-f67a78bdbf4d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/using-chatgpt-as-a-creative-writing-partner-part-1-prose-dc9a9994d41f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/using-chatgpt-as-a-creative-writing-partner-part-3-picture-books-4f45e5dfe8dd - 2023-10-06 - monthly - 1.0 - - - - https://writingcooperative.com/7-topics-in-your-life-interesting-enough-to-write-about-3a8b0c4bc42b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/how-to-understand-long-and-complex-sql-queries-561dc87dff44 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/decrypting-complex-sql-2050aeb98082 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@antoniolui/easy-5-minute-local-pyspark-environment-setup-using-docker-e9c53c0f3b84 - 2023-10-06 - monthly - 1.0 - - - - https://baos.pub/12-tiny-habits-that-help-me-read-90-books-a-year-8aee7b8a3c0c - 2023-10-06 - monthly - 1.0 - - - - https://foxfotoco.medium.com/sarajevo-bosnia-in-winter-in-photos-bb5085f63985 - 2023-10-06 - monthly - 1.0 - - - - https://faun.pub/lets-do-devops-auto-approve-safe-terraform-apply-in-azure-devops-ci-cd-f1b41afaf4c8 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/optimizing-my-rust-development-environment-248bff858e73 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/your-boss-doesnt-care-about-your-career-personal-development-or-income-f0622f7e626b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/12-macos-apps-so-good-you-will-wonder-how-they-are-free-515dd5a43948 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jamilyousafzai/have-you-ever-been-worried-about-losing-your-job-to-ai-machines-a8fd93c41ca - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/forget-chatgpt-here-are-new-ai-tools-that-will-blow-your-mind-b1b15270d515 - 2023-10-06 - monthly - 1.0 - - - - https://artificialcorner.com/i-tried-100-ai-tools-these-are-the-best-67e2fcef98b2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@4yourheart/7-must-have-ai-tools-boost-your-productivity-and-enhance-your-free-time-b300e6ff42da - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/7-secret-websites-you-should-know-but-no-one-told-you-about-aee59b8f5aeb - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/how-to-run-your-own-llama-550cd69b1bc9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@sudip_post/why-we-need-bash-profile-7bdf93332dd5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/building-a-javascript-pagination-as-simple-as-possible-a9c32dbf4ac1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/my-kind-of-motherhood/why-i-brought-my-sons-to-see-the-barbie-movie-de778157f7f9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@startuplab/sunday-night-strategies-to-maximize-your-week-c9b58c8ab520 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-mission/the-tech-powering-the-morning-brew-machine-b7e8cd82121 - 2023-10-06 - monthly - 1.0 - - - - https://themakingofamillionaire.com/why-people-are-obsessed-with-others-finances-ef6af9987c60 - 2023-10-06 - monthly - 1.0 - - - - https://nickwignall.medium.com/6-psychological-habits-making-you-unhappy-e8f62c741289 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/stop-using-dict-key-to-access-values-in-python-dictionaries-7ab45bb7946c - 2023-10-06 - monthly - 1.0 - - - - https://minoakhtar.medium.com/medium-is-passion-unleashed-4f00b0c73a8a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/graph-convolutional-networks-introduction-to-gnns-24b3f60d6c95 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/six-rules-for-good-git-hygiene-5006cf9e9e2 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-beginners-guide-to-xgboost-87f5d4c30ed7 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/all-you-need-to-know-to-build-your-first-llm-app-eb982c78ffac - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/10-exciting-project-ideas-using-large-language-models-llms-for-your-portfolio-970b7ab4cf9e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/post-quantum-cryptography-with-python-and-linux-17b1ca1b3e1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@lindalum_2779/alzheimers-journal-the-final-entry-928ea61bf917 - 2023-10-06 - monthly - 1.0 - - - - https://kymidd.medium.com/azure-devops-terraform-breaking-up-the-monolith-strategy-299e5a53e24d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/multi-step-time-series-forecasting-with-xgboost-65d6820bec39 - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/dangerous-and-unnecessary-fears-of-strict-types-in-php-c24e5a3d240e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/devwarlocks/creating-custom-attributes-in-php-8-a-guide-6e667c9035d8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@lycsona/composition-vs-inheritance-laravel-examples-3bbe790cef8f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@meryemalay/etkili-%C3%A7al%C4%B1%C5%9Fman%C4%B1n-%C3%B6nemi-38d1d6e257c0 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/two-examples-of-a-content-based-recommendation-system-with-the-most-efficient-array-functions-93899113a890 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@meryemalay/mutluluk-beklentisizlik-miydi-cb0535418262 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-data-scientists-guide-to-improving-python-code-quality-21660ecea97d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/using-cosine-similarity-to-build-a-movie-recommendation-system-ae7f20842599 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/what-is-netcdf-data-and-why-is-it-interesting-ec26bcece19d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@poulastyab/how-to-create-a-model-a-recommender-system-as-good-as-netflixs-with-19-lines-of-code-c8c67fedbb6a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/tensorflow-for-recommendation-model-part-1-19f6b6dc207d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-data-science-project-with-chatgpt-code-interpreter-e9beb8705dac - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/huggingface/multi-label-text-classification-using-bert-the-mighty-transformer-69714fa3fb3d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-generator/366-000-views-in-90-days-my-medium-day-presentation-977ecb43230d - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/magic-and-logic-168831631cd3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/chris-messina/the-problem-with-the-problems-with-hashtags-35d4ba29b04d - 2023-10-06 - monthly - 1.0 - - - - https://aninjusticemag.com/another-celebrity-posed-semi-naked-at-55-and-i-hate-it-5d473072497e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/stop-hard-coding-in-a-data-science-project-use-config-files-instead-479ac8ffc76f - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/yes-you-can-write-switch-statements-in-python-815da93996a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/text-classification-with-nlp-tf-idf-vs-word2vec-vs-bert-41ff868d1794 - 2023-10-06 - monthly - 1.0 - - - - https://patrickberry.medium.com/embed-youtube-video-in-obsidian-efc6f78e35e6 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/using-whisper-and-bertopic-to-model-kurzgesagts-videos-7d8a63139bdf - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/20-python-concepts-i-wish-i-knew-way-earlier-573cd189c183 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/pythoneers/10-amazing-automation-scripts-you-need-to-try-using-python-e8c1edafcb49 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@neonforge/how-chatgpt-wrote-an-entire-python-code-for-binance-crypto-trading-bot-8e971f89b190 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/a-full-crypto-trading-bot-in-python-aafba122bc4e - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/algorithmic-trading-with-python-strategy-1-does-two-week-magnitude-effect-current-returns-d17282ddd6e8 - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/algorithmic-trading-with-python-strategy-2-xgboost-regression-model-prediction-of-future-9aff9743ae2e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@chris_42047/implementing-a-support-resistance-breakout-strategy-python-tutorial-53b86bbd393d - 2023-10-06 - monthly - 1.0 - - - - https://kaabar-sofien.medium.com/using-autocorrelation-to-find-trading-signals-c0f591ef9193 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-partnered-pen/chatgpt-told-some-guy-exactly-how-to-make-money-it-made-one-big-mistake-6bf63ed8f5d8 - 2023-10-06 - monthly - 1.0 - - - - https://venture.circuit.ooo/chatgpt-money-making-magic-25-surprising-ways-to-earn-from-home-13ef269101b - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/create-a-desktop-app-with-vue-and-electron-da89dba36377 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/use-chatgpt-to-built-a-powerful-crypto-trading-bot-in-5-easy-steps-12ee983ce4f1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@miguelznunez/how-to-upload-and-display-multiple-images-with-node-js-and-multer-javascript-a0404ca051ee - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/building-ibotta/modular-networking-in-swift-c59cc590da3e - 2023-10-06 - monthly - 1.0 - - - - https://selectfrom.dev/querying-and-eager-loading-related-data-with-knex-js-and-postgresql-6cd7a6a5fc11 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/investigating-a-method-that-bypasses-all-of-mediums-paywalls-df626c54d56e - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/how-chatgpt-really-works-explained-for-non-technical-people-71efb078a5c9 - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/how-stable-diffusion-works-explained-for-non-technical-people-be6aa674fa1d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/muzero-explained-a04cb1bad4d4 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/stop-using-print-every-time-in-python-use-pprint-instead-e8761b25048f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/11-python-coding-habits-that-make-you-a-bad-programmer-5e3306077686 - 2023-10-06 - monthly - 1.0 - - - - https://annamercury.medium.com/how-and-why-to-change-your-beliefs-d396ad73cd5c - 2023-10-06 - monthly - 1.0 - - - - https://garystafford.medium.com/amazon-redshift-top-performance-features-and-latest-capabilities-91568bd41124 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/hackernoon/javascript-testing-and-debugging-tools-ee81374c01aa - 2023-10-06 - monthly - 1.0 - - - - https://writingcooperative.com/9-publications-who-need-writers-at-300-to-750-per-story-4a61741fa6e2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@meganfinley/hey-haoles-if-youve-taken-a-trip-to-maui-you-need-to-give-right-now-61825b48f20f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/techtofreedom/9-fabulous-python-tricks-that-make-your-code-more-elegant-bf01a6294908 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-add-uncertainty-estimation-to-your-models-with-conformal-prediction-a5acdb86ea05 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/eda-and-recommendation-system-in-python-e2e1d3a005f1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/jasonganub/how-to-access-reddit-in-indonesia-d185bb532380 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/setting-up-an-environment-for-machine-learning-with-conda-pip-tools-9e163cb13b92 - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/jupyterai-generative-ai-jupyterlab-9cae19a417f4 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/how-to-save-uploaded-files-in-fastapi-90786851f1d3 - 2023-10-06 - monthly - 1.0 - - - - https://nedvedyang.medium.com/create-a-cloudformation-template-for-route53-health-check-cloudwatch-alarms-and-sns-49f70d3b3f92 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@JakenH/show-off-your-coding-stats-on-your-github-profile-using-wakatime-ce3ceb1063b5 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/content-based-recommender-systems-28a1dbd858f5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/my-learning-journal/raindrop-obsidian-roam-logseq-7c97a12a9657 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/7-premium-macos-apps-that-are-worth-using-over-free-alternatives-40576c46a85f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/spikelab/nonconformist-an-easy-way-to-estimate-prediction-intervals-b0ded1eb066f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ashunishah/one-month-consistent-on-medium-9106321e03eb - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/react-best-practices-small-components-f998a8e8ab7e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/i-wanna-build-a-business-but-cant-think-of-ideas-here-s-what-to-do-1b2c6a0285c1 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/fine-tuning-pre-trained-model-vgg-16-1277268c537f - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/mastering-data-visualization-with-pandas-a-step-by-step-tutorial-d24ab9a5f475 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/uitableview-sections-with-nested-types-27eabb833ad9 - 2023-10-06 - monthly - 1.0 - - - - https://renukagavrani.medium.com/4-habits-i-replaced-with-social-media-i-am-the-proudest-of-myself-2fec2d9c16bd - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/my-first-job-as-a-data-analyst-expectations-vs-reality-3a598412cd52 - 2023-10-06 - monthly - 1.0 - - - - https://writingcooperative.com/what-makes-a-successful-writer-f30599945677 - 2023-10-06 - monthly - 1.0 - - - - https://francescod.medium.com/5-ai-productivity-apps-right-now-e29ef7a75b36 - 2023-10-06 - monthly - 1.0 - - - - https://beingpax.medium.com/new-obsidian-plugins-flashcards-vault-chat-financial-doc-note-importer-timeruler-c5d3473334c - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/the-complete-guide-to-creating-python-packages-3ecb150a1a43 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/create-and-publish-your-own-python-package-ea45bee41cdc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tzjy/10-regression-metrics-data-scientist-must-know-tensorflow-keras-code-included-33f3ad53001c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/counterarts/only-imperfection-contains-true-beauty-562e8416b89a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/create-your-custom-python-package-that-you-can-pip-install-from-your-git-repository-f90465867893 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-generator/is-chatgpt-getting-dumber-lets-talk-about-ai-drift-58f0fc5ebad2 - 2023-10-06 - monthly - 1.0 - - - - https://ryanholiday.medium.com/36-lessons-on-the-way-to-36-years-old-d8633ef5921d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/darius-foroux/10-lessons-i-learned-from-making-many-mistakes-in-my-20s-a9c5c49871e9 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/transfer-learning-in-speech-emotion-recognition-d55b6616ba83 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/speech-emotion-recognition-using-ravdess-audio-dataset-ce19d162690 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/making-a-trade-call-using-simple-moving-average-sma-crossover-strategy-python-implementation-29963326da7a - 2023-10-06 - monthly - 1.0 - - - - https://entrepreneurshandbook.co/how-non-technical-founders-build-high-tech-startups-without-going-broke-e828879648d8 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/cracking-business-case-interviews-for-data-scientists-step-1-define-a-problem-6a63f86b9a38 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/cracking-business-case-interviews-for-data-scientists-part-2-c96d9b9a4292 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/dont-use-k-fold-validation-for-time-series-forecasting-30b724aaea64 - 2023-10-06 - monthly - 1.0 - - - - https://endasheridan.xyz/10-insanely-useful-free-ai-websites-you-need-but-no-one-told-you-about-6be560f91cf2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/10-amazing-apps-i-use-daily-to-stay-10x-productive-12af359f63af - 2023-10-06 - monthly - 1.0 - - - - https://eand.co/americas-careening-into-a-constitutional-crisis-6e9420aec2f8 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/rxswift-deep-inside-flatmap-1ca150c41b18 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/kmp-cm-apples-strategic-failure-cb758c24f824 - 2023-10-06 - monthly - 1.0 - - - - https://michaellong.medium.com/rxswift-better-error-handling-with-compactmap-48a5d314d0f1 - 2023-10-06 - monthly - 1.0 - - - - https://eand.co/the-devastating-case-against-donald-trump-and-why-it-matters-84947273700c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/counterarts/the-commodification-of-minimalism-8b72f91bb3cd - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/beyond-churn-prediction-and-churn-uplift-45225e5a7541 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/create-virtual-environment-using-virtualenv-and-add-it-to-jupyter-notebook-6e1bf4e03415 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/7-little-macos-apps-that-can-make-a-massive-difference-to-how-you-work-3db57654cc6e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/10-great-websites-to-learn-coding-ff7e411d708d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/finally-why-we-use-an-80-20-split-for-training-and-test-data-plus-an-alternative-method-oh-yes-edc77e96295d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@Stan_DS/how-to-10x-speed-up-sql-query-77ccd962b439 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coding-artist/take-vector-graphics-to-the-web-an-introduction-to-svgs-f2ee599351df - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coding-artist/a-beginners-guide-to-vector-graphic-design-815cb1cb4d70 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/an-effective-approach-for-image-anomaly-detection-7b1d08a9935b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/big-data-file-formats-explained-275876dc1fc9 - 2023-10-06 - monthly - 1.0 - - - - https://dariusforoux.medium.com/10-productive-alternatives-to-mindless-browsing-537e49ae5877 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/smart-people-know-that-their-9-5-is-an-unbelievable-opportunity-93362bd0653a - 2023-10-06 - monthly - 1.0 - - - - https://keith-mcnulty.medium.com/a-very-dangerous-data-science-article-415e576f0c44 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/3-best-practices-for-building-data-pipelines-with-bigquery-6d135cd7e77c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/looker-studio-with-4-new-charts-this-august-44c0822c07d7 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-best-learning-paths-for-ai-and-data-leadership-fabc3d4f8e36 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/middle-pause/is-this-what-aging-really-means-losing-all-the-people-you-loved-abf6b28de993 - 2023-10-06 - monthly - 1.0 - - - - https://ngoeke.medium.com/the-plus-and-minus-theory-of-living-happily-c40c297e2c40 - 2023-10-06 - monthly - 1.0 - - - - https://sophielucidojohnson.medium.com/heres-one-small-pleasure-for-every-day-of-the-week-2f254bcb098 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/dataseries/the-evolution-of-googles-mobilenet-architectures-to-improve-computer-vision-models-ffb483ffcc0a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-game-of-words-vectorization-tagging-and-sentiment-analysis-c78ff9a07e42 - 2023-10-06 - monthly - 1.0 - - - - https://cassio-bolba.medium.com/concepts-for-data-engineers-etl-x-elt-x-el-7bed93bd9e45 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/complete-guide-to-using-typeorm-and-typescript-for-data-persistence-in-node-js-module-bfce169959d9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-football-pub/this-is-why-teams-need-to-mark-man-to-man-on-corners-in-football-a2bb6a409dab - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-football-pub/a-new-innovative-way-of-involving-football-goalkeepers-in-attacking-free-kicks-ff57b1bc84e9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/10-websites-will-pay-300-for-your-technical-blog-646a50342460 - 2023-10-06 - monthly - 1.0 - - - - https://bettermarketing.pub/7-websites-that-pay-developers-250-to-write-technical-articles-d2ace0fa6b0f - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/10-ai-powered-secret-websites-that-will-increase-your-success-in-2023-and-beyond-6bec897a5437 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/9-must-have-macos-apps-youll-wish-you-knew-a-decade-earlier-9e658234cda4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/elevate-your-digital-life-top-apps-for-iphone-and-mac-august-2023-117d8bba9291 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/10-new-macos-apps-to-10x-your-daily-productivity-9129433ce77b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/framerated/talk-to-me-2022-a0262625f9d8 - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/august-authenticity-the-sweetness-of-growing-up-and-showing-up-e9e72b7841ff - 2023-10-06 - monthly - 1.0 - - - - https://writingcooperative.com/2-strategies-to-create-unique-content-while-piggybacking-on-others-credibility-when-you-re-80b552d1131a - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/6-great-examples-of-ux-research-emails-9dd7bd8ff8d5 - 2023-10-06 - monthly - 1.0 - - - - https://andzwa.medium.com/vision-the-often-missing-leadership-ingredient-3815216346f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@mariana.carvalho/google-scholarships-that-you-must-know-aca36fa0a813 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@anthonydmays/how-to-practice-leetcode-questions-the-right-way-4f9735cf06c6 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/dashboards-are-dead-3-years-later-72347757bfa6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/3-reasons-why-you-shouldnt-become-a-data-scientist-27994914cfea - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-year-of-the-looking-glass/average-manager-vs-great-manager-cf8a2e30907d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/how-quitting-my-corporate-job-for-my-startup-dream-f-cked-my-life-up-3b6b3e29b318 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/s/story/7-things-you-need-to-stop-doing-to-be-more-productive-backed-by-science-a988c17383a6 - 2023-10-06 - monthly - 1.0 - - - - https://nicharry.medium.com/advice-from-30-year-old-me-to-20-year-old-me-b9b035d39e2d - 2023-10-06 - monthly - 1.0 - - - - https://jonbell.medium.com/mcdonalds-theory-9216e1c9da7d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/s/story/how-to-be-polite-9bf1e69e888c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@zenrows/dynamic-web-pages-scraping-python-46d001a9014b - 2023-10-06 - monthly - 1.0 - - - - https://laurentiuchisca.medium.com/how-mark-minervini-won-u-s-investing-championship-2021-by-334-8-e9b3c2beb026 - 2023-10-06 - monthly - 1.0 - - - - https://autisticwidower.medium.com/could-i-be-the-only-person-in-the-world-still-using-this-software-6a2ec71e96e1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/devwarlocks/the-new-override-attribute-in-php-8-3-af501f5f8f34 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/yes-python-has-a-built-in-database-heres-how-to-use-it-b3c033f172d3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/seen-on-screen/jennifer-lawrence-just-did-a-naked-fight-scene-and-its-glorious-d80f186511c9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/sexography/6-g-spot-myths-women-wish-men-would-stop-believing-c636ca20a211 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/sexography/how-to-ride-your-man-81cef5faedd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@siddheshb008/lenet-5-architecture-explained-3b559cb2d52b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@smallfishbigsea/a-walk-through-of-alexnet-6cbd137a5637 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/credit-card-fraud-detection-using-machine-learning-python-5b098d4a8edc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@krystynawaterhouse/an-introduction-to-software-architecture-for-product-managers-c155c30f0629 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@krystynawaterhouse/how-do-apis-work-and-when-should-you-use-one-what-every-product-manager-needs-to-know-5816d38adf62 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/train-test-split-and-cross-validation-in-python-80b61beca4b6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/honestly-yours/i-was-wrong-about-taylor-swift-397434376c6c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/engage/the-paradox-of-pleasurable-sadness-why-do-we-like-sad-music-c30cc7cc16f9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/honestly-yours/what-about-violent-rap-and-hip-hop-7ccc5c48ae80 - 2023-10-06 - monthly - 1.0 - - - - https://luayrahil.medium.com/gary-vaynerchuk-is-the-worst-part-of-any-womans-fears-75771028cceb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/my-journey-to-becoming-a-gsoc-20-student-8c34a78e97ef - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ignacio.de.gregorio.noblejas/ai-company-valued-at-260-million-its-only-four-weeks-old-80b7508fcadd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/automate-your-machine-learning-training-process-97e63c584716 - 2023-10-06 - monthly - 1.0 - - - - https://sarajbenincasa.medium.com/a-love-song-for-chicago-97fb8ba3ff94 - 2023-10-06 - monthly - 1.0 - - - - https://glaubercosta-11125.medium.com/career-advice-for-young-system-programmers-c7443f2d3edf - 2023-10-06 - monthly - 1.0 - - - - https://nickwignall.medium.com/3-habits-that-will-make-you-mentally-strong-4f7e95419a88 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/the-complete-guide-to-connecting-to-a-database-in-node-js-9c7850235b91 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/mastering-monte-carlo-how-to-simulate-your-way-to-better-machine-learning-models-6b57ec4e5514 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/cracking-open-the-hugging-face-transformers-library-350aa0ef0161 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/deep-learning-understand-the-inception-module-56146866e652 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-new-climate/permacomputing-tackling-the-problem-of-technological-waste-4cc7a4437ad6 - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/how-i-reduced-my-smartphone-use-by-2-hours-a-day-in-6-simple-steps-d840d002c004 - 2023-10-06 - monthly - 1.0 - - - - https://moulshree.medium.com/15-notion-templates-that-will-save-you-hours-c9ef38808297 - 2023-10-06 - monthly - 1.0 - - - - https://rodolfo-marcos07.medium.com/how-to-create-a-simple-and-powerful-data-pipeline-in-google-cloud-a335275cf7ab - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jagadeshjamjalanarayanan/key-notes-on-partitioning-clustering-in-bigquery-30306c148921 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/automate-the-exploratory-data-analysis-eda-to-understand-the-data-faster-not-better-2ed6ff230eed - 2023-10-06 - monthly - 1.0 - - - - https://thisisananya.medium.com/the-nine-10-minute-daily-habits-that-will-change-your-life-b7376b727ada - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@atakankorez/advanced-sql-techniques-you-should-know-66f7d3ac638f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/build-more-analyses-build-less-dashboards-a4789052e35d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/a-better-browsing-experience-for-2023-with-firefox-3d00f1c3fd47 - 2023-10-06 - monthly - 1.0 - - - - https://iamalexmathers.medium.com/14-shabits-that-make-you-more-focused-than-98-of-people-1fd9e40093ff - 2023-10-06 - monthly - 1.0 - - - - https://lukesjhoward.medium.com/the-formula-to-becoming-a-top-1-data-analyst-c5b135349a06 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/irlproduct/the-problem-solvers-playbook-17-questions-to-sharpen-your-thinking-167e2ce134c2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mind-cafe/elon-musks-explanation-of-how-to-read-books-has-never-been-more-relevant-99b684fbda8 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/6-pythonic-ways-to-replace-if-else-statements-fb5e678463ed - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/my-dead-simple-writing-routine-that-has-helped-me-write-over-900-articles-in-2-hours-a-day-b0b3c147f157 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/ddd-in-node-typescript-the-functional-way-part-1-98d18d998b33 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/optimal-threshold-for-imbalanced-classification-5884e870c293 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@smraiyyan/11-secret-ai-websites-to-complete-hours-of-work-in-just-minutes-1d4fd6c9ef60 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/history-of-women/the-10-ways-men-identified-witches-in-salem-are-still-way-too-familiar-11477188dc22 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/cinemania/10-sci-fi-movies-i-guarantee-youve-never-heard-of-2b9dcdc075f3 - 2023-10-06 - monthly - 1.0 - - - - https://fanfare.pub/10-criminally-underrated-sci-fi-movies-8e1143bf1f50 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/alpine-slim-stretch-buster-jessie-bullseye-bookworm-what-are-the-differences-in-docker-62171ed4531d - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/a-framework-for-efficiently-serving-your-large-language-models-4a009aae71ff - 2023-10-06 - monthly - 1.0 - - - - https://artificialcorner.com/how-to-scrape-a-web-page-with-chatgpt-no-programming-required-d63d6a561aee - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/p-values-understanding-statistical-significance-in-plain-language-41a00ff68f23 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/building-a-custom-summarization-app-with-streamlit-and-langchain-11ab19099822 - 2023-10-06 - monthly - 1.0 - - - - https://artificialcorner.com/a-fastapi-for-your-local-llm-part-1-7bdfd2605b53 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/3-tools-to-track-and-visualize-the-execution-of-your-python-code-666a153e435e - 2023-10-06 - monthly - 1.0 - - - - https://derekfong.medium.com/verify-github-organizations-domain-on-namecheap-9b2af148679a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@saravra/splunk-homelab-setup-a7c2e2a1c046 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@linuxlearninghub/mastering-linux-the-ultimate-guide-to-becoming-a-linux-expert-44f9c4a8505a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@kaanboke/the-top-50-active-medium-publications-october-2022-update-52967bf2b210 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/art-of-data-engineering/how-to-quietly-upgrade-yourself-as-a-data-engineer-while-working-9-to-5-5b13829d15bc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jumpingkiwi/how-to-publish-markdown-to-medium-a-clean-workflow-a0ab78bdac34 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/in-fitness-and-in-health/you-delete-brain-fog-from-your-life-completely-with-these-5-small-tweaks-8addc52c4174 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lessons-from-history/were-entering-a-time-of-quick-and-unprecedented-change-no-one-is-ready-for-16cd58b22975 - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/forget-pip-conda-requirements-txt-use-poetry-instead-and-thank-me-later-226a0bc38a56 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-i-cracked-the-meta-machine-learning-engineering-interview-aa32f64b8e4b - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/stop-using-python-strings-to-represent-file-paths-7f60bc5479c5 - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/how-would-you-learn-anything-with-chatgpt-easily-ba513320c821 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/everyone-talks-about-langchain-but-this-alternative-seduced-me-bd6940575049 - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/build-a-custom-ai-based-chatbot-using-langchain-weviate-and-streamlit-568efcdefca1 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/harnessing-the-power-of-knowledge-graphs-enriching-an-llm-with-structured-data-997fabc62386 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/here-is-how-i-added-langsmith-to-monitor-my-ai-financial-analyst-built-with-langchain-d05ac41cabac - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/i-quit-my-day-job-and-now-i-make-six-figures-writing-online-heres-how-f044e63e2890 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tearth/should-i-use-jupyter-notebooks-or-python-scripts-for-my-next-ml-project-7be0ab2ae57e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/5-reasons-why-you-should-switch-from-jupyter-notebook-to-scripts-cb3535ba9c95 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/your-features-are-important-it-doesnt-mean-they-are-good-ff468ae2e3d4 - 2023-10-06 - monthly - 1.0 - - - - https://leogtzr.medium.com/how-to-quickly-test-your-regular-expressions-6acc3c6dbfaf - 2023-10-06 - monthly - 1.0 - - - - https://eand.co/the-promise-and-peril-of-the-creator-economy-f1dfd6bfdc23 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-ultimate-guide-to-nnu-net-for-state-of-the-art-image-segmentation-6dda7f44b935 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/v-net-u-nets-big-brother-in-image-segmentation-906e393968f7 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/metrics-to-evaluate-your-semantic-segmentation-model-6bcb99639aa2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@mariusbongarts/how-to-build-the-medium-text-highlighter-as-a-chrome-extension-with-web-components-b3feccddcd01 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@redeaddiscolll/bayesian-ml-dynamic-sharpe-ratios-and-pairs-trading-f6560c340f70 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/data-breach/introduction-to-harris-corner-detector-32a88850b3f6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/source-and-buggy/do-one-thing-and-do-it-well-886b11a5d21 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/information-theory-applied-to-wordle-b63b34a6538e - 2023-10-06 - monthly - 1.0 - - - - https://xabaras.medium.com/setting-your-telegram-bot-webhook-the-easy-way-c7577b2d6f72 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/differences-between-machine-learning-and-regular-code-9edd0e54ea58 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/learn-by-implementing-reacts-usestate-and-useeffect-a-simplified-overview-ea8126705a88 - 2023-10-06 - monthly - 1.0 - - - - https://fatfish.medium.com/interviewer-what-happened-to-npm-run-xxx-a7e68e024779 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/10-websites-that-you-should-start-using-to-succeed-in-2023-8bbf6a4bfe27 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/cross-entropy-loss-function-f38c4ec8643e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@cameronjosephjones/building-a-kpi-dashboard-in-streamlit-using-python-c88ac63903f5 - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/chatgpt-plugin-afed723e17d8 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/hierarchy-strips-in-user-interfaces-f88b9cbf64b - 2023-10-06 - monthly - 1.0 - - - - https://francescod.medium.com/5-newly-launched-productivity-apps-on-my-radar-570314bada0e - 2023-10-06 - monthly - 1.0 - - - - https://endasheridan.xyz/9-new-ai-apps-that-will-transform-your-life-march-2023-1e2ab0eb38dc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/5-chatgpt-prompts-i-use-to-write-high-ranking-posts-for-my-website-cf061c30aba2 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/rainbow-dqn-the-best-reinforcement-learning-has-to-offer-166cb8ed2f86 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/deep-q-network-dqn-ii-b6bf911b6b2c - 2023-10-06 - monthly - 1.0 - - - - https://artificialcorner.com/my-honest-review-of-some-paid-ai-tools-ive-used-so-far-ecd7da4e5e87 - 2023-10-06 - monthly - 1.0 - - - - https://artificialcorner.com/this-one-prompt-will-10x-your-chat-gpt-results-265187529bd5 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-successfully-install-anaconda-on-a-mac-and-actually-get-it-to-work-53ce18025f97 - 2023-10-06 - monthly - 1.0 - - - - https://easonlai888.medium.com/enhancing-product-search-with-semantic-similarity-using-word-embeddings-715fc4d29e0d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-deploy-machine-learning-models-601f8c13ff45 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bitchy/the-term-revenge-porn-is-misleading-let-s-call-it-what-it-really-is-1c5d28047b22 - 2023-10-06 - monthly - 1.0 - - - - https://indica.medium.com/why-russia-will-win-c443fc7f4e7a - 2023-10-06 - monthly - 1.0 - - - - https://doctorow.medium.com/enshitternet-c1d4252e5c6b - 2023-10-06 - monthly - 1.0 - - - - https://dariusforoux.medium.com/save-20-hours-a-week-by-removing-these-4-useless-things-in-your-life-c0d831b09a3a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/in-fitness-and-in-health/you-kill-your-brain-cells-rapidly-with-these-4-stupid-everyday-activities-d0e5a7fc3874 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/build-a-transparent-question-answering-bot-for-your-documents-with-langchain-and-gpt-3-7f6a71f379f8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/obsidian-plugins-review-23-30e84a7a3d80 - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/how-to-land-your-first-freelance-design-job-5a2aaabe9083 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/acing-the-sql-challenge-d8b8feb0a041 - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/understanding-how-llms-like-chatgpt-will-change-your-business-c5e65532fbab - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/digital-global-traveler/the-lucrative-job-for-young-japanese-girls-that-might-disgust-most-western-women-c19acb0eec39 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/digital-global-traveler/my-younger-japanese-wife-hasnt-slept-with-me-in-7-years-i-ve-never-been-happier-80d8e7e6ca1d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/digital-global-traveler/my-japanese-wife-taught-me-size-does-not-equal-happiness-heres-why-66f1ffacda2f - 2023-10-06 - monthly - 1.0 - - - - https://scarletinked.medium.com/are-you-the-leader-were-looking-for-interviewing-at-amazon-8301d787815d - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/a-day-of-resolving-errors-in-android-jetpack-compose-fbb34922baf0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/role-based-access-control-rbac-with-spring-boot-and-jwt-bc20a8c51c15 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/11-must-know-sql-statements-for-data-scientists-a098b14c470a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/ace-the-sql-questions-in-data-science-analysis-technical-interview-3bed41cc827c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/lesser-known-skills-required-for-you-being-a-good-data-analyst-f1dd5a072260 - 2023-10-06 - monthly - 1.0 - - - - https://short-history.com/floating-brothel-lady-juliana-341a3ec84b27 - 2023-10-06 - monthly - 1.0 - - - - https://codeburst.io/my-experience-with-test-driven-development-aka-tdd-763abbd9d8eb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/the-pros-and-cons-of-tdd-in-software-development-bc65ec3bcc76 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bb-tutorials-and-thoughts/how-to-develop-and-build-react-app-with-java-backend-c1e6c5c93ae - 2023-10-06 - monthly - 1.0 - - - - https://eand.co/five-dangerous-myths-about-authoritarianism-you-probably-believe-but-shouldnt-43eabaf363a2 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/text-summarization-llama2-how-to-use-llama2-with-langchain-ad5775c80716 - 2023-10-06 - monthly - 1.0 - - - - https://blog.gopenai.com/cost-effective-conversational-ai-optimizing-openais-chat-completion-api-with-prompt-engineering-e53ba893d10f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/aimonks/if-you-want-to-be-a-prompt-engineer-you-need-to-know-your-token-limits-5d5aae0f2e7a - 2023-10-06 - monthly - 1.0 - - - - https://entreprenal.com/jessica-albas-honest-company-went-from-1-5-billion-to-150-million-because-they-lied-215045e46bde - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-to-find-unique-objects-in-an-array-in-javascript-by-object-reference-or-key-value-pairs-131338898d7a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/topic-modeling-with-llama-2-85177d01e174 - 2023-10-06 - monthly - 1.0 - - - - https://nickwignall.medium.com/5-habits-of-highly-focused-people-7b9a993e3f54 - 2023-10-06 - monthly - 1.0 - - - - https://shwjason.medium.com/how-a-simple-script-helped-help-made-me-over-1000-month-a759a604e4b3 - 2023-10-06 - monthly - 1.0 - - - - https://tosny.medium.com/2-apps-that-could-impact-everything-e4b2eb380ffe - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@pkmbeth/3-apps-i-cannot-live-without-23f4a953a90d - 2023-10-06 - monthly - 1.0 - - - - https://curiouse.co/6-apps-that-will-skyrocket-your-productivity-and-creativity-e582a814d8ef - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bugs-that-bite/oops-medium-error-cached-in-google-a9b3b19bb8e0 - 2023-10-06 - monthly - 1.0 - - - - https://netflixtechblog.com/ephemeral-volatile-caching-in-the-cloud-8eba7b124589 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-build-a-simple-kafka-producer-and-consumer-with-python-a967769c4742 - 2023-10-06 - monthly - 1.0 - - - - https://leshchuk.medium.com/http-cache-on-rails-nginx-stack-950fee2f8eef - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/orikami-blog/behind-the-screens-likert-scale-visualization-368557ad72d1 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/an-informative-colab-guide-to-load-image-datasets-from-github-kaggle-and-local-machine-75cae89ffa1e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jogarcia/breaking-the-proxy-walls-with-redsocks-in-linux-f4c1bfb6fb6a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coderbyte/a-complete-guide-to-becoming-a-self-taught-programmer-from-beginner-to-developer-dd0e462600c3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/an-example-of-sequence-modelling-with-transformer-7d4c7dc85fc3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/the-7-most-popular-coding-challenge-websites-for-2023-fcfda15cf0ad - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/linux-tcpdump-deep-dive-c916908eb687 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-everyday-writer/the-perfect-note-taking-system-is-here-4e905aacf48f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/considerations-when-choosing-a-machine-learning-model-aa31f52c27f3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/6-predictive-models-models-every-beginner-data-scientist-should-master-7a37ec8da76d - 2023-10-06 - monthly - 1.0 - - - - https://johnvastola.medium.com/10-must-know-machine-learning-algorithms-for-data-scientists-adbf3272398a - 2023-10-06 - monthly - 1.0 - - - - https://arshren.medium.com/step-by-step-guide-to-implementing-ddpg-reinforcement-learning-in-pytorch-9732f42faac9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/why-ive-broken-free-from-the-apple-watch-960991089ca - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/auto-encoder-what-is-it-and-what-is-it-used-for-part-1-3e5c6f017726 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/freedium/freedium-providing-financial-opportunities-globally-d9bbf6b4e927 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/disruptive-innovation-journal/how-to-make-decent-money-with-musks-twitter-monetization-plan-8893478d5120 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/platypus-quick-training-of-llms-cheap-and-efficient-yet-powerful-use-of-qlora-and-llama2-297d4ac139a6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/quick-code/understanding-self-in-python-a3704319e5f0 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-mostly-complete-chart-of-neural-networks-explained-3fb6f2367464 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/use-cython-to-get-more-than-30x-speedup-on-your-python-code-f6cb337919b6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@utkarshkushwaha72/containerizing-nvidia-deepstream-apps-a62d5c01a150 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/memory-leaks-in-programming-d1b0447b9a73 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/rungo/anatomy-of-channels-in-go-concurrency-in-go-1ec336086adb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/tech-carnot/understanding-multiprocessing-in-aws-lambda-with-python-6f50c11d57e4 - 2023-10-06 - monthly - 1.0 - - - - https://theusefultech.medium.com/i-refuse-to-use-my-mac-without-this-must-have-app-b72293b91055 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-narrative-arc/whats-a-little-sexual-harassment-between-friends-b3531524d0d0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/sexography/does-porn-really-cause-erectile-dysfunction-18a7c21e2201 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/a-glimpse-into-my-perfect-macbook-pro-setup-ba5aaefcc8f0 - 2023-10-06 - monthly - 1.0 - - - - https://iamalexmathers.medium.com/11-behaviours-that-make-people-respect-you-more-2676d2d7a157 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/10-jupyter-lab-extensions-to-boost-your-productivity-4b3800b7ca2a - 2023-10-06 - monthly - 1.0 - - - - https://preettheman.medium.com/there-are-the-programming-languages-apple-uses-2edc3138cc29 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/swiftui-view-models-are-not-protocols-8c415c0325b1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/deep-inside-views-state-and-performance-in-swiftui-d23a3a44b79 - 2023-10-06 - monthly - 1.0 - - - - https://medium.nextlevelswift.com/create-a-model-mock-and-list-of-cells-184fda9d0c86 - 2023-10-06 - monthly - 1.0 - - - - https://jianyuan-chen.medium.com/complete-guide-to-data-flow-in-swiftui-bb5fca1cb4c5 - 2023-10-06 - monthly - 1.0 - - - - https://garrickmcfadden.medium.com/i-came-to-bear-witness-to-a-lynching-part-2-minneapolis-mn-5b382c2cb181 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/starts-with-a-bang/the-nuclear-fusion-era-has-arrived-if-we-choose-it-b80616a813e6 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/how-to-build-a-javascript-library-6b7161315f3d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/on-the-couch/the-most-revealing-sign-of-emotional-immaturity-in-a-partner-8db70142571a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/should-i-repartition-836f7842298c - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/discover-valibot-your-friendly-lightweight-zod-alternative-youll-love-to-use-732a7af8413f - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/interview-can-you-stop-foreach-in-javascript-724d9d76fd72 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@data.science.enthusiast/how-to-deploy-a-streamlit-machine-learning-app-over-aws-ec2-instance-12b6751268f1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@dotcom.software/beautiful-symfony-controllers-with-the-view-event-93dfb3330cf4 - 2023-10-06 - monthly - 1.0 - - - - https://dariusforoux.medium.com/the-stoic-triangle-of-wealth-how-to-live-well-and-be-rich-dcc5b50879c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@cecilia.humlelu/using-c-c-and-objective-c-frameworks-in-swift-apps-6a60e5f71c36 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/design-is-not-a-process-its-an-odyssey-replacing-double-diamond-d6bc06965238 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/airbnbs-shift-and-the-future-of-ux-research-18e5b94b18df - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/how-to-get-better-at-time-management-if-youre-designing-for-multiple-projects-bf47e008022c - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/how-to-highlight-ux-research-and-gaps-in-knowledge-by-storytelling-with-timelines-58ef84598a0 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/how-to-ensure-you-dont-lose-your-audience-5-minutes-into-your-user-research-presentation-2a909c329714 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@paul.k.pallaghy/where-are-the-aliens-its-pretty-clear-imo-33406d34771b - 2023-10-06 - monthly - 1.0 - - - - https://rgmcgrath.medium.com/thinking-wrong-how-to-trick-our-brains-into-being-more-innovative-cc8ed619ccb9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/how-to-generate-million-dollar-business-ideas-and-billion-dollar-ideas-714c0b6819f6 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/compare-which-machine-learning-model-performs-better-4912b2ed597d - 2023-10-06 - monthly - 1.0 - - - - https://thealexguides.medium.com/my-plan-to-made-1-million-in-next-12-month-b56cf229aafe - 2023-10-06 - monthly - 1.0 - - - - https://artificialcorner.com/youre-using-chatgpt-wrong-here-s-how-to-be-ahead-of-99-of-chatgpt-users-886a50dabc54 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@alessandromanilii/loading-views-in-swiftui-12ba99f13025 - 2023-10-06 - monthly - 1.0 - - - - https://artificialcorner.com/4-ways-to-access-the-new-gpt-4-2-free-options-69eff2558045 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/is-node-js-really-single-threaded-7ea59bcc8d64 - 2023-10-06 - monthly - 1.0 - - - - https://faun.pub/metal-lb-with-nginx-ingress-controller-on-bare-metal-kubernetes-fb747c1ff439 - 2023-10-06 - monthly - 1.0 - - - - https://valeman.medium.com/python-vs-r-for-time-series-forecasting-395390432598 - 2023-10-06 - monthly - 1.0 - - - - https://valeman.medium.com/benchmarking-neural-prophet-part-i-neural-prophet-vs-prophet-252990763468 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/android-dev-hacks/android-interview-questions-and-answers-part-1-f913877d3a4e - 2023-10-06 - monthly - 1.0 - - - - https://kokumura.medium.com/finding-optimism-when-lifes-problems-feel-impossible-4f07bfa6e938 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/android-dev-hacks/android-interview-questions-and-answers-part-2-804793cef0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/practice-in-public/7-subtle-signs-and-symptoms-of-fake-productivity-2ffaede9d00b - 2023-10-06 - monthly - 1.0 - - - - https://jennieyoung.medium.com/frustrated-with-the-apps-try-the-burned-haystack-dating-method-5663eee6254a - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/ui-cheat-sheet-dropdown-field-a30025c0f432 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/produclivity/using-johnny-decimal-with-obsidian-solved-all-my-organising-woes-68c8c5c3dcc9 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/youre-decent-at-python-if-you-can-find-these-4-mistakes-e02519d44995 - 2023-10-06 - monthly - 1.0 - - - - https://serokell.medium.com/how-is-ai-used-in-graphic-design-a27bf907cbf3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/comparing-and-explaining-diffusion-models-in-huggingface-diffusers-a83d64348d90 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/nerd-for-tech/getting-started-with-editor-js-197d06926b6b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/how-writers-can-attract-more-readers-by-using-design-thinking-principles-3c3fb62c374f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/boosting-model-accuracy-techniques-i-learned-during-my-machine-learning-thesis-at-spotify-code-8027f9c11e57 - 2023-10-06 - monthly - 1.0 - - - - https://tosny.medium.com/7-websites-i-visit-every-day-570cd7b58522 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@elena.caballero/my-daily-use-apps-c6ee9512fd62 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/learn-next-js-by-building-your-first-next-js-app-from-scratch-8ec7cc93a9cb - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/guide-on-supercharging-ios-app-project-management-218d8e518582 - 2023-10-06 - monthly - 1.0 - - - - https://cigdemkadakoglu.medium.com/sonarqube-installation-on-ubuntu-20-04-with-community-branch-plugin-53e20cbded08 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mind-cafe/if-this-is-why-you-read-youre-wasting-your-time-4acc321972d - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/through-the-ages-apple-animation-apis-2ab5925f546b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/predicting-football-match-result-using-poisson-distribution-ac72afbe36e0 - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/how-to-use-poisson-distribution-to-predict-match-scores-with-python-85d2a691833f - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/xcode-templates-tutorial-for-ios-44951449ee8b - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/reduce-xcode-build-time-for-ios-bf43d3ca4ab8 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/generating-xcodeprojs-with-xcodegen-7d291cfc2f46 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/i-specifically-told-our-hr-to-hire-a-stable-engineer-next-time-362eb2c86c50 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/iphone-15-the-very-latest-and-some-news-you-didnt-want-to-hear-32b02cb5fbcc - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/introducing-appwrite-an-open-source-backend-server-for-mobile-web-developers-4be70731575d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/feature-importance-analysis-with-shap-i-learned-at-spotify-aacd769831b4 - 2023-10-06 - monthly - 1.0 - - - - https://jean.medium.com/ask-vs-guess-culture-adcf88313211 - 2023-10-06 - monthly - 1.0 - - - - https://baos.pub/6-books-that-will-redefine-almost-everything-you-thought-you-knew-1f2057980570 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@pkmbeth/my-favourite-learning-resources-b513f2d6daf5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-techlife/python-up-your-code-mixins-3b26e76c0f45 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/computer-vision-how-to-tackle-the-problem-of-class-imbalance-in-image-datasets-d4d0ca6bd5db - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@simply_stef/swiftui-working-with-timers-e0a055463f3e - 2023-10-06 - monthly - 1.0 - - - - https://dhavalthakur.medium.com/machine-learning-all-about-optics-clustering-implementation-in-python-85d7c76a23d5 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/finding-and-visualizing-clusters-of-geospatial-data-698943c18fed - 2023-10-06 - monthly - 1.0 - - - - https://soheilnik.medium.com/clustering-geolocation-data-with-dbscan-algorithm-in-typescript-bab08345c13c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/you-should-pick-only-one-framer-motion-vs-gsap-9c4352f571a4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/are-you-accidentally-building-the-second-hardest-type-of-startup-931d9667dc40 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/how-a-20-years-experienced-programmer-earns-200k-yr-by-working-5-hours-week-e3b137b88d4e - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/redesigning-google-drives-list-view-c6a9bdbd821e - 2023-10-06 - monthly - 1.0 - - - - https://yidaotus.medium.com/breaking-ecb-by-prepending-your-own-message-b7b376d5efbb - 2023-10-06 - monthly - 1.0 - - - - https://entreprenal.com/i-never-understood-why-my-father-in-law-invests-more-than-75-of-his-assets-in-real-estate-f9762acde53f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/i-trained-an-ai-to-imitate-my-own-art-style-this-is-what-happened-461785b9a15b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@containeroo/traefik-2-0-route-external-services-through-traefik-7bf2d56b1057 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/adjust-for-overdispersion-in-poisson-regression-4b1f52baa2f1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/obsidian-quick-tip-enhance-markdown-editing-with-link-with-tab-55a8b5c99177 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tony.infisical/the-death-of-the-env-file-6d65bfc6ac5e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/hello-love/5-brutal-truths-i-want-my-husbands-mistress-to-know-bf8929b872c6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/11-fantastic-cheap-macos-apps-youve-never-heard-of-but-will-use-regularly-59ffc1472e35 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/introduction-to-shap-with-python-d27edc23c454 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/regularization-in-deep-learning-l1-l2-and-dropout-377e75acc036 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/train-your-own-stable-diffusion-model-locally-no-code-needed-36f943825d23 - 2023-10-06 - monthly - 1.0 - - - - https://tosny.medium.com/7-alternatives-to-each-major-app-we-almost-all-use-that-are-much-better-fdc2b68d4eff - 2023-10-06 - monthly - 1.0 - - - - https://winsmarts.com/mac-linux-terminal-trick-running-multiple-commands-5aebb2c1a173 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/info-plist-is-missing-in-xcode-13-heres-how-to-get-it-back-1a7abf3e2514 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coinmonks/how-to-learn-solidity-in-30-days-78b02e503d23 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@mirijam.missbichler/why-japanese-websites-look-so-different-2c7273e8be1e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@kennch/stateful-and-stateless-authentication-10aa3e3d4986 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/generating-xcodeprojs-with-tuist-4f11134e9f5a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/sexography/when-you-can-orgasm-alone-but-not-with-a-partner-7ebf5576cc4e - 2023-10-06 - monthly - 1.0 - - - - https://prathma.medium.com/creating-your-custom-objective-c-framework-for-ios-apps-5d5ccf95c6c7 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/clip-the-most-influential-ai-model-from-openai-and-how-to-use-it-f8ee408958b1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/how-to-get-a-free-lifetime-domain-with-eu-org-4db95965285d - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/the-ux-writing-of-baldurs-gate-3-6ea80e6cc278 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/directing-your-domain-to-your-website-eu-org-part-2-658f298fc8ae - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/data-science-for-good-beyond-profits-towards-a-better-world-2d161e2d2b28 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-future-of-music-discovery-search-vs-generation-4d565a08515e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/reimagining-the-civic-commons/can-a-folded-map-unite-us-e1d95e9544b8 - 2023-10-06 - monthly - 1.0 - - - - https://tomaspueyo.medium.com/why-half-of-humanity-live-in-this-circle-2c25be0994ce - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/swiftui-flow-coordinator-pattern-with-navigationstack-to-coordinate-navigation-between-views-ios-1a2b6cd239d7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/devops-with-valentine/how-to-configure-your-own-gitlab-runner-with-a-docker-executor-on-aws-ec2-d76c7be0660d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/ios-14-new-list-set-up-using-uilistcontentconfiguration-and-uilistcontentview-d2c71b4975c7 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/swiftui-choosing-an-application-architecture-6ec9289f8e8f - 2023-10-06 - monthly - 1.0 - - - - https://entrepreneurshandbook.co/if-you-cant-buy-it-twice-don-t-buy-it-7925c97ca5a3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/structural-decomposition-in-swiftui-8892e512b18e - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/best-practices-in-swiftui-composition-282b02772a24 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/swiftui-101-how-not-to-initialize-bindable-objects-6e539d1b5344 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/swiftui-microservices-c7002228710 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/one-of-the-biggest-debates-on-the-internet-is-whether-you-should-rent-or-own-a-home-3b55f8ed4e51 - 2023-10-06 - monthly - 1.0 - - - - https://artificialcorner.com/how-to-easily-scrape-data-from-social-media-the-example-of-reddit-138d619edfa5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@estalontech/what-if-brics-currency-is-valued-at-1-to-us-55-00-277bdced55f0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@laraveltuts/bulk-insertion-in-laravel-10-using-eloquent-orm-181d21cf01cd - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/sift-scale-invariant-feature-transform-c7233dc60f37 - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/neovim-for-beginners-packer-manager-plugin-e4d84d4c3451 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/object-oriented-data-science-refactoring-code-5bcb4ae7ce72 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/sopmac-labs/langchain-aws-lambda-serverless-q-a-chatbot-203470b9906f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/overview-of-ui-monitoring-tools-for-apache-kafka-clusters-9ca516c165bd - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-practical-introduction-to-llms-65194dda1148 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/understanding-the-sliding-window-technique-in-algorithms-c6c3bf8226da - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/webapps-in-python-with-solara-a-streamlit-killer-ab6fcc7bf5d7 - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/neovim-for-beginners-snippets-using-lua-11e46c4d417c - 2023-10-06 - monthly - 1.0 - - - - https://christopherpjones.medium.com/the-art-of-slowing-down-5125bcc95a0 - 2023-10-06 - monthly - 1.0 - - - - https://ngoeke.medium.com/the-difference-between-being-clever-intelligent-and-wise-7190d4c15f9e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mind-cafe/the-subtle-art-of-saying-no-5cbdda29bf37 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/5-best-machine-learning-books-for-beginners-and-experienced-engineers-9eb5c1d8f39f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-evolution-of-alphago-to-muzero-c2c37306bf9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/hacker-toolbelt/arch-install-with-full-disk-encryption-6192e9635281 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/how-to-be-a-better-listener-in-a-world-where-everyones-talking-5b271891b606 - 2023-10-06 - monthly - 1.0 - - - - https://4fishgreenberg.medium.com/how-to-get-lost-6422dc740a93 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/you-can-now-build-a-chatbot-to-talk-to-your-internal-knowledge-base-b6066cacf2d5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/vscodetips/understanding-git-stash-and-using-it-easily-in-vscode-7da049160097 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/do-less-but-better-46b8eb25e913 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/pipeline-a-data-engineering-resource/creating-the-dashboard-that-got-me-a-data-analyst-job-offer-de3f0d6b1771 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/doubling-your-money-with-the-kelly-criterion-and-bayesian-statistics-83ee407c0777 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-not-to-use-machine-learning-for-time-series-forecasting-avoiding-the-pitfalls-19f9d7adf424 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/7-reasons-why-you-should-never-chase-women-ec09e230ea7e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/what-is-tutorial-hell-and-how-to-avoid-it-to-improve-as-a-developer-8c5376c97011 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@salman-cissp/how-to-make-sense-of-cybersecurity-frameworks-a5c84064ee0c - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/conditional-code-execution-via-decorator-in-python-cd6412f82c11 - 2023-10-06 - monthly - 1.0 - - - - https://iamalexmathers.medium.com/8-steps-to-writing-an-article-people-love-in-less-than-20-minutes-602edddacbf4 - 2023-10-06 - monthly - 1.0 - - - - https://hughmcguire.medium.com/why-can-t-we-read-anymore-503c38c131fe - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/a-step-by-step-guide-to-building-a-chatbot-based-on-your-own-documents-with-gpt-2d550534eea5 - 2023-10-06 - monthly - 1.0 - - - - https://beingpax.medium.com/how-to-use-obsidian-as-a-task-manager-6643bbcb1911 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/ne-digital/how-to-improve-lcp-and-speed-index-for-next-js-websites-f129ae776835 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@martin-thissen/llama2-chat-on-your-local-computer-free-gpt-4-alternative-41b7638033a8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jsmney/a-more-in-depth-look-at-sequelizes-magic-methods-428928c70d58 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/new-deep-learned-tool-designs-novel-proteins-with-high-accuracy-41ae2a7d23d8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/dlt-labs-publication/implementing-facial-recognition-in-flutter-apps-1e99a23ac9c4 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/natural-audio-data-augmentation-using-spotifys-pedalboard-212ea59d39ce - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/making-music-from-images-with-python-81db627fd549 - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/a-complete-guide-to-running-local-llm-models-3225e4913620 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/produclivity/ptpl-066-a-radical-obsidian-vault-shakeup-6-months-later-dea7ee39fb87 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@josiah.alen.brown/using-obsidian-to-manage-code-snippets-6c6016f7e16a - 2023-10-06 - monthly - 1.0 - - - - https://life2.medium.com/my-2023-productivity-suite-update-fe72e524efbc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/invisible-illness/the-surprising-truths-autism-can-teach-you-about-communication-82829c8474bb - 2023-10-06 - monthly - 1.0 - - - - https://beingpax.medium.com/new-obsidian-plugins-css-file-protection-colored-tags-plugin-manager-more-1081b82c6041 - 2023-10-06 - monthly - 1.0 - - - - https://endasheridan.xyz/11-useful-websites-that-knowing-them-feels-like-breaking-the-law-c8771afc8da2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/6-ai-tools-chatgpt-blow-your-mind-productivity-leverage-artificial-intelligence-research-chatbot-69ad2f66a317 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@cannon_circuit/the-top-two-software-engineering-skills-you-need-to-thrive-in-2023-ba431122e03e - 2023-10-06 - monthly - 1.0 - - - - https://thealexguides.medium.com/how-i-earned-1-2k-using-tweetai-in-7-days-with-proof-29c8a7fe4c28 - 2023-10-06 - monthly - 1.0 - - - - https://jens-autor.medium.com/4-lazy-side-hustles-how-i-made-8-000-last-month-5d45881235a8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/few-ways-to-update-a-state-array-in-redux-reducer-f2621ae8061 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/pandas-put-away-novice-data-analyst-status-part-1-7e1f0107dae0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/inside-of-elle-beau/patriarchy-isnt-a-merit-based-hierarchy-553cb35a06d9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/inside-of-elle-beau/patriarchy-demands-constant-ranking-and-stratification-of-all-kinds-9881c9dba597 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/inside-of-elle-beau/many-popular-narratives-about-humans-are-just-plain-wrong-fadf756530d6 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/solo-saas-how-i-built-a-serverless-workout-app-by-myself-f8d317b9e046 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/my-chatgpt-workout-generator-just-got-better-deda51878393 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/a-paper-summarizer-with-python-and-gpt-3-2c718bc3bc88 - 2023-10-06 - monthly - 1.0 - - - - https://drpicox.medium.com/20-questions-you-should-ask-in-software-development-fcf111fd5367 - 2023-10-06 - monthly - 1.0 - - - - https://deallen7.medium.com/how-to-split-text-to-columns-with-pandas-and-python-in-a-jupyter-notebook-41e2dc91fe69 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/monte-carlo-methods-b2504976c415 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/getting-started-with-langchain-a-beginners-guide-to-building-llm-powered-applications-95fc8898732c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/medium-has-an-api-605b51037b52 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/3-tips-to-reduce-openai-gpt-3s-costs-by-smart-prompting-53c457229cfc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@mcraddock/managing-openai-api-costs-strategies-and-best-practices-9b5d09eb2426 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/in-fitness-and-in-health/what-your-smart-scale-isnt-telling-you-b9fe49999e4f - 2023-10-06 - monthly - 1.0 - - - - https://applied-math-coding.medium.com/how-to-sort-a-20g-file-in-javascript-7bbba19229a9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/know-thyself-heal-thyself/give-emotions-the-freedom-they-need-to-flow-through-you-c71020d41674 - 2023-10-06 - monthly - 1.0 - - - - https://ryanholiday.medium.com/this-is-why-you-cant-wait-until-later-960431fba0df - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/thedevproject/start-using-env-for-your-flask-project-and-stop-using-environment-variables-for-development-247dc12468be - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-use-chat-gpt-and-python-to-build-a-knowledge-graph-in-neo4j-based-on-your-own-articles-c622bc4e2eaa - 2023-10-06 - monthly - 1.0 - - - - https://gidmk.medium.com/are-blue-light-glasses-a-complete-waste-of-time-9e76f9d56186 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/financial-text-classification-with-deep-learning-using-finbert-51a73b393a08 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/gptq-or-bitsandbytes-which-quantization-method-to-use-for-llms-examples-with-llama-2-f79bc03046dc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@martin-thissen/llama-alpaca-chatgpt-on-your-local-computer-tutorial-17adda704c23 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/personal-growth/people-who-feel-close-to-their-future-selves-make-better-life-choices-e6c6487596a1 - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/one-secret-to-happiness-learning-to-want-what-you-already-have-ac973f83372b - 2023-10-06 - monthly - 1.0 - - - - https://stephanjoppich.medium.com/what-loneliness-does-to-the-brain-6ed330f807d2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illuminations-mirror/delving-into-my-brains-hidden-wonders-414fff76127f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/wise-well/your-reality-is-never-what-you-think-5877efcd821d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bb-tutorials-and-thoughts/react-how-to-proxy-to-backend-server-5588a9e0347 - 2023-10-06 - monthly - 1.0 - - - - https://artificialcorner.com/python-in-excel-will-reshape-how-data-analysts-work-5d2f26b99670 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/lightgbm-for-binary-classification-in-python-910aa0b4e557 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/productivity-boost-5-obsidian-plugins-you-need-to-know-da1af9379e2d - 2023-10-06 - monthly - 1.0 - - - - https://baos.pub/steal-my-obsidian-book-notes-template-to-boost-growth-from-reading-ff41978dda8f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mind-cafe/this-small-17-year-old-console-will-free-you-from-adulthoods-shackles-447ca7a60778 - 2023-10-06 - monthly - 1.0 - - - - https://artificialcorner.com/how-to-use-chatgpt-to-learn-a-language-and-practice-it-f7e7e38b1cee - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bug-bounty/distributed-bug-bounty-hunting-using-axiom-dbbh-e3c24a635b8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bug-bounty/distributed-bruteforcing-of-dns-records-7ca481a2f501 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/hacking-info-sec/how-to-install-and-use-bbrf-35f6aa15fbc9 - 2023-10-06 - monthly - 1.0 - - - - https://pdelteil.medium.com/backing-up-your-bbrf-data-ed3e85df4b5f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bug-bounty/how-to-run-axiom-and-waybackurls-against-all-your-targets-bfc124fed918 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/build-a-better-bar-chart-with-this-trick-c66979cb17e1 - 2023-10-06 - monthly - 1.0 - - - - https://blog.stackademic.com/20-useful-pandas-snippets-for-efficient-data-manipulation-827369174f77 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/creating-a-youtube-data-pipeline-with-aws-and-apache-airflow-e5d3b11de9c2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/agile-software-development-needs-to-die-and-everyone-knows-it-1b9dc1bcb014 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/how-to-name-tokens-in-a-design-system-5b218589dadc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@xjourney/stop-constantly-switching-note-taking-software-8e7c26a67105 - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/how-to-create-an-outcome-oriented-product-roadmap-using-an-opportunity-solution-tree-d2cd5c665d04 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/naming-design-tokens-9454818ed7cb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/lets-code-a-client-side-router-for-your-no-framework-spa-19da93105e10 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/go-libraries-i-use-in-nearly-every-project-1ea729f4a9e5 - 2023-10-06 - monthly - 1.0 - - - - https://gmusumeci.medium.com/how-to-deploy-a-gcp-vpn-to-our-datacenter-using-terraform-52ad173284e9 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/emojis-in-your-data-9a5513ead2dd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/deploying-standalone-jupyterlab-on-kubernetes-for-early-stage-startups-7a1468fae289 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/writers-blokke/this-is-why-basically-nobody-reads-your-articles-4207c04a887e - 2023-10-06 - monthly - 1.0 - - - - https://writingcooperative.com/your-writing-isnt-improving-because-you-keep-doing-the-same-thing-b210e640dc85 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdev.com/mastering-api-development-with-symfony-a-comprehensive-tutorial-6111ff219c94 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/understanding-pac-learning-an-introduction-with-python-examples-72d57c38c9b4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@gamunu/enable-high-quality-audio-on-linux-6f16f3fe7e1f - 2023-10-06 - monthly - 1.0 - - - - https://jean.medium.com/bridging-the-ask-vs-culture-gap-at-work-ebc4f193938d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/11-mac-apps-are-so-addictive-youll-never-want-to-quit-51ba20c980c0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/how-to-easily-code-the-mark-minervini-trend-template-in-python-d1f40647fdbc - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/how-to-boost-your-productivity-for-scientific-research-using-obsidian-fe85c98c63c8 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/visualize-your-medium-stats-with-svelte-and-javascript-eb1ef7c71a63 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@rubentak/talk-to-your-pdf-files-in-a-pinecone-vector-databases-with-gpt-4-a-step-by-step-tutorial-1632cf7aa041 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/files-on-heroku-cd09509ed285 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/key-takeaways-from-extreme-programming-cddc82cab4d0 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/refactoring-data-science-python-code-with-chat-gpt-6b9de3e1501f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ns2586/sqlalchemys-relationship-and-lazy-parameter-4a553257d9ef - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@alexrozdolskiy/how-to-build-a-devops-portfolio-for-junior-d79b13bf326e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/making-a-rts-game-1-placing-buildings-unity-c-c53c7180b630 - 2023-10-06 - monthly - 1.0 - - - - https://entrepreneurshandbook.co/the-best-one-person-business-models-that-exist-b9fadf430cc3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@zhaoyi0113/how-to-choose-between-eventbridge-and-sqs-in-event-driven-architecture-a9a51efca9c4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/7-unique-apple-watch-use-cases-that-you-dont-know-but-need-to-know-8b73806ce6f4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/creating-a-reusable-component-for-display-validation-errors-in-angular-forms-fdfba4ac1ad1 - 2023-10-06 - monthly - 1.0 - - - - https://ai.plainenglish.io/nine-prompt-patterns-that-you-must-know-if-you-want-to-become-a-highly-paid-prompt-engineer-1981ec6c55b6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/making-a-rts-game-53-final-words-thanks-and-an-ebook-unity-c-aba38542b9b9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/making-a-rts-game-52-implementing-a-technology-tree-3-3-unity-c-c7038b979e77 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@lazyprogrammerofficial/how-to-fine-tune-chatgpt-gpt-3-5-turbo-using-the-openai-api-in-python-36f7f8ca5d28 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/multi-class-classification-extracting-performance-metrics-from-the-confusion-matrix-b379b427a872 - 2023-10-06 - monthly - 1.0 - - - - https://willmnorris.medium.com/guide-to-nvidia-3080-fe-thermal-pad-mod-cf378339f7ac - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/5-ways-to-log-an-object-to-the-console-in-javascript-7b995c56af5a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/confusion-matrix-for-multiclass-classification-f25ed7173e66 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/dynamic-pricing-with-reinforcement-learning-from-scratch-q-learning-fb3fb764da49 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/cloning-voices-with-ai-in-python-c28c666e4c76 - 2023-10-06 - monthly - 1.0 - - - - https://iamalexmathers.medium.com/how-i-trained-myself-to-be-a-finisher-of-things-8f4dbc967721 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/semantixbr/how-to-make-your-code-shine-with-gitlab-ci-pipelines-48ade99192d1 - 2023-10-06 - monthly - 1.0 - - - - https://tomaszs2.medium.com/5-awesome-go-projects-pdf-processor-portmaster-shiori-memos-k6-vol-4-76740c633e04 - 2023-10-06 - monthly - 1.0 - - - - https://conrmcdonald.medium.com/solving-multiarmed-bandits-a-comparison-of-epsilon-greedy-and-thompson-sampling-d97167ca9a50 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/geo-lift-experiments-i-understanding-difference-in-differences-5f35e41a2fdb - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/13-cool-ways-to-use-f-strings-in-python-f942db46a0e3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/ml-basics-part-2-support-vector-machines-ac4defba2615 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/designing-for-web-3-0-53ea939ac66 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-step-by-step-guide-to-scheduling-tasks-for-your-data-science-project-d7df4531fc41 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/5-proven-ways-to-make-money-from-anywhere-in-the-world-6a380e87015a - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/llamaindex-how-to-use-index-correctly-6f928b8944c6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lessons-from-history/betrayal-then-burned-alive-the-case-of-kim-antonakos-5f9b2bdb28f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@awzarenk22/which-zodiac-sign-corresponds-with-each-character-class-ddaa420841cf - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@_monitsharma/daily-leetcode-problems-problem-1376-time-needed-to-inform-all-employees-2787441bc80c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-tackle-class-imbalance-without-resampling-47bbeb2180aa - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/use-coredata-from-an-spm-package-e82c465d5d02 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-set-the-minimum-detectable-effect-in-ab-tests-fe07f8002d6d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-5-most-useful-techniques-to-handle-imbalanced-datasets-6cdba096d55a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/your-dataset-is-imbalanced-do-nothing-abf6a0049813 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/computer-science-isnt-dead-it-has-never-existed-15d78f605ed2 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/building-a-modern-batch-data-warehouse-without-updates-7819bfa3c1ee - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/the-math-of-principal-component-analysis-pca-bf7da48247fc - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-right-way-of-using-smote-with-cross-validation-92a8d09d00c7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-code-box/boost-your-laravel-applications-performance-practical-strategies-for-faster-speed-f7e93b0572f5 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/130-ml-tricks-and-resources-curated-carefully-from-3-years-plus-free-ebook-7832ca4a37ef - 2023-10-06 - monthly - 1.0 - - - - https://scriptedalchemy.medium.com/micro-fe-architecture-webpack-5-module-federation-and-custom-startup-code-9cb3fcd066c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/asynchronous-tasks-in-python-with-celery-e6a9d7e3b33d - 2023-10-06 - monthly - 1.0 - - - - https://antoniodimariano.medium.com/how-to-run-periodic-tasks-in-celery-28e1abf8b458 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/matter/the-man-who-destroyed-americas-ego-94d214257b5 - 2023-10-06 - monthly - 1.0 - - - - https://fanfare.pub/inner-turmoils-cannot-be-seen-67a6473ee9a1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/simon-dillon-cinema/film-review-aftersun-613975b0e403 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@alexgued3s/multiple-kubeconfigs-no-problem-f6be646fc07d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/python-excel-integration-with-xlwings-f9bf9d1332ea - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/stylize-and-automate-your-excel-files-with-python-cab49b57b25a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@lei.shang/fine-tune-a-llama-2-model-on-a-single-gpu-d055328d1d72 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/ggplot2-extensions-for-better-plotting-1734f62c160c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/system-design-analysis-of-instagram-51cd25093971 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/system-design-analysis-of-google-drive-ca3408f22ed3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@TechSavvyScribe/swiftui-observable-objects-c7bf9bfc2062 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/flutter-community/a-new-way-of-listening-to-the-app-lifecycle-events-in-flutter-51a0d096cf40 - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/12-app-designs-that-a-junior-designer-should-practice-with-8d7e831b8e87 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-learn-data-science-if-youre-broke-7ecc408b53c7 - 2023-10-06 - monthly - 1.0 - - - - https://nickwignall.medium.com/6-habits-of-highly-motivated-people-b130df144ee6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-partnered-pen/i-asked-chatgpt-how-to-earn-1000-online-it-was-hilarious-33189ab03f60 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-investors-handbook/top-5-trading-strategies-used-by-successful-traders-c94a4cedc41c - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/easily-add-custom-attributes-to-logrecord-objects-in-python-31dae85592b1 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/composing-swiftui-navigation-3d67198b6acb - 2023-10-06 - monthly - 1.0 - - - - https://beingpax.medium.com/obsidian-projects-a-better-way-to-manage-text-based-projects-in-obsidian-18c2a991069c - 2023-10-06 - monthly - 1.0 - - - - https://bin3xish477.medium.com/how-to-set-up-notify-by-projectdiscovery-34fc6e7f1527 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/lets-build-rxjs-countdown-in-angular-5768c8b158b8 - 2023-10-06 - monthly - 1.0 - - - - https://neowei.medium.com/4-ways-to-bypass-udemys-black-screenshot-note-taking-b4183a4482e8 - 2023-10-06 - monthly - 1.0 - - - - https://nickwignall.medium.com/4-psychological-reasons-you-feel-anxious-all-the-time-c2e8ee03d4a7 - 2023-10-06 - monthly - 1.0 - - - - https://awstip.com/implement-coordinator-pattern-to-handle-your-navigationcontroller-ios-swift-19e30fa77cb7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@KimWitten/stop-trying-to-manage-your-time-a07b6e45cec8 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/5-common-data-governance-pain-points-for-analysts-data-scientists-8efe8a007ac2 - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/19-most-elegant-sklearn-tricks-i-found-after-3-years-of-use-5bda439fa506 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/when-ai-goes-astray-high-profile-machine-learning-mishaps-in-the-real-world-26bd58692195 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/heres-what-you-are-missing-cdf4a6294020 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@aareadegboyega/boost-your-sql-queries-beginners-guide-to-window-functions-946638469291 - 2023-10-06 - monthly - 1.0 - - - - https://annageller.medium.com/brevity-means-clarity-eced96c44550 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/boost-your-flutter-apps-to-the-max-with-these-6-performance-tips-db8ebeb733ba - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/3-easy-ways-to-include-interactive-maps-in-a-streamlit-app-b49f6a22a636 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/dataseries/oop-code-structure-for-web-front-end-with-vuejs-and-typescript-part-1-677bc80bd938 - 2023-10-06 - monthly - 1.0 - - - - https://asilarslan.medium.com/2022-best-open-source-ios-apps-written-in-swiftui-ac153bd6983d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-use-opencv-with-gpu-on-colab-25594379945f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-rest-of-the-story/my-favourite-mac-app-besides-my-own-apps-b8b3dc6fd9be - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@alessandromanilii/7-famous-ios-open-source-apps-11a0c1ddfd69 - 2023-10-06 - monthly - 1.0 - - - - https://zeroesandones.medium.com/how-to-copy-text-to-clipboard-in-angular-e99c0feda501 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coderbyte/generate-a-pdf-with-javascript-3e53ca7b47e - 2023-10-06 - monthly - 1.0 - - - - https://logankilpatrick.medium.com/what-are-gpt-agents-a-deep-dive-into-the-ai-interface-of-the-future-3c376dcb0824 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/the-difference-between-the-clever-developer-the-wise-developer-a0edd9d8a692 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lost-but-coding/i-fixed-hyphenation-in-flutter-904e50440c0e - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/modularize-an-ios-app-with-spm-c3f51f03bb0b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/dual-boot-is-dead-windows-and-linux-are-now-one-27555902a128 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/auto-generate-kotlin-android-documentation-with-dokka-d9e9075bc001 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-easiest-way-to-interpret-clustering-result-8137e488a127 - 2023-10-06 - monthly - 1.0 - - - - https://thealexguides.medium.com/how-i-made-2-437-using-s-90-721d5a955eba - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/i-spent-30-days-studying-a-programmer-who-built-a-230-billion-company-after-quitting-his-9-5-8ff4ebbe0346 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/gentle-introduction-to-selus-b19943068cd9 - 2023-10-06 - monthly - 1.0 - - - - https://ryansolid.medium.com/designing-solidjs-dualities-69ee4c08aa03 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/i-run-a-10-000-month-business-with-0-employees-here-are-6-ai-tools-i-use-every-day-3bc19f04c287 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ashesh.goplani/using-graphdb-with-node-js-d94448e5918 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/3-reasons-you-shouldnt-take-that-startup-job-offer-from-a-vc-who-invested-500m-in-startups-f6fa6faadb4 - 2023-10-06 - monthly - 1.0 - - - - https://pchojecki.medium.com/the-top-programming-books-of-all-time-a6fe21ffb3c7 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-top-3-sql-skills-needed-to-get-to-the-next-round-51ad1699a213 - 2023-10-06 - monthly - 1.0 - - - - https://tech.ahrefs.com/how-ahrefs-saved-us-400m-in-3-years-by-not-going-to-the-cloud-8939dd930af8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/wordpress-deployment-with-nginx-php-fpm-and-mariadb-using-docker-compose-55f59e5c1a - 2023-10-06 - monthly - 1.0 - - - - https://thetaoist.online/buddhist-lesson-on-how-to-stop-worrying-d13382ff3aeb - 2023-10-06 - monthly - 1.0 - - - - https://towardsdev.com/how-to-setup-woodpecker-ci-alongside-with-forgejo-on-a-local-server-using-a-raspberry-pi-4-with-d49f714da987 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/the-best-c-alternative-is-zig-7236e775ae4f - 2023-10-06 - monthly - 1.0 - - - - https://roamy.medium.com/how-startup-studios-validate-kill-ideas-in-4-weeks-or-less-e7455371cdb6 - 2023-10-06 - monthly - 1.0 - - - - https://jchyip.medium.com/my-critique-of-the-spotify-model-part-1-197d335ef7af - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/minimize-the-costs-of-running-aws-ec2-instances-using-terraform-3999c5141830 - 2023-10-06 - monthly - 1.0 - - - - https://productmarketpull.com/the-complete-guide-to-product-market-pull-pmp-946288fc1e7d - 2023-10-06 - monthly - 1.0 - - - - https://alex-schnabl.medium.com/lazy-loading-images-and-components-in-svelte-and-sveltekit-using-typescript-6a8443bb9479 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coding-at-dawn/the-tailwind-css-jit-mode-bug-that-only-happens-in-production-4f25ef009fe8 - 2023-10-06 - monthly - 1.0 - - - - https://beingpax.medium.com/make-md-the-most-beginner-friendly-plugin-for-obsidian-6e521769d6e0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/doctolib/understanding-and-fixing-n-1-query-30623109fe89 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/how-does-memory-allocation-work-in-python-and-other-languages-d2d8a9398543 - 2023-10-06 - monthly - 1.0 - - - - https://instagram-engineering.com/making-direct-messages-reliable-and-fast-a152bdfd697f - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/find-the-closest-pair-from-two-sorted-arrays-interview-question-2bcc0660e04 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/graph-machine-learning-icml-2023-9b5e4306a1cc - 2023-10-06 - monthly - 1.0 - - - - https://blog.prototypr.io/16-design-details-reveal-your-seniority-in-ui-ux-design-6fd07b500491 - 2023-10-06 - monthly - 1.0 - - - - https://wesx.medium.com/the-hidden-data-of-mass-shootings-4fbb9960bb83 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-complete-guide-to-unsupervised-learning-ecf8b676f2af - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@KimWitten/how-to-stop-thinking-terrible-things-about-yourself-c6c6fd2e6486 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-beginning-of-information-extraction-highlight-key-words-and-obtain-frequencies-a03da0a1ba71 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/understanding-1d-and-3d-convolution-neural-network-keras-9d8f76e29610 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@Crypto.Knight/how-to-make-multiple-wallets-in-metamask-b6f81f6c539 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/all-local-databases-in-one-article-be65621c934a - 2023-10-06 - monthly - 1.0 - - - - https://andrewzuo.com/flutter-isolates-are-good-now-81ec49e1699c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@hnasr/the-trap-of-learning-2b8de2734bf - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@hnasr/postgres-vs-mysql-5fa3c588a94e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@AlexanderObregon/java-profiling-and-performance-tuning-with-intellij-idea-a33b7a829871 - 2023-10-06 - monthly - 1.0 - - - - https://blog.gopenai.com/openai-api-making-the-response-more-consistent-part-1-using-the-chat-completion-a0e3919f252c - 2023-10-06 - monthly - 1.0 - - - - https://blog.gopenai.com/openai-api-making-the-response-more-consistent-part-2-the-json-format-9da372b19465 - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/dynamically-configure-python-apps-fastapi-pro-part-1-2106f63f7e86 - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/fastapi-api-keys-bcbe7bd54d26 - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/streaming-with-fastapi-4b86f33bfca - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/sharing-state-in-fastapi-9b5faaeff408 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/end-to-end-multi-label-classification-971dd09daf65 - 2023-10-06 - monthly - 1.0 - - - - https://steven-lemon182.medium.com/are-typescript-barrel-files-an-anti-pattern-72a713004250 - 2023-10-06 - monthly - 1.0 - - - - https://peterjson.medium.com/miracle-one-vulnerability-to-rule-them-all-c3aed9edeea2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/blackode/10-killer-elixir-tips-9-7155532befd7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/curious/the-best-tools-for-capturing-your-many-different-notes-b13d7fa2fe64 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@willkjstore/a-detailed-guide-to-the-datacamp-certification-process-f19e068dcb14 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/a-layman/build-micro-frontends-aggregate-angular-components-in-nextjs-reactjs-app-with-custom-element-f1b87e096bb0 - 2023-10-06 - monthly - 1.0 - - - - https://followtherivernorth.medium.com/relationship-anarchy-solo-polyamory-or-just-disorganized-attachment-a8fa2775aba - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jonathacz99/gentlemen-do-these-three-things-to-be-more-attractive-to-women-b85782264c50 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@annamariaquagliata/im-married-and-fell-in-love-with-a-younger-woman-830b6294bd99 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/flutter-community/how-to-embed-your-flutter-app-in-wordpress-cd67e09fa29b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-complete-guide-to-confidence-interval-and-examples-in-python-ff417c5cb593 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-julia-perfected-multiple-dispatch-16675db772c2 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-develop-a-credit-risk-model-and-scorecard-91335fc01f03 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-effectively-predict-imbalanced-classes-in-python-e8cd3b5720c4 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-create-a-publication-quality-heatmap-in-python-e4a7feb3c079 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/rungo/variadic-function-in-go-5d9b23f4c01a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/rungo/structures-in-go-76377cc106a2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/use-swiftui-and-uikit-together-seamlessly-with-uiviewcontrollerrepresentable-1e091ca34b24 - 2023-10-06 - monthly - 1.0 - - - - https://blog.stackademic.com/react-js-mastering-react-js-solid-principles-dfb48d03e565 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/generics-and-subtypes-in-swift-7f27638e1b99 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mind-cafe/i-wish-someone-had-told-me-about-these-life-changing-weight-loss-habits-sooner-b669c84bd306 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/why-you-shouldnt-use-environmentobject-in-swiftui-a527d5c2bd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/litslink/flutter-the-way-to-make-a-plugin-277204660906 - 2023-10-06 - monthly - 1.0 - - - - https://kenanbek.medium.com/golang-html-tokenizer-extract-text-from-a-web-page-kanan-rahimov-8c75704bf8a3 - 2023-10-06 - monthly - 1.0 - - - - https://maherz.medium.com/10-essential-patterns-for-c-and-net-development-e9b881b9a6ba - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@iamprovidence/ef-configurations-are-sick-and-work-great-with-ddd-985ab3caec3f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@alessandrocapraro/5-ai-tools-that-are-giving-me-an-unfair-advantage-in-business-ecf9ecd270e5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bytehide/singleton-design-pattern-in-c-full-guide-ea01ace26034 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@alcarazanthony1/large-language-models-can-frequently-be-derailed-by-irrelevant-context-cf164b0207c7 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/87-lesser-known-python-features-635180720a29 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/an-easy-guide-to-master-moving-average-and-running-total-in-sql-f1fa7acc9b59 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/best-use-chatgpt-learn-data-science-easy-beginner-b10299c49c4c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/image-scraping-with-python-a96feda8af2d - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/10-advanced-matplotlib-concepts-you-must-know-to-create-killer-visuals-23aaf63c3d0c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@meetjethwa3/10-exciting-projects-with-chatgpt-api-92ba9cb8123a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/5-data-science-open-source-projects-you-to-contribute-to-boost-your-resume-d757697fb1e3 - 2023-10-06 - monthly - 1.0 - - - - https://tosny.medium.com/3-alternative-apps-to-try-in-2023-64ebc042d9cd - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-i-taught-myself-linked-lists-72c4837ea721 - 2023-10-06 - monthly - 1.0 - - - - https://rockbag.medium.com/why-you-should-pin-your-docker-images-with-sha-instead-of-tags-fd132443b8a6 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/how-to-use-blob-in-browser-to-cache-ee9577b77daa - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/10-mistakes-i-made-starting-out-as-a-ui-designer-93ec45d1ad39 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/my-learning-journal/the-5-best-apps-to-never-forget-anything-6dfab63c7522 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/image-generation-in-10-minutes-with-generative-adversarial-networks-c2afc56bfa3b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/classification-of-neural-network-hyperparameters-c7991b6937c3 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-to-create-diagrams-with-chatgpt-19099de795ce - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/8-unknown-google-chrome-extensions-that-will-help-you-speed-up-your-work-by-80-4b954caac96c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-fine-tune-llama2-for-python-coding-on-consumer-hardware-46942fa3cf92 - 2023-10-06 - monthly - 1.0 - - - - https://tosny.medium.com/5-websites-i-visit-every-day-e11b197909b8 - 2023-10-06 - monthly - 1.0 - - - - https://artificialcorner.com/im-happy-i-just-canceled-these-4-paid-subscriptions-e30e47138993 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@BrownBearSec/how-to-actually-use-amass-more-effectively-bug-bounty-59e83900de02 - 2023-10-06 - monthly - 1.0 - - - - https://hakluke.medium.com/haklukes-guide-to-amass-how-to-use-amass-more-effectively-for-bug-bounties-7c37570b83f7 - 2023-10-06 - monthly - 1.0 - - - - https://franchi-rafael.medium.com/digital-signature-with-itext-2-1-7-part-2-asynchronous-sign-361089e3ae - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/build-a-capable-machine-for-llm-and-ai-4ae45ad9f959 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/nvidia-mellanox-bluefield-2-smartnic-dpdk-rig-for-dive-part-ii-change-mode-of-operation-a994f0f0e543 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/python-use-ray-to-run-functions-in-parallel-871f7a6678c4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@metinarslanturkk/how-i-implemented-dynamic-loaded-framework-agnostic-microfrontend-app-with-nextjs-and-react-which-620ff3df4298 - 2023-10-06 - monthly - 1.0 - - - - https://tedbauer.medium.com/my-husband-turns-37-tonight-guess-i-gotta-f-ck-f139c0da0657 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/are-you-okay/guys-you-need-to-understand-how-detrimental-it-is-to-not-ho-685c4a405764 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/5-dbt-data-model-hacks-to-save-you-precious-time-b76f410db8c3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/rungo/anatomy-of-modules-in-go-c8274d215c16 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/10-headache-inducing-coding-challenges-and-how-to-solve-them-11c41238723 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/history-of-women/why-is-child-marriage-still-a-get-out-of-jail-free-card-for-pedophiles-66ab6b9e5f69 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/my-developer-friends-2-step-way-to-become-a-multi-millionaire-869f5a2f4240 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bitchy/sorry-i-dont-believe-that-men-hurt-women-because-they-like-to-5f1249654f7a - 2023-10-06 - monthly - 1.0 - - - - https://rutger-t.medium.com/installing-zsh-and-oh-my-zsh-on-mac-using-homebrew-af80d266515d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@zeeshanJ./google-money-making-hack-effortlessly-earn-1000-3000-daily-by-copy-paste-6bd2fbb145d8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@j0rt3g4/onedrive-storage-increase-dismitified-f34f661cfafe - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/middle-pause/when-do-women-stop-caring-if-you-approve-of-what-were-wearing-4f110c44c2b5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/top-data-tools-to-invest-in-this-year-2962b57df541 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/what-is-dbt-a0d91109f7d0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/4-things-you-need-to-know-about-dbt-e54c016f338c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/history-of-women/100-years-ago-she-asked-congress-to-agree-to-one-sentence-they-said-no-14e68b1424cd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/techfront/step-by-step-visual-guide-on-deploying-a-flask-application-on-aws-ec2-8e3e8b82c4f7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/business-modeling/probabilistic-thinking-62efb6932848 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/7-battery-mistakes-youve-been-doing-for-your-macbook-all-the-time-45b7d4c8488b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-use-these-6-unusual-sql-functions-b912e454afb0 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/3-sql-swaps-to-write-better-code-f8d304699cde - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/what-companies-really-want-in-an-analytics-engineer-1ac03ff4494a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/5-sql-functions-every-analytics-engineer-needs-to-know-e356b26495c2 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/3-key-components-of-a-well-written-data-model-c426b1c1a293 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/10-things-to-learn-to-become-a-better-analytics-engineer-in-2023-41a35a26248a - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/how-to-use-web-components-in-angular-c5d1d7825ca0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/how-to-best-organize-your-dbt-project-3d285d063a4d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/create-a-beautiful-dashboard-in-your-terminal-with-wtfutil-573424fe3684 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@marktopacio/interactive-dashboards-in-python-2023-7d6cd4bda40c - 2023-10-06 - monthly - 1.0 - - - - https://forge.medium.com/9-ways-to-rewild-your-attention-d7c9334b6b90 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/supercharge-your-productivity-with-8-openais-chatgpt-plugins-llm-bard-artificial-intelligence-236fa64ff549 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/i-almost-got-fired-for-choosing-react-in-our-enterprise-app-846ea840841c - 2023-10-06 - monthly - 1.0 - - - - https://baos.pub/4-must-read-books-that-will-transform-your-perspective-and-life-9da55336e606 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/5-businesses-that-are-not-longer-a-good-idea-for-2023-71cf13c0eb9a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/3-side-hustles-that-will-make-you-money-while-sleeping-e1bb57412325 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/feature-selection-methods-in-machine-learning-67d71a6bce21 - 2023-10-06 - monthly - 1.0 - - - - https://keith-mcnulty.medium.com/how-to-think-like-an-algebraist-4a00b4755db4 - 2023-10-06 - monthly - 1.0 - - - - https://matemarschalko.medium.com/chatgpt-in-an-ios-shortcut-worlds-smartest-homekit-voice-assistant-9a33b780007a - 2023-10-06 - monthly - 1.0 - - - - https://iorilan.medium.com/i-asked-this-system-design-question-to-3-guys-during-a-developer-interview-and-none-of-them-gave-9c23abe45687 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/crop-images-on-upload-in-your-react-app-with-react-image-crop-5f3cd0ad2b35 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/adding-crop-before-upload-in-react-22dfcf3a95b7 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/mastering-the-android-touch-system-41234cf3c3b3 - 2023-10-06 - monthly - 1.0 - - - - https://zimanaanalytics.medium.com/for-loop-function-basics-in-r-programming-4254b3aa7580 - 2023-10-06 - monthly - 1.0 - - - - https://gmusumeci.medium.com/how-to-deploy-an-aws-redshift-cluster-using-terraform-87642b1a8640 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/how-to-setup-a-private-registry-on-k3s-d9283906d16 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/install-aws-command-line-interface-cli-on-ubuntu-491383f93813 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/minimizing-the-cost-function-gradient-descent-a5dd6b5350e1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/how-to-load-data-from-s3-to-snowflake-2113b844d980 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/time-series-analysis-with-facebook-prophet-how-it-works-and-how-to-use-it-f15ecf2c0e3a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/google-cloud/recommendations-pipeline-with-matrix-factorization-using-bigquery-ml-and-vertex-ai-pipelines-67e72ddec7f5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/this-guy-made-over-1-000-000-in-10-months-with-ai-here-are-my-business-takeaways-53c58baf93d6 - 2023-10-06 - monthly - 1.0 - - - - https://blog.prototypr.io/how-to-make-perfect-shadows-in-ui-design-2773e32074da - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/effectively-optimize-your-regression-model-with-bayesian-hyperparameter-tuning-819c19f5dab3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/devops-mojo/kubernetes-service-types-overview-introduction-to-k8s-service-types-what-are-types-of-kubernetes-services-ea6db72c3f8c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/xross-functional/why-we-dont-interview-product-managers-anymore-ba1dd0031c0b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/gradient-boosted-arima-for-time-series-forecasting-e093f80772f6 - 2023-10-06 - monthly - 1.0 - - - - https://wesx.medium.com/leukemia-has-forced-me-into-a-life-audit-4866edb0bf7e - 2023-10-06 - monthly - 1.0 - - - - https://themeptation.medium.com/deploy-a-nextjs-application-using-gitlab-ci-cd-docker-on-digitalocean-droplet-ubuntu-18-04-d8163c64a893 - 2023-10-06 - monthly - 1.0 - - - - https://joanwestenberg.medium.com/i-miss-the-internet-c7e41544a8b9 - 2023-10-06 - monthly - 1.0 - - - - https://blackboxofpm.com/the-first-principles-of-product-management-ea0e2f2a018c - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/how-to-avoid-meaningless-daily-scrums-eb74bf63d889 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/dynamic-sitemap-generation-with-pandas-c78899600796 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/a-20-year-experienced-ctos-advice-don-t-be-a-humble-developer-919973e8ca5 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/stop-calling-kotlin-flows-hot-and-cold-48e87708d863 - 2023-10-06 - monthly - 1.0 - - - - https://humanparts.medium.com/just-do-3-things-thats-it-you-re-a-success-my-friend-c964985f495b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/globetrotters/i-lived-in-airbnbs-for-3-years-these-are-the-weirdest-places-i-rented-d2a3e40b8da8 - 2023-10-06 - monthly - 1.0 - - - - https://savalanolan.medium.com/were-all-healthy-we-re-all-sick-fd4df7b3b89a - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/how-to-re-connect-with-and-stay-true-to-your-authentic-self-7a249d820262 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@clairecgong/what-nobody-tells-you-about-taking-a-career-break-and-how-to-emotionally-prepare-for-one-d01ca57b6bfa - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/5-decisions-i-no-longer-make-as-an-adhd-person-be0d152b8d31 - 2023-10-06 - monthly - 1.0 - - - - https://johnfgorman.medium.com/the-3-most-important-truths-in-life-2f5baecc5a59 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/thing-a-day/the-often-colorful-language-of-neurodivergence-19c27927e75f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mind-cafe/3-unusual-ways-to-be-more-disciplined-8722699b7c95 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/running-llama-2-on-cpu-inference-for-document-q-a-3d636037a3d8 - 2023-10-06 - monthly - 1.0 - - - - https://blog.bitsrc.io/why-is-my-jest-suite-so-slow-2a4859bb9ac0 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/airflow-2-7-0-505f7cda9fd4 - 2023-10-06 - monthly - 1.0 - - - - https://awstip.com/tools-to-make-your-terminal-devops-and-kubernetes-friendly-64d27a35bd3f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-bad-influence/kyle-dean-murdered-a6455e7de016 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tsecretdeveloper/software-is-losing-juniors-faster-than-ever-before-5197303a2330 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tejpal.abhyuday/donut-ocr-free-document-understanding-with-donut-9303e4e4e33a - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/automated-feature-selection-for-machine-learning-in-python-2ad4bcfac19a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@Marco_Mindstone/a-simple-obsidian-daily-note-template-c46a237e5f5e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/gradient-growth/unleashing-the-power-of-systems-thinking-6df6f42acc63 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/gradient-growth/taming-the-bulls-and-bears-the-power-of-causal-inference-in-stock-market-analysis-1821cc566657 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/gradient-growth/meta-learning-in-causal-inference-exploring-economic-indicators-on-stock-prices-dc93b9c2c621 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/gradient-growth/learning-the-right-lessons-the-pitfall-of-misinterpreting-events-1b2d4dc58e3e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/gradient-growth/unlocking-the-power-of-linear-regression-debiasing-and-denoising-in-financial-analysis-f6c85d9b1c46 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/gradient-growth/the-path-forward-a-deeper-exploration-into-business-mastery-a7d2e6d92b02 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/gradient-growth/mastering-the-art-of-disruption-unleashing-the-power-of-the-3ds-in-business-success-3cd25ae26f47 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/gradient-growth/unlocking-the-potential-of-garch-models-f293396a70b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/gradient-growth/beating-the-odds-the-martingale-mirage-and-the-real-road-to-trading-triumph-80a6c920facc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/gradient-growth/demystifying-stock-performance-harnessing-the-power-of-eigenvectors-and-eigenvalues-7cf21980290e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/gradient-growth/mastering-the-chess-game-of-customer-retention-the-power-of-product-analytics-in-reducing-churn-20f2f3fe5a88 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@LesterLeong/the-unyielding-pursuit-of-value-diving-into-peter-cundills-investment-playbook-53aef4a0d684 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/my-friend-quit-a-160k-job-because-it-was-a-developers-trap-e789a630c0ac - 2023-10-06 - monthly - 1.0 - - - - https://entreprenal.com/ive-been-working-from-home-for-10-years-here-are-my-recommended-side-hustles-for-2023-bb9348e48d6f - 2023-10-06 - monthly - 1.0 - - - - https://tech.gadventures.com/speeding-up-postgres-restores-de575149d17a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@contact.jmeyers/complete-list-of-ios-url-schemes-for-apple-apps-and-services-always-updated-800c64f450f - 2023-10-06 - monthly - 1.0 - - - - https://qiuyujx.medium.com/why-qlik-sense-should-not-be-used-as-a-database-or-data-warehouse-968e843d70aa - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/systems-thinking-made-simple/how-i-teach-systems-thinking-to-a-five-year-old-2c5b95612c22 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/the-unforgettable-15-exploring-the-best-data-visualizations-of-all-time-2023-fae7c1517287 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/a-complete-guide-to-regular-dev-and-peer-dependencies-in-npm-90cc0e1ddd26 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/how-to-setup-an-effective-coding-test-a-guide-for-hiring-managers-150b4f2ebf59 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/how-to-ensure-idempotence-f436a42bf67d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/k-means-clustering-how-it-works-finding-the-optimum-number-of-clusters-in-the-data-97330657932e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/unsupervised-learning-part-1-c007f0c35669 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/logistic-regression-explained-in-7-minutes-f648bf44d53e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/evaluating-the-logistic-regression-ae2decf42d61 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/clean-architecture-for-dummies-df6561d42c94 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-curse-of-dimensionality-5673118fe6d2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/in-fitness-and-in-health/ive-been-water-fasting-for-24-hours-once-a-week-for-four-years-you-should-try-it-too-635b010bcbff - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/in-fitness-and-in-health/how-to-approach-fasting-a-womens-guide-ee69ccc61901 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/digestible-nutrition/how-much-protein-is-too-much-7977c94fb2b7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@badawekoo/monitoring-in-devops-lifecycle-4d9a2f277eb0 - 2023-10-06 - monthly - 1.0 - - - - https://baos.pub/id-rather-re-read-these-10-books-over-and-over-again-instead-of-starting-new-ones-b8a353ec1e16 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-extract-text-from-any-pdf-and-image-for-large-language-model-2d17f02875e6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/15-common-mistakes-to-avoid-when-learning-power-bi-7fdee232fb23 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@BrownBearSec/bug-bounty-recon-vertical-correlation-and-the-secret-to-succeeding-cdd532c777c9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@aleks.yenin/monitoring-and-alerting-for-devops-prometheus-grafana-telegram-to-keep-your-jira-and-aef72969afde - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/improve-cluster-monitoring-with-network-mapping-in-grafana-fa8bb479fd47 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/grafana-loki-alerts-from-ruler-and-labels-from-logs-ac0c38cb8618 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/shall-we-play-a-game-a7c93963b442 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-25-000-computers-trained-chatgpt-11104686a24d - 2023-10-06 - monthly - 1.0 - - - - https://regia-marinho.medium.com/the-allure-of-neutral-art-in-decoration-a-blend-of-subtlety-and-versatility-58b8a11521f5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@nerohoop/ios-interview-prep-8-view-and-layout-e86ab6cfd2b6 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/what-is-edi-electronic-data-interchange-92f7215bb699 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/interactive-topic-modeling-with-bertopic-1ea55e7d73d8 - 2023-10-06 - monthly - 1.0 - - - - https://artificialcorner.com/how-to-be-a-10x-engineer-fdac2a5a1bd5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/dataman-in-ai/explain-your-model-with-the-shap-values-bc36aac4de3d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/paper-explained-momentum-contrast-for-unsupervised-visual-representation-learning-ff2b0e08acfb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@_michaellin/why-i-quit-a-450k-engineering-job-at-netflix-874454397885 - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/weekly-ux-inspiration-websites-e22b81188a2f - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/10-features-im-loving-in-framer-right-now-a834ed2ebe75 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/how-to-unit-test-html-and-vanilla-javascript-without-a-ui-framework-c4c89c9f5e56 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/25-unreal-resources-for-designers-you-need-to-know-about-e72da8e3fe12 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/better-advice/three-ways-to-make-a-life-overhaul-in-90-days-fdf7fe1145ac - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/10-things-that-helped-me-improve-as-a-ui-designer-78d3f551372 - 2023-10-06 - monthly - 1.0 - - - - https://blog.gopenai.com/bge-embeddings-langchain-and-chroma-for-retrieval-qa-9c684206d8f3 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/daily-ui-c09c8ea76622 - 2023-10-06 - monthly - 1.0 - - - - https://blog.prototypr.io/my-side-projects-that-never-saw-the-light-of-day-6f7c8a832df8 - 2023-10-06 - monthly - 1.0 - - - - https://maherz.medium.com/top-10-c-code-smells-c9c26e2e4e39 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bytehide/new-features-in-net-8-preview-6-bb07421e3d47 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@KimWitten/when-you-talk-to-ducks-2c8fb5025cc - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/multilingual-transformers-ae917b36034d - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/super-quick-fine-tuning-llama-2-0-on-cpu-with-personal-data-d2d284559f - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/why-having-real-life-experience-is-important-for-junior-designers-5443ac74aaf1 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/10-things-that-will-help-you-get-a-job-in-ux-3efa954f053a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/techtofreedom/10-python-interview-questions-for-senior-developers-4fefe773719a - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/a-glimpse-of-val-town-cloud-scripting-platform-to-write-and-run-code-894de4b2d3de - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/ui-design-basics-how-to-start-ffbbdd735c8a - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/in-defence-of-dribbble-and-artsy-uis-a0a2388994b6 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/redesigning-popular-social-media-apps-using-a-mini-design-system-46c7a63804d7 - 2023-10-06 - monthly - 1.0 - - - - https://tomaszs2.medium.com/rust-1-68-1-72-in-a-nutshell-7ef4a5600064 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/level-up-how-video-games-revolutionized-parallel-computing-6473af870b92 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@productivitybee/the-8-must-have-ipad-apps-every-student-needs-for-productivity-in-2023-3e37700b9f3c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/which-ipad-app-gets-closest-to-the-convenience-of-pen-and-paper-b30e5fb7d811 - 2023-10-06 - monthly - 1.0 - - - - https://shuomi.medium.com/anytype-apple-notes-on-steroids-review-4a7d3b654dbb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/my-learning-journal/top-8-incredible-ai-note-taking-apps-3b3d4e544f30 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-fine-tune-gpt-2-for-text-generation-ae2ea53bc272 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/lazyprophet-time-series-forecasting-with-lightgbm-3745bafe5ce5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@cecilia.humlelu/set-up-c-library-dependencies-in-swift-projects-5dc2ccd2ddaf - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@cecilia.humlelu/building-a-swift-static-library-7a01d445a015 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@cecilia.humlelu/creating-a-hybrid-framework-ebe2dba4e431 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/football-players-tracking-identifying-players-team-based-on-their-jersey-colors-using-opencv-7eed1b8a1095 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/determining-soccer-player-jersey-colors-from-video-footage-31365e12e39c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@kaushaltrivedi/building-a-multilingual-translation-tool-with-openai-chatgpt-api-84922c971e95 - 2023-10-06 - monthly - 1.0 - - - - https://blog.angulartraining.com/how-to-change-the-page-title-and-meta-tags-with-angular-4cbec50f9243 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@h_locke/how-to-ask-for-a-raise-or-promotion-8902cd92f1c4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@h_locke/using-prolepsis-in-ux-design-and-research-c4e4fb28e1b3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mind-cafe/in-28-years-of-spiritual-personal-development-i-found-2-main-paths-for-transformation-which-1546eed15cde - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/active-hover-and-focus-states-for-designers-d789531fe767 - 2023-10-06 - monthly - 1.0 - - - - https://cryptozoa.com/i-warned-my-gf-for-our-elephant-money-investment-this-is-what-happened-1978834199c8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/12-exclusive-macos-apps-that-will-make-you-feel-lucky-to-own-a-mac-7ecda36cb27 - 2023-10-06 - monthly - 1.0 - - - - https://hakluke.medium.com/how-i-hacked-my-way-to-a-free-crikeycon-ticket-and-a-new-job-70f7cfb5fe85 - 2023-10-06 - monthly - 1.0 - - - - https://hetroublemakr.medium.com/how-i-approached-dependency-confusion-272b46f66907 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/roadmap-to-natural-language-processing-nlp-38a81dcff3a6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@paulwall_21/understand-how-xcode-workspaces-projects-schemes-and-targets-work-together-1832f22863f3 - 2023-10-06 - monthly - 1.0 - - - - https://nilsdebruin.medium.com/fastapi-how-to-add-basic-and-cookie-authentication-a45c85ef47d3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/installing-mongodb-on-kubernetes-with-replica-sets-and-no-mongodb-operator-ed8d7f3bb2d1 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/unlock-the-power-of-audio-data-advanced-transcription-and-diarization-with-whisper-whisperx-and-ed9424307281 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/fine-tuning-sentence-transformers-with-mnr-loss-cd6a26685b81 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/10-auto-layout-tricks-in-figma-every-designer-should-know-158cf1f87ef - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/leverage-llms-like-gpt-to-analyze-your-documents-or-transcripts-c640a266ad52 - 2023-10-06 - monthly - 1.0 - - - - https://articles.wesionary.team/deploy-your-next-js-application-on-google-app-engine-in-minutes-cf04c18011ac - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/20-midjourney-prompts-to-mastering-ui-icon-design-a9d95eba1f4d - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/how-to-start-accessibility-testing-519eb836a507 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/rust-vs-c-a-complete-comparison-2d85ab8f59a2 - 2023-10-06 - monthly - 1.0 - - - - https://justinel999.medium.com/this-job-is-not-aligned-with-my-inner-purpose-675951d28c61 - 2023-10-06 - monthly - 1.0 - - - - https://shapirock.medium.com/the-best-thing-you-can-do-for-yourself-right-now-4c8f89914e4b - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/running-sonarqube-in-aws-ecs-as-docker-container-by-aws-cloud-formation-iac-8c0ff640f714 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/building-powerful-recommender-systems-with-deep-learning-d8a919c52119 - 2023-10-06 - monthly - 1.0 - - - - https://futureformat.medium.com/ultimate-halal-food-guide-for-new-york-city-manhattan-nyc-d3c88e7d3cb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mobile-app-development-publication/making-graph-plotting-function-in-jetpack-compose-95c80ee6fc7f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mobile-app-development-publication/learn-all-android-canvas-draw-functions-dd5d6595884a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-chatgpt-works-the-models-behind-the-bot-1ce5fca96286 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/using-python-to-read-excel-files-in-6-lines-of-code-be5a859a88e5 - 2023-10-06 - monthly - 1.0 - - - - https://vanessatorre.medium.com/please-stop-commenting-on-your-friends-weight-loss-24a087e4dea3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/exception-handling-with-java-completablefuture-in-spring-boot-256ed4ad877f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/monogamish/how-to-ask-your-partner-for-an-open-relationship-in-8-simple-steps-77df1a0732d7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@pranjalg2308/understanding-bezier-curve-in-android-and-moddinggraphview-library-a9b1f0f95cd0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@lazyprogrammerofficial/what-is-temperature-in-nlp-llms-aa2a7212e687 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mobile-app-development-publication/understand-drawing-arc-of-a-path-in-jetpack-compose-canvas-7223187ce799 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/after-10-years-ive-finally-figured-out-the-iphone-589bba8ce98c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/rag-vs-finetuning-which-is-the-best-tool-to-boost-your-llm-application-94654b1eaba7 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-to-use-server-side-apply-in-k8s-operators-5cbff023183c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@chrisschneider/create-an-ai-app-in-an-hour-with-gradio-watson-autoai-2ad94cb671a4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jjosephmorrison/one-hot-encoding-to-set-up-categorical-features-for-linear-regression-6bac35661bb6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@eshantsahu/express-js-grouping-routes-68db0277ceeb - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/b%C3%A9zier-curve-bfffdadea212 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/nvidia-mellanox-bluefield-2-smartnic-dpdk-rig-for-dive-part-iii-ultimate-cloudlab-setup-7efd8b47a480 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/nvidia-mellanox-bluefield-2-smartnic-hands-on-tutorial-rig-for-dive-28364edc7732 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@fengliplatform/errors-encountered-when-crawling-snowflake-table-in-aws-glue-ee1e0dddd8c - 2023-10-06 - monthly - 1.0 - - - - https://awstip.com/use-amazon-athena-federated-query-to-query-data-from-aurora-postgresql-running-in-private-subnet-ae8d9441b1c8 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-get-a-free-server-for-a-machine-learning-model-efa35a1fe511 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/benchmark-postgresql-docker-versus-native-2dde6b5a8552 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/how-to-design-a-permission-system-you-can-do-this-8bc697d5869b - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/database-performance-tips-1de8b8024908 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/benchmark-mariadb-cross-between-native-versus-docker-6d90967fe721 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illuminations-mirror/how-teenagers-can-make-1-million-7-money-tips-b3ee067db86d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/7-ways-to-load-external-data-into-google-colab-7ba73e7d5fc7 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/langchain-enhancing-performance-with-memory-capacity-c7168e097f81 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-hands-on-application-of-homography-ipm-18d9e47c152f - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/hands-on-go-concurrency-the-producer-consumer-pattern-c42aab4e3bd2 - 2023-10-06 - monthly - 1.0 - - - - https://ibexorigin.medium.com/yes-these-unbelievable-masterpieces-are-created-with-matplotlib-22780667dee - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/rungo/working-with-files-and-file-system-a-low-level-introduction-825ea3bac5f9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/rungo/working-with-files-using-ioutil-package-2c526064febb - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/policy-gradients-in-reinforcement-learning-explained-ecec7df94245 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/rungo/go-introductory-tutorials-896aeda0fb8a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/7-kinds-of-ai-jobs-created-in-the-future-b87191452f99 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-next-step-is-responsible-ai-how-do-we-get-there-ecce929a1c03 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-path-to-success-in-data-science-is-about-your-ability-to-learn-but-what-to-learn-92efe11e34bf - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@uniqeuroy/title-introducing-horizondex-the-next-evolution-in-decentralized-exchanges-c0c209003125 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@letsnodedaniil90/introducing-dackieswap-the-next-evolution-in-decentralized-exchanges-72251d1568c1 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/python-excel-introducing-pyxll-unleash-the-power-of-python-in-excel-ee4143c9f46d - 2023-10-06 - monthly - 1.0 - - - - https://courtneyzhan.medium.com/case-study-wait-for-file-download-to-complete-safely-in-selenium-10caa589e548 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-create-perfect-machine-learning-development-environment-with-wsl2-on-windows-10-11-2c80f8ea1f31 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-create-a-selenium-web-scraper-in-azure-functions-f156fd074503 - 2023-10-06 - monthly - 1.0 - - - - https://yatmanwong.medium.com/rxjava-3b8bd45210b3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/stop-using-powerpoint-for-your-ml-presentations-and-try-this-instead-f943c2e9e284 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/kubernetes-endpoints-2d77eca96a7b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/mastering-externaltasksensor-in-apache-airflow-how-to-calculate-execution-delta-425093323758 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jacobmartinbartlett/mobile-is-actually-pretty-hard-1c86501ab647 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/type-hints-in-python-1c096f44f375 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/9-swiftui-hacks-for-beautiful-views-cd9682fbe2ec - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/2500-per-month-web-scraping-gig-c472674ee418 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/chatgpt-code-interpreter-how-it-saved-me-hours-of-work-3c65a8dfa935 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/rapid-python-data-visualizations-with-chatgpt-a-step-by-step-guide-1767178efed1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/start-using-c-records-for-dtos-instead-of-regular-classes-1f84bd5997ca - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@mikebrown64333/how-to-read-premium-medium-articles-for-free-fe33503d76fb - 2023-10-06 - monthly - 1.0 - - - - https://aruva.medium.com/100-chatgpt-prompts-for-software-developers-752779a95abe - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codingthesmartway-com-blog/the-future-of-coding-generating-a-full-codebase-from-a-prompt-with-gpt-engineer-3fcf6632a4a0 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/text-generation-with-bi-lstm-in-pytorch-5fda6e7cc22c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/i-had-a-37k-youtube-audience-and-thats-what-i-earned-and-learned-e0479c31b90b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/short-swift-stories/accessibility-element-2d55cefdf9d7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/decoding-complexity-empowering-decisions-with-system-dynamics-6691b069fb1d - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/unveiling-the-universe-of-agent-based-modelling-b4edc5aae386 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/parent-and-child-joins-with-elasticsearch-7-381f6cca73fe - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/before-semicolon/map-dictionary-data-structure-in-javascript-f9741b905ede - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tsecretdeveloper/7-signals-that-you-arent-a-competent-senior-yet-72c8a7be917f - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/28-predicted-ux-product-design-trends-for-2023-80cd19f4cc53 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/12-free-website-tools-that-you-should-know-f2ac207e085f - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/do-you-often-compare-yourself-to-others-heres-how-to-transform-this-into-a-positive-habit-27b148e18973 - 2023-10-06 - monthly - 1.0 - - - - https://tosny.medium.com/7-most-used-apps-of-2022-57d25a7b6114 - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/how-to-become-the-type-of-manager-you-would-want-to-work-for-a67b0eb0689 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/why-does-minimalist-design-impact-user-psychology-c4597d2b24df - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/15-ai-tools-you-need-to-know-to-join-a-technology-revolution-7306a804ed8f - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/automate-your-crypto-trading-with-python-a-step-by-step-guide-to-building-a-binance-trading-bot-a658f565f0b2 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/fingpt-open-source-llm-for-finance-e8ec10d0bf40 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@smraiyyan/chatgpt-code-interpreter-15-impressive-real-world-scenarios-119a9cb036b1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ensleytan/using-onenote-for-when-you-cant-use-obsidian-62b146f7929d - 2023-10-06 - monthly - 1.0 - - - - https://ilxanlar.medium.com/you-shouldnt-rely-on-css-100vh-and-here-s-why-1b4721e74487 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/effort-is-what-turns-talent-into-a-skill-2bf6680031b8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/nvidia-mellanox-bluefield-2-smartnic-hands-on-tutorial-rig-for-dive-b0cc4e8b2520 - 2023-10-06 - monthly - 1.0 - - - - https://keaukraine.medium.com/implementing-soft-particles-in-webgl-and-opengl-es-b968d61133b0 - 2023-10-06 - monthly - 1.0 - - - - https://daegonk.medium.com/ceph-moving-virtual-machine-image-part-ii-1c7398f1bf31 - 2023-10-06 - monthly - 1.0 - - - - https://writingcooperative.com/whats-the-best-note-taking-system-to-create-content-d51141c20fd4 - 2023-10-06 - monthly - 1.0 - - - - https://writingcooperative.com/5-simple-mental-hacks-to-keep-writing-even-if-nobody-is-reading-your-stuff-b22038c36cb4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/techtofreedom/5-ways-to-break-out-of-nested-loops-in-python-4c505d34ace7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/techtofreedom/exceptions-handling-in-python-b8a753d47527 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/10-warning-signs-that-your-content-creation-system-sucks-e0e24c3766f4 - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/i-have-been-meditating-for-30-years-heres-how-to-not-be-a-rubbish-meditator-like-me-12b54807c5de - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ines.silveira2/restoring-connection-the-art-of-repair-in-relationships-cfa43335ba00 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/from-the-scratch/oop-everything-you-need-to-know-about-object-oriented-programming-aee3c18e281b - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/how-to-deal-with-the-connectionacquiretimeouterror-in-sequelize-d8bb246f4fb5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/windows-must-have-foss-apps-for-2023-7cef00216ac8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/nick-tune-tech-strategy-blog/legacy-architecture-modernisation-with-strategic-domain-driven-design-3e7c05bb383f - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/can-discrete-event-simulation-amplify-your-a-b-testing-results-77eedc8ffb4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bb-tutorials-and-thoughts/docker-a-beginners-guide-to-dockerfile-with-a-sample-project-6c1ac1f17490 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/framerated/bad-things-2023-shudder-2d847af0e5c9 - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/module-federation-advanced-api-inwebpack-5-0-0-beta-17-71cd4d42e534 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/brain-labs/why-spotify-struggles-to-make-money-from-music-streaming-ba940fc56ebd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@rusuelenamadalina9/the-charming-force-of-music-3e632774053b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@cosinekitty/how-digital-audio-works-4cbb50c85751 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@iKaliya/is-the-music-industry-really-dying-8f85cc31debc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/radiosparx/we-all-need-love-songs-always-have-always-will-forever-ever-ever-c4753ae3edd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@theworldshappiestpodcast/dolly-parton-is-the-greatest-person-of-all-time-bc5f6b57acf8 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/stop-using-csvs-for-storage-this-file-format-is-150-times-faster-158bd322074e - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/use-chatgpt-like-a-pro-discover-parameters-and-unlock-ai-writing-secrets-8f68a342bdea - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/understanding-homography-a-k-a-perspective-transformation-cacaed5ca17 - 2023-10-06 - monthly - 1.0 - - - - https://artificialcorner.com/leonardo-ai-a-free-and-best-alternative-to-midjourney-87d12c1f8b25 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/analyzing-geospatial-data-with-python-part-2-hypothesis-test-fe3f3f18fc82 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@hnasr/the-journey-of-a-request-to-the-backend-c3de704de223 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@hnasr/postgres-locks-a-deep-dive-9fc158a5641c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@hnasr/postgresql-process-architecture-f21e16459907 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@hnasr/memcached-architecture-af3369845c09 - 2023-10-06 - monthly - 1.0 - - - - https://posts.specterops.io/attacking-azure-azure-ad-and-introducing-powerzure-ca70b330511a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@hnasr/how-to-become-a-good-backend-engineer-fundamentals-4dcc4a16ce55 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/5-must-have-tailwind-css-vscode-extensions-for-web-developers-89fcea0a399e - 2023-10-06 - monthly - 1.0 - - - - https://beingpax.medium.com/27-awesome-css-snippets-for-customizing-obsidian-9d64114f3284 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/overview-of-text-similarity-metrics-3397c4601f50 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mobile-app-development-publication/simple-jetpack-compose-tabs-with-fragments-d16fb3e827e5 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/get-started-with-hugging-face-auto-train-5a2ac5fa2fa4 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/react-native-reanimated-3-is-out-lets-try-shared-transitions-54710d891c7e - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/amazing-features-introduced-in-reanimated-3-2ad5320ab9e3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-practical-introduction-to-hierarchical-clustering-from-scikit-learn-ffaf8ee2670c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/hierarchical-clustering-explained-e58d2f936323 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/powerful-ultimate-binary-search-template-and-many-leetcode-problems-1f850ef95651 - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/modern-neovim-pde-part-3-ad1936137efe - 2023-10-06 - monthly - 1.0 - - - - https://karenbanes.medium.com/how-im-steadily-growing-my-freelance-business-without-burning-out-d11a60652c8f - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/modern-neovim-pde-587ef26bb458 - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/modern-neovim-pde-part-2-679a5fc0a407 - 2023-10-06 - monthly - 1.0 - - - - https://miscellaneplans.medium.com/ptpl-39-the-spaced-repetition-plugin-rocks-for-language-learning-in-obsidian-fe824d895e75 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coderbyte/what-to-expect-for-your-android-interview-9b632147d3b7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/cracking-the-system-design-interview-theory-basics-c57f5326181b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-make-python-statically-typed-the-essential-guide-e087cf4fa400 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/you-are-using-apple-notes-completely-wrong-d4c99ffa772e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/whiteboard-to-infinity/could-we-hack-physics-358acbb9c482 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/whiteboard-to-infinity/should-we-hack-physics-e2cbf6a77c97 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/whiteboard-to-infinity/can-life-harness-nuclear-reactions-df9f71076d76 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/plagiarism-detection-using-transformers-b9e7ed5c2a1f - 2023-10-06 - monthly - 1.0 - - - - https://endasheridan.xyz/7-ai-websites-that-are-too-good-to-miss-explore-the-future-17deb4c984f5 - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/figma-jambot-2b99f25499e7 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/dataloader-for-sequential-data-using-pytorch-deep-learning-framework-part-2-ed3ad5f6ad82 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/top-machine-learning-algorithms-for-classification-2197870ff501 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-leverage-pre-trained-transformer-models-for-custom-text-categorisation-3757c517bd65 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@saisantoshpal/supercharge-your-python-code-with-caching-ff1dbb5a46b2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/why-is-lombok-still-in-every-java-developer-toolkit-ba038bf47f7 - 2023-10-06 - monthly - 1.0 - - - - https://androidgeek.co/how-to-use-flow-operators-in-kotlin-complete-guide-part-2-8c14adaa0349 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/dynamic-data-schemas-with-pythons-pydantic-discriminator-b4244cd11ef8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@amagitakayosi/react-vfx-webgl-effects-for-react-apps-reactvfx-16b41cb9b526 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@coderfromnineteen/three-js-post-processing-outline-effect-6dff6a2fe3c0 - 2023-10-06 - monthly - 1.0 - - - - https://proandroiddev.com/our-way-to-mvvmi-and-mistakes-we-made-when-implementing-mvvm-5f5448b5ad50 - 2023-10-06 - monthly - 1.0 - - - - https://towardsaws.com/deploy-multi-container-docker-to-elastic-beanstalk-with-ci-cd-using-codepipeline-and-aws-ecr-d1d5be0aaa20 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/ngconf/20-reasons-to-do-angular-in-nx-27c1ce870822 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-estimate-salary-with-linear-regression-6e5511db28f6 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/git-workflow-for-data-scientists-c75445f23f44 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-gentle-introduction-to-natural-language-processing-e716ed3c0863 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-complete-guide-to-natural-language-processing-nlp-c91f1cfd3b0c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-build-a-real-time-transcription-app-in-python-7939c7b02614 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-build-your-first-machine-learning-model-in-python-e70fd1907cdd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/data-professor/how-to-install-conda-on-google-colab-e7bbf9036f76 - 2023-10-06 - monthly - 1.0 - - - - https://entrepreneurshandbook.co/the-internet-will-pay-you-more-for-your-9-5-skills-than-an-employer-ever-will-few-understand-f22b54207865 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/whats-in-a-lambda-c8cdc67ff107 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/whats-in-a-lambda-part-2-6dc2fa89d2d1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/writers-blokke/i-saw-the-entire-companys-salary-all-the-way-up-to-the-ceo-5ef21e6476fd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/7-useful-java-libraries-you-should-use-in-your-next-project-23305d83f2e0 - 2023-10-06 - monthly - 1.0 - - - - https://santiagof.medium.com/model-interpretability-making-your-model-confesses-saliency-maps-5b14c1e04f9e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-riff/i-know-ive-aged-out-of-music-festivals-a24116f1747a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@alexeynovikov_89393/stop-using-electron-for-your-desktop-applications-46f0eabac0ba - 2023-10-06 - monthly - 1.0 - - - - https://writingcooperative.com/how-to-stay-motivated-when-you-are-self-employed-and-feeling-overwhelmed-6a38a1ce0976 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/how-i-used-python-to-make-everyday-tasks-easier-1eb02cd6489c - 2023-10-06 - monthly - 1.0 - - - - https://thealexguides.medium.com/how-i-earned-765-in-7-days-selling-ai-t-shirts-with-proof-e0ed073c233f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/i-scanned-1000-prompts-so-you-dont-have-to-10-need-to-know-techniques-a77bcd074d97 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/tech-takeaways/demystifying-the-kotlin-coroutine-dispatchers-c4650dba5d74 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/partition-dataset-using-apache-parquet-64183bf571ac - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/parquet-best-practices-discover-your-data-without-loading-them-f854c57a45b6 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/creating-conditional-columns-on-pandas-with-numpy-select-and-where-methods-8ee6e2dbd5d5 - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/6-accountability-apps-that-will-skyrocket-your-success-6a3c1821e15b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/time-series-forecasting-with-sarima-in-python-cda5b793977b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/arima-simplified-b63315f27cbc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/7-macos-terminal-commands-that-feel-like-superpowers-dcec815b5459 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/data-science-at-microsoft/using-graphs-to-model-and-analyze-the-customer-journey-4b1f1e9f3696 - 2023-10-06 - monthly - 1.0 - - - - https://thisisananya.medium.com/5-free-apps-that-are-so-good-youll-wish-you-knew-them-sooner-745f3a56a40e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@paralloid/12-apple-productivity-hacks-you-have-not-heard-of-2308fc036159 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/keep-your-users-constantly-occupied-ff8ba0b0e673 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/android-messagingstyle-notification-as-clear-as-possible-1847f809ad59 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/building-a-packet-sniffing-tool-with-python-58ea5d65ace2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/quant-factory/chatgpt-trading-strategy-fully-backtested-with-python-70e6769ab550 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/temporal-fusion-transformer-time-series-forecasting-with-deep-learning-complete-tutorial-d32c1e51cd91 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-automate-voxel-modelling-of-3d-point-cloud-with-python-459f4d43a227 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/double-pointer/system-design-interview-parking-lot-system-ff2c58167651 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-nuance/could-fasting-cure-you-5d7928b9bcc1 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/audio-classification-with-deep-learning-in-python-cf752b22ba07 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codingthesmartway-com-blog/mastering-langchain-agents-your-personal-journey-begins-here-e4dba27c8f56 - 2023-10-06 - monthly - 1.0 - - - - https://ibrahimsaidi.com.au/meet-agents-and-tools-in-langchain-fb4fe5c313f6 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/setup-drizzle-orm-with-nest-js-ff55a7ab213f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/the-10-best-platforms-to-get-feedback-on-your-startup-idea-ea981e542cb6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/how-my-ipad-replaced-my-mac-for-daily-tasks-58851081f04 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@neonforge/how-to-draw-chart-diagrams-with-matplotlib-in-python-data-visualization-tutorial-with-examples-245aa72301a9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/in-fitness-and-in-health/i-didnt-get-in-shape-after-40-until-i-learned-these-5-lessons-90ce3ee09f63 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bytebytego-system-design-alliance/a-beginners-guide-to-cdn-what-it-is-and-how-it-works-f06946288fbb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bytebytego-system-design-alliance/decoding-netflix-an-in-depth-look-at-the-tech-stack-powering-the-streaming-giant-b0e3c0931ec5 - 2023-10-06 - monthly - 1.0 - - - - https://leonwei.com/stripe-data-scientist-interview-guide-19f925e43717 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/syncedreview/attention-is-not-all-you-need-google-epfl-study-reveals-huge-inductive-biases-in-self-attention-fa3cdd060abe - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/proximal-policy-optimization-ppo-explained-abed1952457b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@berniesdaughter/today-is-national-grief-awareness-day-and-heres-what-i-wish-someone-had-told-me-about-grief-e4d8a46341fa - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@scajanus/types-of-growth-and-how-to-show-them-4de77918dc2e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/rungo/understanding-the-context-package-b2e407a9cdae - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/nlp-with-python-knowledge-graph-12b93146a458 - 2023-10-06 - monthly - 1.0 - - - - https://tonylixu.medium.com/k8s-tools-k8spacket-9a2d05416d51 - 2023-10-06 - monthly - 1.0 - - - - https://theoneamin.medium.com/how-to-send-bulk-emails-using-spring-batch-5222eca5d7d4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@AlexanderObregon/spring-boot-with-kafka-for-event-driven-microservices-5f9c0e51256e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/summarizing-the-latest-spotify-releases-with-chatgpt-553245a6df88 - 2023-10-06 - monthly - 1.0 - - - - https://blog.stackademic.com/why-i-built-a-web-framework-in-rust-and-why-you-shouldnt-59c4b15beb39 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/identifying-candlestick-patterns-using-deep-learning-b7d706726874 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/whats-hugging-face-122f4e7eb11a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/asecuritysite-when-bob-met-alice/going-native-with-coding-4d710cbc951c - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/how-to-listen-for-prop-changes-in-vuejs-da5cf52d4740 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/handling-ios-13-bluetooth-permissions-26c6a8cbb816 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/humans-with-adhd/adhd-alcohol-67eaf93ff391 - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/how-to-wake-up-at-5-a-m-every-day-ceb02e29c802 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/installing-pytorch-on-apple-m1-chip-with-gpu-acceleration-3351dc44d67c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@sucuri_security/coinimp-cryptominer-and-fully-qualified-domain-names-8e302a6e4aed - 2023-10-06 - monthly - 1.0 - - - - https://grantfaulkner.medium.com/struggling-to-read-341d2001dd44 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/yardcouch-com/10-global-trends-that-every-smart-person-should-know-9368a7e80ad8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/yardcouch-com/the-dead-internet-theory-is-new-and-spreading-everywhere-ffbf753db1d3 - 2023-10-06 - monthly - 1.0 - - - - https://dariusforoux.medium.com/montaigne-dont-care-about-what-you-are-to-others-831fde2f47d5 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/thinking-in-components-d57418c5f923 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@mheidj/experts-may-have-figured-out-why-we-yawn-a10c0b5be749 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-side-hustle-club/i-made-6-316-selling-chatgpt-prompts-heres-how-d4276f14dbfb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/fintechexplained/how-this-python-script-generates-me-income-daily-63bfbab6596c - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/this-insane-script-summarizes-any-pdf-in-seconds-a3c71ff906df - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@christophe.atten/comparing-2-llm-techniques-fine-tuning-vs-context-based-learning-1ec394075bab - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@JasonROwens/a-fathers-letter-to-his-daughter-how-to-get-the-most-out-of-college-ba4fa6ffc530 - 2023-10-06 - monthly - 1.0 - - - - https://judedoyle.medium.com/the-male-loneliness-epidemic-does-not-exist-9c2013daf644 - 2023-10-06 - monthly - 1.0 - - - - https://enlear.academy/how-to-integrate-greensock-with-remotion-e4eee6f5a41f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/techtofreedom/5-xor-tricks-to-improve-your-code-beautifully-2411c4d8f7e1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/a-clean-way-to-clip-web-content-to-apple-notes-764c82c4e007 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/fantageek/understanding-socket-and-port-in-tcp-2213dc2e9b0c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@laraveltuts/laravel-convert-string-to-lowercase-example-21f76b1f8a5f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/entropy-regularization-in-reinforcement-learning-a6fa6d7598df - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bricksnbrackets/how-to-correctly-install-cocoapods-on-m1-m2-6abe3736c221 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@dev.n/definitive-flutter-painting-guide-ab9f51202656 - 2023-10-06 - monthly - 1.0 - - - - https://nickwignall.medium.com/4-habits-of-emotionally-healthy-people-70ae996f6be2 - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/how-i-eliminated-procrastination-from-my-life-using-neuroscience-5ebc22afebb4 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/free-gpus-for-training-your-deep-learning-models-c1ce47863350 - 2023-10-06 - monthly - 1.0 - - - - https://diylifetech.com/something-must-be-done-about-led-bulbs-93ae9df18926 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lost-but-coding/i-stopped-using-the-isar-database-6d604d2830f0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/simple-obsidian-project-notes-and-tasks-1dfa90434491 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/keep-productive/more-exciting-than-notion-163e93898522 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/how-to-upload-files-to-aws-s3-in-react-591e533d615e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/how-to-upload-file-to-aws-s3-using-pre-signed-url-in-nextjs-1f70a955389e - 2023-10-06 - monthly - 1.0 - - - - https://allardqjy.medium.com/using-pre-signed-urls-to-upload-files-to-amazon-s3-from-reactjs-5b15c94b66df - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/6-awesome-midjourney-tips-tricks-that-nobody-talks-about-ab991d812777 - 2023-10-06 - monthly - 1.0 - - - - https://dariusforoux.medium.com/do-hard-things-if-you-want-an-easy-life-2012f49231b5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@daniel.atitienei/navigate-with-arguments-in-jetpack-compose-90846d70bb7f - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/people-dont-read-online-they-scan-this-is-how-to-write-for-them-80a75069c14e - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/securely-ingressing-into-bare-metal-kubernetes-clusters-with-gateway-api-and-tailscale-cc68299b646a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-ai-publishing-experiment/4-more-easy-ways-to-make-money-with-ai-in-2023-b797dc0aec3d - 2023-10-06 - monthly - 1.0 - - - - https://entrepreneurshandbook.co/the-one-person-newsletter-business-model-is-the-fastest-way-to-make-6-figures-in-12-months-1696d75fb24c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/metrics-for-imbalanced-classification-41c71549bbb5 - 2023-10-06 - monthly - 1.0 - - - - https://asadeducate.medium.com/heres-what-you-need-to-do-when-your-articles-get-no-views-f57323d2b35f - 2023-10-06 - monthly - 1.0 - - - - https://bettermarketing.pub/how-to-scale-your-brand-without-ads-85adda9691af - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/the-midjourney-cheat-sheet-v5-54b5fd92d2da - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/the-midjourney-cheat-sheet-v5-2-34b65cb90ea3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/message/everything-is-broken-81e5f33a24e1 - 2023-10-06 - monthly - 1.0 - - - - https://bettermarketing.pub/content-silos-63605eaacd7a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-seo-channel/how-to-rank-on-google-page-1-4ae6263f5311 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/money-resolution/i-made-84-youtube-videos-in-21-days-the-results-are-surprising-472e449688bc - 2023-10-06 - monthly - 1.0 - - - - https://infosecwriteups.com/hackeando-voy-hackeando-vengo-el-caso-bicimad-go-e256adf6fe8 - 2023-10-06 - monthly - 1.0 - - - - https://thealexguides.medium.com/your-all-questions-answer-the-revolution-cdce5a13992a - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/7-advanced-techniques-for-dependency-injection-in-angular-c4f96c3c8dd8 - 2023-10-06 - monthly - 1.0 - - - - https://infosecwriteups.com/remote-code-execution-through-cross-site-scripting-in-electron-f3b891ad637 - 2023-10-06 - monthly - 1.0 - - - - https://y000o.medium.com/xss-desde-0-todo-lo-que-necesitas-saber-a0e984635947 - 2023-10-06 - monthly - 1.0 - - - - https://thealexguides.medium.com/my-writing-agency-made-me-27k-m-5ddc5c1ef4c2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/ai-genesis/need-to-analyze-data-like-a-boss-pandas-is-your-new-bff-b89134c5a5dd - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/understanding-auc-scores-in-depth-whats-the-point-5f2505eb499f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/6-underdog-data-science-libraries-that-deserve-much-more-attention-ef64187b562a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@abdelilah.moulida/3-tricky-sql-queries-solved-cf20194bf4a7 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/the-comprehensive-guide-to-python-project-setup-c1fe776c108f - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/customize-your-xcodeproject-with-tuist-6fc41fb59262 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/an-in-depth-efficientnet-tutorial-using-tensorflow-how-to-use-efficientnet-on-a-custom-dataset-1cab0997f65c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/wise-well/the-mindfulness-gap-why-doesnt-science-see-the-life-altering-changes-i-experience-30e136c48bb8 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/understand-sql-injection-and-learn-to-avoid-it-in-python-with-sqlalchemy-2c0ba57733b2 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/implementing-visualttransformer-in-pytorch-184f9f16f632 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@lewisjdoyle/evernote-ai-a-step-forward-but-perhaps-not-quite-intelligent-yet-581460200508 - 2023-10-06 - monthly - 1.0 - - - - https://mattgosden.medium.com/setting-up-a-home-gpu-deep-learning-server-the-easy-way-da27bdccef6a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/create-pdf-using-googleapps-script-6d974f3f06c4 - 2023-10-06 - monthly - 1.0 - - - - https://blog.stackademic.com/learn-how-to-bundle-node-js-code-into-single-executable-binary-eaf408b15eb - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/the-magical-chatgpt-code-interpreter-plugin-your-personal-programmer-and-data-analyst-f8cd69e8323b - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/5-1-most-intriguing-examples-of-chatgpt-code-interpreter-be89b5e8e313 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/automating-machine-learning-using-flaml-46400b94a6b3 - 2023-10-06 - monthly - 1.0 - - - - https://infosecwriteups.com/unraveling-the-idor-vulnerability-a-comprehensive-guide-to-understanding-and-testing-insecure-e3bd8780bf6e - 2023-10-06 - monthly - 1.0 - - - - https://corneacristian.medium.com/top-25-xxe-bug-bounty-reports-ab4ca662afad - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/catboost-regression-break-it-down-for-me-16ed8c6c1eca - 2023-10-06 - monthly - 1.0 - - - - https://ksummersill.medium.com/installing-linux-on-a-samsung-galaxy-tab-4-model-sm-t530nu-16aa196e89d4 - 2023-10-06 - monthly - 1.0 - - - - https://artificialcorner.com/i-tried-84-chatgpt-plugins-these-are-the-best-3b3be6b1cb7b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/devops-with-valentine/three-ways-you-can-generate-gitlab-ci-pipelines-e5ed53231d60 - 2023-10-06 - monthly - 1.0 - - - - https://devonprice.medium.com/not-all-girls-are-expected-to-be-feminine-cc2c59e4c25b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/s/story/the-suffragettes-and-the-birth-of-surveillance-photography-d29ce0ed8bec - 2023-10-06 - monthly - 1.0 - - - - https://mohycs.medium.com/how-to-crack-the-coding-interview-the-7-phases-of-interview-prep-975569fbc410 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/15-ways-programmers-and-software-developers-can-earn-additional-income-168e3a334b1f - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/promises-are-not-making-your-nodejs-app-multi-threaded-1ad43bb615b1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/spring-boot-mongodb-searching-and-pagination-1a6c1802024a - 2023-10-06 - monthly - 1.0 - - - - https://ilovemarichelle.medium.com/3-writing-elements-to-help-you-create-more-valuable-articles-even-if-you-are-a-beginner-25c1ceac3875 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/difference-between-requestmapping-and-getmapping-annotations-in-spring-mvc-web-famework-190c7ed73854 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/medium-partner-program-earning-report-how-i-made-100-in-1-month-with-screenshot-37524cd4d822 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/11-writing-tips-every-beginner-writer-can-apply-today-to-10x-their-views-21753f1ce79b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/the-only-thing-i-want-to-know-about-apples-september-event-invite-acff1c575463 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tsecretdeveloper/5-junior-programmers-who-never-became-senior-3967d618f8f5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@swamfefe/ios-my-favorite-apps-5be38dc791a5 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-5-feature-selection-algorithms-every-data-scientist-need-to-know-3a6b566efd2 - 2023-10-06 - monthly - 1.0 - - - - https://thexssrat.medium.com/burp-suite-match-and-replace-babac6415cad - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-hitchhikers-guide-to-feature-extraction-b4c157e96631 - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/bento-ui-in-ux-design-whats-the-buzz-all-about-f1a102b29662 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-i-built-my-own-dating-app-algorithm-2f6def15feb1 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/dating-algorithms-using-machine-learning-and-ai-814b68ecd75e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/7-types-of-gigs-you-can-do-as-a-freelance-data-scientist-5b81f3c203af - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/histograms-with-pythons-matplotlib-b8b768da9305 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/how-to-remember-all-these-classification-concepts-forever-761c065be33 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/time-series-modeling-of-bitcoin-prices-5133edfec30b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/writers-blokke/i-took-a-7-day-course-from-a-7-figure-writer-heres-everything-i-learned-9e8607686c03 - 2023-10-06 - monthly - 1.0 - - - - https://ilovemarichelle.medium.com/my-4-step-process-for-writing-more-in-less-time-524f6269147b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@BiancaBass/52-writing-prompts-to-inspire-your-next-blog-post-d4556d4f68d8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/an-idea-for-you/the-one-word-trick-to-write-an-insanely-powerful-headline-c9665ba2b676 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/calculating-expected-stock-move-using-implied-volatility-in-python-6223e947cfc0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/cinemania/sex-scenes-thatll-make-you-gorge-your-eyes-out-dacd8be5544f - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/10-mental-models-for-learning-anything-318446320c1e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/kernels-everything-you-need-to-know-f5d255d95785 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/design-microservices-architecture-with-patterns/microservices-killer-modular-monolithic-architecture-ac83814f6862 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-create-videos-with-stable-diffusion-1c9c3b34be84 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/add-firebase-to-your-ios-app-quickly-updated-2020-d673ea96552e - 2023-10-06 - monthly - 1.0 - - - - https://infosecwriteups.com/broken-access-control-the-silent-killer-of-web-application-security-e07164b503bc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/techiepedia/an-bug-bounty-hunters-guide-to-idor-vulnerabilities-27012bbccd7 - 2023-10-06 - monthly - 1.0 - - - - https://infosecwriteups.com/tips-for-bac-and-idor-vulnerabilities-8a3e58f79d95 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/cleansoftware/firebase-database-minimalistic-step-by-step-deployment-tutorial-using-swift-5-21e934209929 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/dataseries/microsofts-dowhy-is-a-cool-framework-for-causal-inference-d14013657f35 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/implementing-causal-inference-a-key-step-towards-agi-de2cde8ea599 - 2023-10-06 - monthly - 1.0 - - - - https://interviewnoodle.com/spotify-connect-system-architecture-61dd0e4fde5b - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/15-javascript-techniques-to-enhance-your-code-67a40ed3f08f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@attentionx/unlocking-the-magic-of-self-attention-with-math-pytorch-2f6835b29f7b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@manoranjan.rajguru/llmops-managing-large-language-models-with-mlops-64704cf3bc0f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bouncin-and-behavin-blogs/old-white-men-need-to-stop-doing-this-to-young-girls-bbbae6bad279 - 2023-10-06 - monthly - 1.0 - - - - https://joemduncan.medium.com/the-mugshot-seen-round-the-world-f3ee7b36122a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/sexography/heres-what-happens-when-you-call-a-woman-hot-1a6731fe9e48 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@UnbecomingStories/how-my-husbands-sexuality-defined-our-marriage-abbc2c90e451 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/advices-from-a-software-engineer-with-8-years-of-experience-8df5111d4d55 - 2023-10-06 - monthly - 1.0 - - - - https://thebolditalic.com/why-im-breaking-up-with-burning-man-efe43bb5c9c5 - 2023-10-06 - monthly - 1.0 - - - - https://streettheologian.medium.com/quoting-ehrman-20-bart-ehrman-quotes-every-non-christian-should-know-4241cc5e0fbd - 2023-10-06 - monthly - 1.0 - - - - https://emma-delaney.medium.com/top-10-tricky-javascript-questions-that-i-used-to-ask-in-interviews-2cb3912271a9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@hermandetest/backpropagation-algorithm-part-2-9503849fe684 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@prudhvithtavva/bert-vs-gpt-a-tale-of-two-transformers-that-revolutionized-nlp-11fff8e61984 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@zaiinn440/autoregressive-models-for-natural-language-processing-b95e5f933e1f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-generator/the-next-ai-trend-is-terrifying-4205c28a47b4 - 2023-10-06 - monthly - 1.0 - - - - https://nickwignall.medium.com/4-habits-confident-people-avoid-f75fa340e7ba - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@frankzanon/the-satanic-cult-of-calvinist-theology-9bc525400d97 - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/16-ui-design-tips-ba2e7524d203 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/liberty-76/how-my-last-relationship-changed-me-forever-ad1f349e6a50 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/in-fitness-and-in-health/i-walked-23k-steps-day-for-5-weeks-heres-what-happened-9ff47aca9ce - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/better-advice/10-things-to-do-in-the-evening-instead-of-watching-netflix-4e270e9dd6b9 - 2023-10-06 - monthly - 1.0 - - - - https://baos.pub/the-18-best-ways-to-make-money-by-reading-books-641648bb3083 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/if-you-want-to-be-a-creator-delete-all-but-two-social-media-platforms-c1ac70b2d98e - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/dont-just-leetcode-follow-the-coding-patterns-instead-4beb6a197fdb - 2023-10-06 - monthly - 1.0 - - - - https://aninjusticemag.com/we-dont-need-a-tech-bro-president-cf7b97d75b47 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/in-fitness-and-in-health/looking-better-than-99-of-people-over-40-is-about-1-thing-ddcd39936cf7 - 2023-10-06 - monthly - 1.0 - - - - https://canistermagazine.com/a-pro-photographer-critiques-trumps-mugshot-7f6efa21fd76 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@profgalloway/trump-and-math-9fa8e8fafd43 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@shubhadeepchat/best-practices-for-clean-code-aaba4a4832bc - 2023-10-06 - monthly - 1.0 - - - - https://blog.devops.dev/real-time-audio-to-text-transcription-with-amazon-transcribe-and-websockets-in-node-js-1ae068a99cec - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/use-git-like-a-senior-engineer-ef6d741c898e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/on-the-couch/stop-trying-to-find-yourself-its-not-the-key-to-a-fulfilling-life-c0dbf0efb5f - 2023-10-06 - monthly - 1.0 - - - - https://artificialcorner.com/10-things-to-know-before-starting-to-work-with-open-source-llm-part-1-4d9ac8df25bf - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/ellemeno/cycling-through-the-heart-of-rural-american-fascism-dc24da723f8b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@mayank2220singh/iteratively-improving-speech-recognition-and-voice-conversion-caf4b1ff2135 - 2023-10-06 - monthly - 1.0 - - - - https://teetracker.medium.com/fine-tuning-llms-9fe553a514d0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@yash9439/introduction-to-llms-and-the-generative-ai-part-1-a946350936fd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/middle-pause/my-fond-farewell-to-viagra-ec5883b5c1cb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@imdshekhar/google-cloud-text-to-speech-api-the-future-of-ai-voice-synthesis-a65db9ad688d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-coding-diaries/why-experienced-programmers-fail-coding-interviews-b22210ba343 - 2023-10-06 - monthly - 1.0 - - - - https://admiralcloudberg.medium.com/cruelty-of-chance-the-cerritos-mid-air-collision-and-the-crash-of-aerom%C3%A9xico-flight-498-c5cb0202303a - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/architecture-of-modern-startup-abaec235c2eb - 2023-10-06 - monthly - 1.0 - - - - https://eand.co/why-the-real-test-of-american-exceptionalism-is-now-35848f05f832 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/counterarts/rich-men-north-of-richmond-the-dangers-of-trumpism-in-3-minutes-563670da1bd7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/predict/the-age-of-combustion-is-drawing-to-a-close-f98197107cd0 - 2023-10-06 - monthly - 1.0 - - - - https://naji0329.medium.com/16-libraries-you-should-know-as-a-react-developer-ac6d9bbd775e - 2023-10-06 - monthly - 1.0 - - - - https://nickwignall.medium.com/4-habits-of-emotionally-intelligent-people-310ddc4a96c2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@anchen.li/how-to-fine-tune-an-open-source-llama-using-qlora-3a9a68c4eb90 - 2023-10-06 - monthly - 1.0 - - - - https://barry-gander.medium.com/what-conventional-military-analysis-missed-about-russia-6a9ebb35424 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@baswallet/a-moral-divide-why-progressives-and-conservatives-dont-get-each-other-9a57e332b6c1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/deconstructing-christianity/i-learned-the-good-news-about-rape-at-a-christian-camp-fea876a45aed - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/version-1/difference-between-promise-and-async-await-95e453182f55 - 2023-10-06 - monthly - 1.0 - - - - https://desolve.medium.com/%E5%BE%9Eleetcode%E5%AD%B8%E6%BC%94%E7%AE%97%E6%B3%95-13-tree-1-52cfbdde02b2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mind-cafe/its-not-an-either-or-world-it-s-a-gray-gray-gray-world-6a8e3b0b2407 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-narrative-arc/the-harsh-truth-no-one-tells-you-about-living-on-this-bitter-earth-57b13ba75502 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@glenmichaelsen/10-apps-i-cannot-live-without-for-my-macbook-air-8561d9fbf0c2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@adamcharlton/brand-strategy-how-to-find-your-core-values-c46c16dbeaa9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@adamcharlton/what-is-your-brands-personality-7b088cb73131 - 2023-10-06 - monthly - 1.0 - - - - https://codereacter.medium.com/why-angular-14s-new-inject-function-is-so-amazing-ac281e7148d1 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/4-simple-tips-for-plotting-multiple-graphs-in-python-38df2112965c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/break-the-mould/a-vpn-that-speeds-you-up-warp-and-wireguard-4f0430937783 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@dizzyi/implementing-a-proxy-network-with-naiveproxy-bbr-warp-that-supports-ipv6-2d6c471ee3e8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@msnema7/how-to-increase-internet-speed-download-1-1-1-1-app-life-is-aware-83d37b27d141 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@warpcash/how-does-warp-work-1a93c7ac932a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/cloudflare-blog/introducing-cloudflare-access-like-beyondcorp-but-you-dont-have-to-be-a-google-employee-to-use-17575e932a8d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-happy-linguist/youglish-a-great-site-for-improving-your-french-pronunciation-7898659ac04d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/hyperparameter-tuning-with-keras-tuner-283474fbfbe - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@beforelongbefore/why-i-stopped-using-apples-native-apps-2172720b16 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/track-your-habits-in-obsidian-tracker-plugin-and-meta-bind-plugin-88ea4878937 - 2023-10-06 - monthly - 1.0 - - - - https://beingpax.medium.com/how-to-create-a-habit-tracker-in-obsidian-youll-actually-use-9094eeac1af6 - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/pythons-best-web-frameworks-a-side-by-side-comparison-of-drf-django-rest-framework-fastapi-859fdd0700d8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/c-sharp-progarmming/the-power-of-c-events-for-system-decoupling-c1d8187e1004 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/intuition/reinforced-economics-6a50c85faf2a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@kevn.wanf/explainable-ai-with-predicate-learning-1ba1d0bdc18f - 2023-10-06 - monthly - 1.0 - - - - https://agbonorino.medium.com/econometrics-in-python-cross-sectional-analysis-with-ols-aa9572e64e85 - 2023-10-06 - monthly - 1.0 - - - - https://agbonorino.medium.com/nashpy-strategic-interactions-in-python-aac937c916a5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/intuition/hey-siri-tell-me-why-e2bad46e097c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/intuition/vector-calculus-for-machine-learning-5d8842d8cd23 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/c-sharp-progarmming/top-10-tools-for-integrating-machine-learning-into-your-net-projects-40f47f04209 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/c-sharp-progarmming/the-power-of-c-interfaces-for-behaviour-composition-b73fd4ee7c14 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lessons-from-history/three-evil-criminals-who-were-loved-by-women-3c3e40e67a11 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lessons-from-history/tang-dynasty-to-the-song-dynasty-324a70ba8948 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mobile-app-development-publication/dagger-android-behind-the-scene-d6c9aa97c451 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lessons-from-history/the-bicycle-craze-of-the-late-19th-century-a93aa343f7c7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lessons-from-history/economics-and-warfare-bd9a89fb6595 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lessons-from-history/what-if-the-a-bomb-was-never-dropped-and-japan-was-invaded-e9f5312fd0d6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lessons-from-history/how-to-destroy-your-empire-fast-7138db115fe0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/fact-world/the-wonderful-world-of-completely-random-facts-issue-68-99af467ed95 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lessons-from-history/four-people-who-were-killed-by-their-own-stupidity-e27e4e897fa4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mindorks/dagger-2-generated-code-9def1bebc44b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@harivigneshjayapalan/dagger-2-for-android-beginners-dagger-2-part-i-f2de5564ab25 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lessons-from-history/the-forgotten-empires-623c1de89aa2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lessons-from-history/simo-h%C3%A4yh%C3%A4-the-silent-specter-of-the-snow-9b6db9d4b2f0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lessons-from-history/this-beautiful-russian-duchess-died-in-agony-because-of-lenin-da0b2da2ba6a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lessons-from-history/night-witches-the-fearless-female-aviators-of-world-war-ii-befe2050a9e5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lessons-from-history/the-mysterious-link-christian-traditions-and-paganism-8681a5ed78e4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lessons-from-history/why-is-stanislav-petrov-considered-the-most-important-person-in-modern-history-476fbc88b9e7 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-self-learn-data-science-in-2022-a537a76d138e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lessons-from-history/the-dumbest-military-operation-in-american-history-a6b08c789c72 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-build-a-fantasy-premier-league-team-with-data-science-f01283281236 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/singapore-gds/the-dos-and-don-ts-of-pair-programming-58e9e4c211f3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@gabrielmasantos/how-i-built-a-simple-algorithm-to-analyze-a-companys-financial-health-5e222972c098 - 2023-10-06 - monthly - 1.0 - - - - https://blog.dipien.com/how-to-increase-the-security-of-the-api-keys-created-by-firebase-e9be0925526b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/8-signs-you-are-an-intermediate-software-developer-e5801defcf47 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/top-15-websites-for-data-scientists-to-follow-in-2021-67352092c54d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/archvault-obsidian-unlock-your-knowledge-92d7d87bba67 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/forget-the-s-p500-index-create-your-own-in-python-e0b8a78cc793 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/build-an-obsidian-daily-note-template-for-productivity-updated-august-2023-92c6d3e45b5b - 2023-10-06 - monthly - 1.0 - - - - https://kaabar-sofien.medium.com/new-breed-of-technical-indicators-blue-9c008f3ffe2d - 2023-10-06 - monthly - 1.0 - - - - https://kaabar-sofien.medium.com/detecting-market-reversals-with-the-fibonacci-timing-pattern-62a010646703 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@redeaddiscolll/stock-long-short-prediction-using-machine-learning-e5bc0f7686c0 - 2023-10-06 - monthly - 1.0 - - - - https://quant-galore.medium.com/rocket-science-meet-quant-trading-4d1f70113343 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-create-a-compelling-github-portfolio-a229e7472a92 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@farrago_course0f/using-python-and-rsi-to-generate-trading-signals-a56a684fb1 - 2023-10-06 - monthly - 1.0 - - - - https://kaabar-sofien.medium.com/the-super-stochastic-trading-strategy-fceaaa7e10cf - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/use-chatgpt-to-create-a-profitable-trading-bot-in-just-a-few-minutes-f153cf51ee3c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@replytoak10/how-to-analyze-a-stock-like-michael-burry-adc6f5f302bd - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/10-large-language-models-projects-to-build-your-portfolio-d7974569aad4 - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/who-needs-photo-editors-massive-image-manipulation-tutorial-in-python-38cb58ad07fe - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/boosting-performance-running-async-processes-with-executor-services-in-java-192dd99f2c1d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/machine-learning-for-sports-betting-not-a-basic-classification-problem-b42ae4900782 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@sadievrenseker/yapay-zeka-ile-borsa-analizi-57f7120171c1 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/my-findings-on-using-machine-learning-for-sports-betting-do-bookmakers-always-win-6bc8684baa8c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@PurpleGreenLemon/was-microservices-a-bad-idea-5e52edee1cff - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-find-unique-data-science-project-ideas-that-make-your-portfolio-stand-out-1c2ddfdbefa6 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/document-your-machine-learning-project-in-a-smart-way-35c68aa5fc0e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/10-crazy-cool-project-ideas-for-python-developers-d7efeb0a345 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/forcodesake/chat-gpt-dual-prompt-ai-artificial-intelligence-gpt-engineering-good-practices-bard-d04efef1721b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/build-your-portfolio-with-these-data-for-good-project-ideas-919254357a66 - 2023-10-06 - monthly - 1.0 - - - - https://hanamakhlouf.medium.com/4-reasons-to-get-on-tech-twitter-now-cafc020ad5d8 - 2023-10-06 - monthly - 1.0 - - - - https://karol-mazurek95.medium.com/osep-preparation-e4cad53b65f3 - 2023-10-06 - monthly - 1.0 - - - - https://karol-mazurek95.medium.com/osed-preparation-f6196ab8fc2b - 2023-10-06 - monthly - 1.0 - - - - https://karol-mazurek95.medium.com/oswe-preparation-5d2d5f0e2cba - 2023-10-06 - monthly - 1.0 - - - - https://taimurcloud123.medium.com/getting-uk-tech-nation-global-talent-visa-as-a-cyber-security-expert-15b22548027b - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/why-flutter-isnt-the-next-big-thing-e268488521f4 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/swiftui-vs-jetpack-compose-why-android-wins-hands-down-b5f849b730db - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/apple-has-ing-done-it-again-974bf7ed9103 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/fine-tuning-gpt-3-5-turbo-for-your-special-use-cases-e389c1747a71 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/thoughts-on-machine-learning/langchain-is-nice-but-have-you-tried-embedchain-215a34421cde - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-auto-generate-a-summary-from-long-youtube-videos-using-ai-a2a542b6698d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/using-a-knowledge-graph-to-improve-question-answering-with-llms-caf88903f201 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/how-i-connect-obsidian-daily-notes-to-my-calendar-task-list-and-digital-journal-54e21139f745 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/efficiently-serving-open-source-llms-5f0bf5d8fd59 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/step-by-step-adding-zotero-footnotes-and-citations-in-obsidian-2dc91e5a84e - 2023-10-06 - monthly - 1.0 - - - - https://beingpax.medium.com/how-to-create-multiple-columns-on-obsidian-c88d220116f6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/fastapi-logging-in-2023-f926fd0bdfcb - 2023-10-06 - monthly - 1.0 - - - - https://wahibhaq.medium.com/an-easy-way-to-mock-an-api-response-using-retrofit-okhttp-and-interceptor-7968e1f0d050 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@smraiyyan/openai-secretly-launches-gptbot-a-new-web-crawler-for-ai-training-356787796d6b - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/swift-101-basic-property-92f02256dc07 - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/textbooks-is-all-you-need-inside-microsoft-researchs-amazing-phi-1-code-languange-model-f9eec2ea930 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/monocular-birds-eye-view-semantic-segmentation-for-autonomous-driving-ee2f771afb59 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/my-obsidian-setup-part-18-how-to-track-time-de84d56a5523 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@steinsfu/stable-diffusion-clearly-explained-ed008044e07e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/has-software-engineering-become-boring-4d5059f3dde3 - 2023-10-06 - monthly - 1.0 - - - - https://vickieli.medium.com/how-to-read-more-security-engineering-books-b5cb61eeee47 - 2023-10-06 - monthly - 1.0 - - - - https://eand.co/is-democracy-committing-suicide-4f6d0d23442 - 2023-10-06 - monthly - 1.0 - - - - https://ajaksecurity.medium.com/secret-bug-bounty-extension-all-hackers-forget-to-add-part-2-not-common-a1ef4cbdf97d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swift-productions/create-a-uitabbar-programmatically-xcode-12-swift-5-3-740d5491631c - 2023-10-06 - monthly - 1.0 - - - - https://jancovorstermyafibheart.medium.com/10-ectopic-heartbeat-vagus-nerve-palpitations-tips-for-you-b8b2acd4dbbe - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/creating-k8s-scripts-deep-dive-to-cluster-orchestration-f0ca70c02c63 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/fast-meeting-notes-with-templater-and-obsidian-properties-6be994a455cf - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/5-amazing-mac-apps-that-will-save-you-hours-of-time-18ce3cf9ae33 - 2023-10-06 - monthly - 1.0 - - - - https://iamalexmathers.medium.com/if-youre-struggling-to-start-the-thing-yeah-that-thing-read-this-36d70a8224b - 2023-10-06 - monthly - 1.0 - - - - https://ryanhouk.medium.com/5-daily-use-mac-apps-from-setapp-part-2-d9100ad7066c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@alexandraphelan/literature-reviews-using-zotero-obsidian-66eba1565d78 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@robertwiblin/what-you-think-about-landfill-and-recycling-is-probably-totally-wrong-3a6cf57049ce - 2023-10-06 - monthly - 1.0 - - - - https://randerson112358.medium.com/time-in-the-market-beats-timing-the-market-51d3513c6d87 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/yardcouch-com/do-not-try-to-time-the-market-77d1628cac6e - 2023-10-06 - monthly - 1.0 - - - - https://cobusgreyling.medium.com/langchain-creating-large-language-model-llm-applications-via-huggingface-192423883a74 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@skylerthompson1/the-perfect-apple-setup-for-students-in-2022-99143b6d08ef - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/the-best-apple-ecosystem-6ab4e79b378e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@duha/time-in-market-vs-timing-the-market-5a2d64fbf21a - 2023-10-06 - monthly - 1.0 - - - - https://lessw.medium.com/market-timing-why-the-odds-are-strongly-against-it-and-why-investors-should-fear-missing-the-93bb25ef7434 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/market-timing-pattern-recognition-coding-back-testing-the-waldo-pattern-in-python-17f67de2419c - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/can-we-find-market-peaks-with-simple-python-74ebcab8b12a - 2023-10-06 - monthly - 1.0 - - - - https://infosecwriteups.com/securing-your-linux-server-with-these-best-practices-50b30e026bd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/beginners-guide-to-basic-linux-commands-92e9f453a08e - 2023-10-06 - monthly - 1.0 - - - - https://irtizahafiz.medium.com/20-ways-the-apple-ecosystem-10x-my-productivity-b8267f673b24 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/a-writers-studio-setup-f44f8073db91 - 2023-10-06 - monthly - 1.0 - - - - https://lyricalstring.medium.com/the-best-tricks-in-apples-ecosystem-unleashing-the-power-of-synchronicity-decc2577ffa3 - 2023-10-06 - monthly - 1.0 - - - - https://evilgeek.medium.com/how-you-can-build-an-apple-ecosystem-under-a-budget-in-2023-fd9492a90db5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/10-apple-ecosystem-features-to-drastically-elevate-your-health-65bafc3588f3 - 2023-10-06 - monthly - 1.0 - - - - https://aws.plainenglish.io/3rd-party-vpns-are-dead-you-can-easily-build-your-own-in-aws-f291a52b2a8b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@paralloid/managing-the-digital-information-the-solution-8003cc905d6b - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/8-learnings-from-spotifys-ux-design-that-you-can-learn-apply-today-c042d91617d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/macos-sonoma-a-new-chapter-in-apples-ecosystem-evolution-cf69616da163 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@lewisjdoyle/the-productivity-ecosystem-5a677aac6c24 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/build-your-own-plagiarism-checker-with-python-and-machine-learning-7e81877fd970 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@codingandcoffee/brokerages-suck-navigating-the-challenges-of-live-algo-trading-743b47f6401e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/build-a-plagiarism-checker-using-machine-learning-6538110ce162 - 2023-10-06 - monthly - 1.0 - - - - https://gupta-bless.medium.com/exploiting-local-file-inclusion-lfi-using-php-wrapper-89904478b225 - 2023-10-06 - monthly - 1.0 - - - - https://artificialcorner.com/custom-instructions-a-new-feature-you-must-enable-to-improve-chatgpt-responses-15820678bc02 - 2023-10-06 - monthly - 1.0 - - - - https://karol-mazurek95.medium.com/htb-aws-fortress-tips-16dff9ed4dcd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@pkmbeth/my-current-app-stack-including-cost-aa1ff37d3ae3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@alex.birsan/dependency-confusion-4a5d60fec610 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@patrick_nguyen_74695/end-to-end-azure-data-engineering-project-part-1-project-requirement-solution-architecture-and-3fedb53df400 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@historicalgeographica/new-colonialism-in-africa-the-contemporary-struggle-for-autonomy-and-resources-2e287e8e8dbb - 2023-10-06 - monthly - 1.0 - - - - https://robinpokorny.medium.com/index-as-a-key-is-an-anti-pattern-e0349aece318 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/intotheblock/a-first-principles-framework-for-understanding-risk-management-methods-in-defi-c33921b0b147 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/3-amazing-low-code-machine-learning-libraries-that-you-should-know-about-a66895c0cc08 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-controlled-fade-b972e11ab452 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/how-to-get-the-latest-commodity-pricing-in-google-sheet-61ab01b482b4 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/advanced-prompt-engineering-f07f9e55fe01 - 2023-10-06 - monthly - 1.0 - - - - https://interviewnoodle.com/instagram-system-architecture-fdbec22e48ee - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/scalereal/everything-you-need-to-know-about-middleware-in-django-2a3bd3853cd6 - 2023-10-06 - monthly - 1.0 - - - - https://lih-verma.medium.com/query-key-and-value-in-attention-mechanism-3c3c6a2d4085 - 2023-10-06 - monthly - 1.0 - - - - https://fares7elsadek.medium.com/my-first-bug-how-i-was-able-to-bypass-the-waf-and-uncover-a-reflected-xss-e0534b6f05e4 - 2023-10-06 - monthly - 1.0 - - - - https://generativeai.pub/this-website-allows-you-to-train-ai-image-models-from-scratch-a07f813bd29f - 2023-10-06 - monthly - 1.0 - - - - https://kaabar-sofien.medium.com/a-fantastic-yet-simple-market-pattern-to-use-6b4b05eef811 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@redeaddiscolll/stock-market-time-series-lstm-failure-ee1bf47933f9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/merging-principal-component-analysis-pca-with-artificial-neural-networks-1ea6dad2c095 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/integration-of-dimension-reduction-methods-and-neural-network-for-image-classification-96281963fe24 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@princeee/5-incredible-ai-tools-that-will-10x-your-productivity-50e6f9b9aa97 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@edtechre/algotrading-in-python-with-machine-learning-walkforward-analysis-1ebfb8a9fcf0 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/using-pca-to-reduce-number-of-parameters-in-a-neural-network-by-30x-times-fcc737159282 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/principal-component-regression-clearly-explained-and-implemented-608471530a2f - 2023-10-06 - monthly - 1.0 - - - - https://blog.gopenai.com/building-a-trading-strategy-with-machine-learning-models-and-yahoo-finance-in-python-ec9228ffbae6 - 2023-10-06 - monthly - 1.0 - - - - https://blog.curiosity.ai/10-trendsetting-apps-in-july-2023-discover-the-hottest-new-tech-14632f2b92dd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@daniel.atitienei/how-to-implement-flows-and-share-viewmodels-in-kotlin-multiplatform-mobile-kmm-89dfe08758ef - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/what-the-hell-is-perceptron-626217814f53 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/learn-next-js-by-building-your-first-next-js-app-from-scratch-part-2-ecbeebce54ca - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/build-a-weather-app-on-next-js-includes-code-bd111bda235f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@siddhatechsoftwares/next-js-best-practices-tips-for-clean-and-efficient-code-99dd31a14797 - 2023-10-06 - monthly - 1.0 - - - - https://itsteknas.medium.com/next-js-13-is-not-ready-for-production-a8a8e50fbebf - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/an-introduction-to-exceedance-probability-forecasting-4c96c0e7772c - 2023-10-06 - monthly - 1.0 - - - - https://humanparts.medium.com/why-is-everyone-succeeding-but-me-29186494166b - 2023-10-06 - monthly - 1.0 - - - - https://graymiller.medium.com/i-cant-figure-out-what-the-best-place-for-my-daily-notes-should-be-61a5831c1ca4 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/forecast-multiple-time-series-like-a-master-1579a2b6f18d - 2023-10-06 - monthly - 1.0 - - - - https://aws.plainenglish.io/deploy-node-js-server-to-aws-ec2-with-docker-78687493b53 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/virtual-environments-104c62d48c54 - 2023-10-06 - monthly - 1.0 - - - - https://wesodonnell.medium.com/ukraine-now-using-cardboard-drones-to-devastate-russian-airfields-a344bb7b9b14 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/publishing-a-typescript-npm-package-with-github-actions-7f6486e7da95 - 2023-10-06 - monthly - 1.0 - - - - https://artificialcorner.com/noteable-the-chatgpt-plugin-that-automates-data-analysis-7f7ccd84f3c8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@redeaddiscolll/trading-with-time-series-machine-learning-2b6995a8183e - 2023-10-06 - monthly - 1.0 - - - - https://socfortress.medium.com/part-12-sigma-rules-for-the-opensource-siem-de136e3aa808 - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/psychology-in-ux-design-understanding-cognitive-psychology-in-ux-design-375c940d34ab - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/taipy-a-tool-for-building-user-friendly-production-ready-data-scientists-applications-80de97aaf7dd - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/7-interview-questions-every-senior-react-developer-should-know-d85730fb04d5 - 2023-10-06 - monthly - 1.0 - - - - https://asimzaidi.medium.com/how-to-become-a-senior-react-engineer-5258911b8179 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/b%C3%A9zier-interpolation-8033e9a262c2 - 2023-10-06 - monthly - 1.0 - - - - https://muddyum.net/bloopers-and-outtakes-from-homers-iliad-2991e92786b1 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/ultimate-guide-to-statistics-for-data-science-a3d8f1fd69a7 - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/overview-of-object-detection-evaluation-metrics-1bf9ec9edb14 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/the-toolkit-of-a-data-scientist-in-2023-c827f9087b54 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@robertmckee/statistical-analysis-hypothesis-testing-of-binary-data-b0dce43306 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-memoirist/i-was-ghosted-two-days-before-my-wedding-44e6ffd611ed - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tomhcorbin/boosting-efficiency-in-pyspark-a-guide-to-partition-shuffling-9a5af77703ea - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/wwcode-python/a-cheatsheet-to-data-engineering-interviews-5c9bc906b9df - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/snowchat-leveraging-openais-gpt-for-sql-queries-f36b077afeff - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/power-bi-how-i-started-using-python-to-automate-tasks-9e9536ebd839 - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/top-important-computer-vision-for-week-from-7-8-to-13-8-40e790267cbd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/wwcode-python/a-day-in-the-life-of-a-data-engineer-a1921af11828 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@xinyu.chen/intuitive-understanding-of-tensors-in-machine-learning-33635c64b596 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-to-add-resources-in-swift-package-manager-c437d44ec593 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/fourier-transform-the-practical-python-implementation-acdd32f1b96a - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/the-solution-architects-guide-to-serverless-27af39ad57b - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/web-scraping-how-to-gather-articles-using-googlenews-library-a7855e906277 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@seanmlewis/zero-to-one-notes-on-startups-or-how-to-build-the-future-by-peter-thiel-a-comprehensive-review-1c87b7e2d26f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/how-to-run-locally-built-docker-images-in-kubernetes-b28fbc32cc1d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/tf-gradienttape-explained-for-keras-users-cc3f06276f22 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/gru-recurrent-neural-networks-a-smart-way-to-predict-sequences-in-python-80864e4fe9f6 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/how-to-create-a-perfect-repository-using-kotlin-exclusive-features-61c3121f22df - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/clearly-explained-pearson-v-s-spearman-correlation-coefficient-ada2f473b8 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/creating-a-repository-data-layer-with-kotlin-coroutines-in-android-1375ab79b6f0 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-to-set-up-a-dependency-injection-framework-with-dagger2-in-android-aa23ee9299db - 2023-10-06 - monthly - 1.0 - - - - https://seanjkernan.medium.com/4-lessons-from-40-years-of-life-4b3cd4e99cf7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/c-sharp-progarmming/mastering-task-parallel-library-in-net-be2d64864e7d - 2023-10-06 - monthly - 1.0 - - - - https://ranakhalil101.medium.com/hack-the-box-academy-a21b15a12276 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@passive.income.journey.web/new-writers-when-no-one-is-reading-your-article-b4366e02e8cd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/c-sharp-progarmming/c-caf%C3%A9-asynchronous-programming-feast-ab84ef6dfd31 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/practice-in-public/stop-creating-obvious-content-with-this-simple-5-minute-method-2e5d07b1bce8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/hello-love/why-its-actually-easier-than-ever-to-date-amazing-women-107be29a7396 - 2023-10-06 - monthly - 1.0 - - - - https://oyvindwashere.medium.com/analog-film-look-fujifilm-recipe-f892892d84b4 - 2023-10-06 - monthly - 1.0 - - - - https://oyvindwashere.medium.com/funsaver-fujifilm-recipe-6a70d2c86d7c - 2023-10-06 - monthly - 1.0 - - - - https://oyvindwashere.medium.com/kodak-ektar-100-fujifilm-recipe-2f47b70c41da - 2023-10-06 - monthly - 1.0 - - - - https://oyvindwashere.medium.com/owh-darkness-fujifilm-recipe-for-the-darkest-of-days-a6a8a17714f3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/say-goodbye-to-chatgpt-and-bard-these-ai-tools-will-change-the-way-you-work-no-bs-db379202874a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/prompt-ensembles-make-llms-more-reliable-ae57ec35b5f7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-modern-scientist/nassim-nicholas-taleb-revolutionizing-finance-with-unconventional-theories-and-discoveries-part-8df3a901b649 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/top-solopreneurs-slowly-quit-these-things-strictly-in-this-order-cb8a54549b3b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/6-methods-for-multi-step-forecasting-823cbde4127a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/break-up-a-big-airflow-dag-into-multiple-files-5262accf6713 - 2023-10-06 - monthly - 1.0 - - - - https://articles.wesionary.team/implementing-react-jss-on-next-js-projects-7ceaee985cad - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/personal-growth/the-calm-life-method-5-habits-of-super-calm-people-5aba33484865 - 2023-10-06 - monthly - 1.0 - - - - https://bettermarketing.pub/to-increase-the-value-of-your-work-contextualize-it-purposefully-99ba251cd892 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/program-aided-language-models-93d226c7d9a0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coinmonks/elephant-money-bootcamp-everything-you-need-to-know-linktree-f9869944df78 - 2023-10-06 - monthly - 1.0 - - - - https://bherunda.medium.com/solar-log4shell-tryhackme-d5a69a990c0a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/publishous/philogpts-surprisingly-wise-answer-to-what-s-the-meaning-of-life-408a058309e4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/slalom-technology/building-and-scaling-a-micro-segmented-network-in-aws-for-regulated-industries-af4f931cd48c - 2023-10-06 - monthly - 1.0 - - - - https://ahmadaabdulla.medium.com/cve-2019-17558-apache-solr-vulnerable-to-remote-code-execution-zero-day-vulnerability-3ff7902535bb - 2023-10-06 - monthly - 1.0 - - - - https://graymiller.medium.com/this-simple-journal-hack-might-be-the-cure-for-procrastination-and-task-paralysis-98baf5ea3eb0 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/cosine-similarity-explained-using-python-machine-learning-pyshark-5c5d6b9c18fa - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/13-tips-for-writing-useful-unit-tests-ca20706b5368 - 2023-10-06 - monthly - 1.0 - - - - https://graymiller.medium.com/how-i-discovered-the-best-tool-i-have-for-coping-with-adhd-e1d38827a1a4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tanner.overcash/semantic-similarity-calculations-using-nlp-and-python-a-soft-introduction-1f31df965e40 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/practical-prompt-engineering-74e96130abc4 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/semantic-textual-similarity-83b3ca4a840e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/fine-tuning-bert-and-roberta-for-high-accuracy-text-classification-in-pytorch-c9e63cf64646 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/medialesson/create-your-own-npm-package-private-or-public-60edc2c42f68 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/access-a-mongodb-repliaset-outside-of-kubernetes-using-ambassador-api-gateway-baed39fb9bd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/espacof508/um-guia-pr%C3%A1tico-para-come%C3%A7ar-a-criar-no-midjourney-ai-art-generator-1613a5940dfc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/how-to-build-a-text-editor-like-notion-c510aedfdfcc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/10-stellar-apps-for-your-apple-devices-june-2023-f4fbd1ea7021 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/10-phenomenal-apps-for-iphone-and-mac-july-2023-bdd2929ebdd2 - 2023-10-06 - monthly - 1.0 - - - - https://pub.aimind.so/research-paper-review-a-comparison-between-arima-lstm-and-gru-for-time-series-forecasting-833a72b928cc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/10-useful-iphone-apps-apr-2023-8d40c265b9cf - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/hal24k-techblog/how-to-generate-neural-network-confidence-intervals-with-keras-e4c0b78ebbdf - 2023-10-06 - monthly - 1.0 - - - - https://ai.plainenglish.io/building-a-rag-based-conversational-chatbot-with-langflow-and-streamlit-784e2b77bcbe - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/abstractive-text-summarization-with-nlp-ec3924c0b1d5 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/top-nlp-libraries-to-use-2020-4f700cdb841f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/abstractive-summarization-using-pytorch-f5063e67510 - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/how-studying-languages-made-me-a-better-ux-writer-41e30a9e18b4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@mrconnor/ubiquant-market-prediction-6d1d69f01e1f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@s12deff/windows-privilege-escalation-with-updateprocthreadattribute-397bf1ec675e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@mrconnor/fundamental-algorithmic-trading-strategies-370706ad6717 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/arnoldcode-academy/10-beginner-programming-projects-in-c-or-javascript-e829b470ee2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@s12deff/impersonation-of-user-token-process-b84b46779800 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/10-things-i-stopped-doing-in-python-after-learning-from-the-pros-f8ea00922eb6 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/react-context-api-vs-redux-99d46b8ff2eb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@danielbuilescu/why-django-is-the-future-of-web-development-an-ex-google-engineers-perspective-e1c3a8928555 - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/python-probably-more-than-90-of-coders-are-missing-this-easy-trick-1f5e1c2d8561 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/a-comprehensive-comparison-of-express-and-fastapi-fbc1169a1095 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@giedrius.saulenas/8-reasons-why-your-niche-website-will-fail-1f98debd9a5b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/using-regression-with-correlated-data-5845a2eed3d2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/pinterest-marketing-tips/how-i-reached-from-0-to-5-million-monthly-views-on-pinterest-166e1b27f055 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bouncin-and-behavin-blogs/blogging-is-brutal-40b31b98dd0a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@pv.safronov/how-i-choose-the-next-leetcode-problem-to-solve-e0d9ae9bc0f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-bald-writer/seos-dark-secret-the-unspoken-rule-nobody-talks-about-1915aaf84a1b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-does-computer-understand-images-c1566d4537bf - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-easily-create-a-pdf-file-with-python-in-3-steps-a70faaf5bed5 - 2023-10-06 - monthly - 1.0 - - - - https://blog.prototypr.io/ux-design-is-not-going-to-save-your-career-a991dbfd7c81 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lydtech-consulting/kafka-streams-transactions-exactly-once-messaging-82194b50900a - 2023-10-06 - monthly - 1.0 - - - - https://attilavago.medium.com/the-first-truly-exciting-android-phone-that-even-apple-fans-should-consider-9ef205d678ae - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/my-top-adhd-self-care-tips-cdc0d35e5680 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/counterarts/is-it-art-because-its-in-a-gallery-1572051ecdb1 - 2023-10-06 - monthly - 1.0 - - - - https://thealexguides.medium.com/im-starting-revolution-read-this-before-it-s-too-late-13e0bab3b0a2 - 2023-10-06 - monthly - 1.0 - - - - https://blog.prototypr.io/still-cant-get-a-ux-job-give-up-a67e33865eba - 2023-10-06 - monthly - 1.0 - - - - https://thealexguides.medium.com/do-this-to-make-10k-m-in-next-12-months-your-last-chance-e6112186cf33 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tr1n1ty8/tryhackme-red-team-recon-writeup-f20e7685aaa - 2023-10-06 - monthly - 1.0 - - - - https://thealexguides.medium.com/i-made-30-397-in-31-days-copy-my-exact-system-6a71bd8205cb - 2023-10-06 - monthly - 1.0 - - - - https://blog.prototypr.io/list-of-success-metrics-for-your-ux-design-career-or-any-career-3e891908ee94 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/document-embedding-techniques-fed3e7a6a25d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/master-semantic-search-at-scale-index-millions-of-documents-with-lightning-fast-inference-times-fa395e4efd88 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@laraveltuts/laravel-send-welcome-email-after-registration-example-bc6e26a25ad5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/polyglot-files-a-hackers-best-friend-850bf812dd8a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/purple-team/embedding-backdoor-into-pdf-files-1781dfce62b1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/6-reasons-why-you-should-stop-using-jupyter-notebooks-7e0b9e0f0ca4 - 2023-10-06 - monthly - 1.0 - - - - https://futureforward23.com/how-to-retrieve-google-keyword-data-with-python-and-google-ads-api-231e1f0f99ba - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@s12deff/privilege-escalation-with-parent-pid-spoofing-f5056d6f436d - 2023-10-06 - monthly - 1.0 - - - - https://timdenning.medium.com/how-i-made-11-000-from-writing-in-30-days-9c55d1e69723 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@s12deff/parent-pid-spoofing-process-identifier-manipulation-c0b15b00a6c8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@s12deff/dll-execution-e2b3b60162f0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@s12deff/openprocess-syscall-malware-technique-1b2260f61369 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@s12deff/windows-privilege-escalation-via-fodhelper-exe-5d757f631a3d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/visualize-sqlite-data-with-power-bi-734856383643 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/c-constexpr-what-it-really-is-d6ca81023dcd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/how-to-upload-file-to-google-drive-from-linux-command-line-69668fbe4937 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/delightful-and-frustrating-ux-in-video-games-97fc2777cd9f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/nearest-neighbors-is-the-foundation-for-knn-optics-dbscan-hdbscan-smote-eeb10ea956e9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jchen001/8-python-libraries-for-time-series-analysis-with-code-examples-799e2467d3cd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/dataman-in-ai/anomaly-detection-with-pyod-b523fc47db9 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/implementing-k-nearest-neighbors-with-scikit-learn-9e4858e231ea - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/conquering-obsidian-overwhelm-by-following-my-own-advice-8c1b010dc0a7 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/named-parameters-in-typescript-e32c763d2b2e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/explain-any-models-with-the-shap-values-use-the-kernelexplainer-79de9464897a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/6-setapp-apps-that-can-simplify-your-plain-text-life-and-work-alongside-an-obsidian-vault-dabc9fde45c9 - 2023-10-06 - monthly - 1.0 - - - - https://miscellaneplans.medium.com/how-to-make-a-simple-health-log-in-obsidian-3e43cb0810c0 - 2023-10-06 - monthly - 1.0 - - - - https://miscellaneplans.medium.com/the-new-arc-browser-can-integrate-with-obsidian-and-streamline-your-workflow-b71e855fdfa1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@eric.likp/imbalanced-datasets-threshold-tuning-with-roc-and-pr-curves-de4eb7417e97 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@eric.likp/imbalanced-datasets-how-it-influences-the-model-over-under-sampling-6ffe720f82fa - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/causal-inference-962ae97cefda - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/causality-an-introduction-f8a3f6ac4c4a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/causal-discovery-6858f9af6dcb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@eric.likp/imbalanced-datasets-cost-sensitive-modeling-ensemble-metacost-adacost-391e6757420c - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/a-collection-of-docker-images-to-solve-all-your-debugging-needs-189973aae5c0 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/causal-effects-f30f962ffff3 - 2023-10-06 - monthly - 1.0 - - - - https://thealexguides.medium.com/i-built-7-5k-m-business-in-100-days-heres-how-1de78240afbb - 2023-10-06 - monthly - 1.0 - - - - https://thealexguides.medium.com/how-i-made-340-000-writing-online-at-age-18-8da98d711377 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/12-bad-practices-to-avoid-in-asp-net-core-api-controllers-3ba52a10954e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@abnoanmuniz/11-design-patterns-every-c-developer-should-know-88c0446c23ce - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/langchain-allow-llms-to-interact-with-your-code-55d5751aa8a2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/design-sprints-are-absurd-a462e6413b7e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/tf-term-frequency-idf-inverse-document-frequency-from-scratch-in-python-6c2b61b78558 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/2-regrets-of-a-55-years-old-retired-software-engineer-4c4fafc1bd2b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@artturi-jalli/did-my-chatgpt-blog-make-me-rich-dcc60d020f0d - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/the-6tools-that-changed-javascript-for-me-3ee1faf40585 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-crazy-coder/how-to-style-child-component-from-parent-in-angular-b829257faba2 - 2023-10-06 - monthly - 1.0 - - - - https://asimzaidi.medium.com/how-senior-engineers-build-react-apps-eeb75769ce08 - 2023-10-06 - monthly - 1.0 - - - - https://authors.cvsingh.com/are-you-blogging-for-fun-or-is-it-a-lucrative-business-6dca33c6e824 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/chatgpt-seo-how-to-build-massive-topical-authority-with-ai-403e4a7f89ef - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/exception-handling-in-python-8cc8f69f16ad - 2023-10-06 - monthly - 1.0 - - - - https://karol-mazurek95.medium.com/dante-guide-htb-a7dfd0387a9c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/all-machine-learning-models-explained-in-6-minutes-9fe30ff6776a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@usufni/8-years-of-experience-as-a-software-engineer-programmer-8e0be4569cb1 - 2023-10-06 - monthly - 1.0 - - - - https://nicolas-vandeput.medium.com/how-to-reduce-your-forecasting-error-by-35-112b2f580cf1 - 2023-10-06 - monthly - 1.0 - - - - https://nickwignall.medium.com/to-be-more-disciplined-stop-these-4-bad-habits-2917927ced4b - 2023-10-06 - monthly - 1.0 - - - - https://oyvindwashere.medium.com/joel-meyerowitz-fujifilm-recipe-228d42aeac98 - 2023-10-06 - monthly - 1.0 - - - - https://humanparts.medium.com/the-beauty-of-being-seen-50ef2505ece6 - 2023-10-06 - monthly - 1.0 - - - - https://asimzaidi.medium.com/2023s-top-5-senior-frontend-engineer-interview-questions-in-big-tech-a8fe13f687bb - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/step-by-step-approach-to-build-your-machine-learning-api-using-fast-api-21bd32f2bbdb - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-read-csv-file-using-pandas-ab1f5e7e7b58 - 2023-10-06 - monthly - 1.0 - - - - https://sayanc20002.medium.com/api-throttling-using-redis-and-fastapi-dockerized-98a50f9495c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-beginners-guide-to-llm-fine-tuning-4bae7d4da672 - 2023-10-06 - monthly - 1.0 - - - - https://asimzaidi.medium.com/how-senior-engineers-build-react-apps-deep-dive-1d23bd579dc7 - 2023-10-06 - monthly - 1.0 - - - - https://asimzaidi.medium.com/react-concepts-for-senior-engineers-3966b6505388 - 2023-10-06 - monthly - 1.0 - - - - https://asimzaidi.medium.com/advanced-typescript-techniques-for-senior-react-developers-558430593e1f - 2023-10-06 - monthly - 1.0 - - - - https://asimzaidi.medium.com/advanced-data-fetching-technique-in-react-for-senior-engineers-9d9b6f95d50b - 2023-10-06 - monthly - 1.0 - - - - https://asimzaidi.medium.com/discovering-react-and-typescript-a-guide-for-beginners-4278cf865463 - 2023-10-06 - monthly - 1.0 - - - - https://asimzaidi.medium.com/optimizing-react-performance-with-typescript-f76c3da0155e - 2023-10-06 - monthly - 1.0 - - - - https://asimzaidi.medium.com/how-to-use-react-hooks-with-typescript-7786c8d7b1a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/dataseries/an-easy-guide-to-choose-the-right-machine-learning-algorithm-for-your-task-b0f6d77aab75 - 2023-10-06 - monthly - 1.0 - - - - https://asimzaidi.medium.com/local-storage-when-to-avoid-it-c2d0f2133336 - 2023-10-06 - monthly - 1.0 - - - - https://asimzaidi.medium.com/advanced-typescript-techniques-for-senior-frontend-engineers-2429024ba93d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/4-python-packages-to-create-interactive-dashboards-d50861d1117e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ryanntk/choosing-the-right-embedding-model-a-guide-for-llm-applications-7a60180d28e3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/the-quiet-routine-that-produces-6-articles-a-week-alongside-my-9-5-454564089b1b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/kambr/kambr-tech-story-elasticsearch-error-429-data-too-large-a-beginners-mistake-d04e24696903 - 2023-10-06 - monthly - 1.0 - - - - https://soorajchandran.medium.com/introduction-to-higher-order-components-hoc-in-react-383c9343a3aa - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/conditional-probability-with-a-python-example-fd6f5937cd2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/towards-data-engineering/pyspark-write-a-dataframe-with-a-specific-filename-in-the-s3-bucket-a007008009d9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/the-4-home-gadgets-i-couldnt-live-without-7038462c2c7 - 2023-10-06 - monthly - 1.0 - - - - https://che-adrian.medium.com/make-your-nextcloud-ready-for-accessing-over-the-internet-9a17116a44ce - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/art-of-data-engineering/the-3-biggest-realisations-ive-had-about-data-engineering-5338cde2bfeb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/art-of-data-engineering/write-content-for-art-of-data-engineering-a-simple-three-step-guide-a35b1cbf30ed - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@yw124/how-top-consulting-firms-do-strategy-63cee42f54b8 - 2023-10-06 - monthly - 1.0 - - - - https://iamalexmathers.medium.com/11-things-i-do-to-help-me-write-articles-faster-than-95-of-people-ba7dd0df6847 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/practice-in-public/how-to-never-run-out-of-things-to-write-about-8803d8c8eb43 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/creators-hub/one-weird-trick-for-writing-a-first-draft-998ee9408663 - 2023-10-06 - monthly - 1.0 - - - - https://cryptozoa.com/60-gains-in-august-149-gains-in-4-months-elephant-token-keeps-moving-up-and-to-the-right-dfe056b512ae - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/ive-spent-16-733-hours-studying-personal-finance-here-are-the-9-most-important-money-rules-1dcd9612a61 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jacob.d.moore1/wizard-level-sql-5ca3e44d39c4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@godfreythegreat/how-you-should-be-spending-your-20s-2cdd7cd19dd9 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-simple-approach-to-hierarchical-time-series-forecasting-with-machine-learning-2e180d83966c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@godfreythegreat/3-lessons-to-improve-your-life-bab5c01b1c05 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/stationarity-in-time-series-a-comprehensive-guide-8beabe20d68 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@iamleonie/a-gentle-introduction-to-time-series-analysis-forecasting-a546bc712ac - 2023-10-06 - monthly - 1.0 - - - - https://thetaoist.online/why-believing-in-soulmates-ruined-my-life-9d482f2d6b5b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jcrenolds/article-tips-how-to-show-your-partner-how-much-you-love-them-b91c37903fbf - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/time-series-problems-simply-explained-as-fast-food-combo-meals-70c6eb9bdef - 2023-10-06 - monthly - 1.0 - - - - https://jemily187.medium.com/avoid-a-toxic-relationship-with-these-five-easy-strategies-45709b835a4b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/towards-data-engineering/data-wrangler-in-fabric-simplifying-data-prep-with-no-code-ab4fe7429b49 - 2023-10-06 - monthly - 1.0 - - - - https://themakingofamillionaire.com/why-you-need-to-start-spending-like-a-millionaire-38a0fe406b3d - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/javascript-memory-leaks-390957523a9e - 2023-10-06 - monthly - 1.0 - - - - https://baos.pub/how-talk-like-ted-transformed-my-public-speaking-5fae57594383 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ozlazarus/35-educational-youtube-channels-that-will-make-you-smarter-8809847075d6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/aws-solution-architect-professional-certificate-vs-microsoft-azure-solution-architect-expert-fb0c83ee820a - 2023-10-06 - monthly - 1.0 - - - - https://wire.insiderfinance.io/preserving-edges-when-smoothening-time-series-data-90f9d965132e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/i-tried-ios-17-here-are-10-incredible-features-apple-didnt-reveal-7aa6b7040e75 - 2023-10-06 - monthly - 1.0 - - - - https://thealexguides.medium.com/100-day-on-medium-in-30-days-copy-my-exact-system-cf789ec16931 - 2023-10-06 - monthly - 1.0 - - - - https://bretcameron.medium.com/building-my-first-headless-cms-what-i-wish-i-knew-at-the-start-1f3ef3a00bb8 - 2023-10-06 - monthly - 1.0 - - - - https://eand.co/three-things-we-have-to-do-to-fix-the-21st-century-549dd8290366 - 2023-10-06 - monthly - 1.0 - - - - https://eand.co/the-economics-of-life-and-the-economics-of-death-e101fce63dc8 - 2023-10-06 - monthly - 1.0 - - - - https://eand.co/the-old-world-just-died-heres-how-to-build-a-new-one-2556e907a80d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lessons-from-history/karolina-olsson-the-woman-who-slept-for-32-years-122dab0c668a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coinmonks/voting-on-a-blockchain-how-it-works-3bb41582f403 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lessons-from-history/8-reasons-why-you-wouldnt-survive-life-in-ancient-greece-5f783882a543 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lessons-from-history/a-day-in-the-life-of-a-concubine-in-imperial-china-b372c6b12a81 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/cities-should-use-machine-learning-to-detect-buildings-at-risk-of-fire-with-python-code-469358ffb304 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/using-artificial-intelligence-to-predict-the-spread-of-wildfires-with-python-30386e28162f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/analyzing-geospatial-data-with-python-7244c1b9e302 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/how-to-modularize-an-ios-app-a8d5bdab8398 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@shashikantpareek503/blockchain-voting-system-ccab63a45fa5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/how-to-create-an-anonymous-unhackable-voting-system-on-the-blockchain-ff6f932727b8 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/khipu-rapid-and-sustainable-software-creation-in-swift-using-engineering-and-science-principles-312a933cce57 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@bjereynolds/spatial-analysis-with-python-da3475f24807 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/rungo/secure-https-servers-in-go-a783008b36da - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-missing-piece-towards-any-scale-spatial-temporal-analytics-2677063d95e3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/10-best-practices-for-writing-clean-and-efficient-code-in-swift-4ac9c4217254 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-make-money-while-learning-data-science-in-2023-8f1e898d2db5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/jspoint/a-brief-overview-of-the-tcp-ip-model-ssl-tls-https-protocols-and-ssl-certificates-d5a6269fe29e - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/bentoml-vs-fastapi-the-best-ml-model-deployment-framework-and-why-its-bentoml-f0ed26cae88d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/c-sharp-progarmming/net-minimal-api-setup-a-c-web-server-in-2-minutes-e2077f69d3dd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/c-sharp-progarmming/c-how-to-send-custom-objects-and-properties-to-application-insights-5061216cdfcb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/c-sharp-progarmming/the-hidden-powers-of-c-typing-4a38306660b7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/basic-linux-commands-to-check-hardware-and-system-information-62a4436d40db - 2023-10-06 - monthly - 1.0 - - - - https://beingpax.medium.com/obsidian-daily-notes-template-task-edition-9072a8b7d8be - 2023-10-06 - monthly - 1.0 - - - - https://rajathithanrajasekar.medium.com/google-cloud-public-gke-cluster-egress-traffic-via-static-ip-addresses-for-ip-whitelisting-1cb024228e7e - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/dont-wait-code-interpreter-for-chatgpt-use-this-instead-5e9923016597 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/spatial-data-science/julia-language-for-geospatial-data-science-3e68c170483c - 2023-10-06 - monthly - 1.0 - - - - https://alanliu96.medium.com/hosting-a-free-website-forever-on-google-cloud-platform-e0fb09140258 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/did-you-know-html-thinks-chuck-norris-is-a-color-9f67edf4c34 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-productive-novelist/how-to-consistently-write-3500-4000-words-per-hour-db59505859db - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/sql-questions-summary-df90bfe4c9c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/machine-learning-with-expert-models-a-primer-6c74585f223f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/agents-and-robots/the-bitter-truth-python-3-11-vs-cython-vs-c-performance-for-simulations-babc85cdfef5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/spatial-data-science/machine-learning-of-spatial-data-a-critical-review-88b1f9dcf857 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/geopandas-hands-on-building-geospatial-machine-learning-pipeline-9ea8ae276a15 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/ai-geospatial-wildfire-risk-prediction-8c6b1d415eb4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@devathon_/nodejs-vs-golang-in-2020-179db4629d51 - 2023-10-06 - monthly - 1.0 - - - - https://filia-aleks.medium.com/aws-lambda-battle-2021-performance-comparison-for-all-languages-c1b441005fd1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@emin_bilgic/fastest-runtime-for-aws-lambda-functions-b068b102bc5e - 2023-10-06 - monthly - 1.0 - - - - https://filia-aleks.medium.com/graalvm-aws-lambda-or-solving-java-cold-start-problem-2655eeee98c6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jsquared7/python-v-s-javascript-which-is-better-for-webscraping-e689bb212c39 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/python-or-node-js-which-is-better-to-learn-1f9320497f9a - 2023-10-06 - monthly - 1.0 - - - - https://swathisprasad.medium.com/amazon-sqs-integration-with-spring-boot-3-d50653fec972 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/web-scraping-society/web-scraping-with-python-vs-javascript-2cb7268a5caa - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/react-native-vs-flutter-2023-a84d2129bab5 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/kafka-docker-python-408baf0e1088 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@s12deff/windows-privilege-escalation-malware-technique-714e0fe256ab - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/stackanatomy/debugging-techniques-for-javascript-developers-efda3f08f007 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/airflow-from-zero-and-how-to-install-airflow-in-docker-fb5c4a0f992b - 2023-10-06 - monthly - 1.0 - - - - https://codestax.medium.com/aws-timestream-introduction-eafab912f0b0 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/setting-up-apache-airflow-with-docker-compose-in-5-minutes-56a1110f4122 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@s12deff/inject-malicious-dll-into-winlogon-process-using-admin2sys-13d6805b0280 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@s12deff/steal-uac-password-from-file-explorer-c1ff364ba08f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@s12deff/malware-engineering-with-go-5fc5e4bf40c7 - 2023-10-06 - monthly - 1.0 - - - - https://thetechtutor.medium.com/stop-giving-away-your-data-5fb0a0ff1b39 - 2023-10-06 - monthly - 1.0 - - - - https://thetechtutor.medium.com/how-to-set-up-a-secure-phone-c8f3ad090871 - 2023-10-06 - monthly - 1.0 - - - - https://canadiandataguy.medium.com/databricks-workspace-best-practices-a-checklist-for-both-beginners-and-advanced-users-fd7840b3d340 - 2023-10-06 - monthly - 1.0 - - - - https://citw.medium.com/keep-your-bundle-size-under-control-with-import-cost-vscode-extension-5d476b3c5a76 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/ceo-11-developers-resigned-in-a-day-and-destroyed-me-53d4ee71d64f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/path-to-succeed-in-machine-learning-c751f8182348 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/artificialis/how-to-extract-text-from-any-image-with-deep-learning-e834d5a9863e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-research-nest/applied-machine-learning-part-1-40578469a934 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/cloud-native-the-gathering/whats-the-best-ide-for-developing-in-rust-5087d46006f5 - 2023-10-06 - monthly - 1.0 - - - - https://anthony-moore.medium.com/why-you-shouldnt-take-advice-from-almost-anyone-9446100a3695 - 2023-10-06 - monthly - 1.0 - - - - https://asterling.medium.com/you-may-be-able-to-improve-food-addiction-by-healing-your-microbiome-d805758c1ce6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/apple-central/finding-the-best-note-taking-app-supporting-markdown-138b65ecc863 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/apple-central/most-useful-utilities-for-macos-ca0185fc974c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-stata-guide/stata-graphs-get-those-fonts-right-c38d35625142 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/8-surprisingly-useful-macos-utilities-7cdc40af26f6 - 2023-10-06 - monthly - 1.0 - - - - https://fongyang.medium.com/more-super-awesome-macos-apps-f1789f25fddd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/nightingale/choosing-a-font-for-your-data-visualization-2ed37afea637 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/setup-ssh-server-on-windows-10-11-34c7f096eaff - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mind-cafe/the-most-powerful-ideas-in-life-ive-found-top-0-1-9943fbf59fa9 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/monitoring-machine-learning-models-in-production-why-and-how-13d07a5ff0c6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ramizsami/webgis-development-in-2023-a-guide-to-the-tools-and-technologies-i-use-for-building-advanced-9bd3277b10dd - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-framework-for-building-a-production-ready-feature-engineering-pipeline-f0b29609b20f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/react-in-the-real-world/10-clever-custom-react-hooks-you-need-to-know-about-574746a3641d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/react-in-the-real-world/the-real-difference-between-usememo-and-memo-in-react-743c4cd3113a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/mlops-at-home-part1-4c60db29d4a2 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/unlocking-mlops-using-airflow-a-comprehensive-guide-to-ml-system-orchestration-880aa9be8cff - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@rubentak/unleashing-the-power-of-intelligent-chatbots-with-gpt-4-and-vector-databases-a-step-by-step-8027e2ce9e78 - 2023-10-06 - monthly - 1.0 - - - - https://artificialcorner.com/polars-the-super-fast-dataframe-library-for-python-goodbye-pandas-85156e84337f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-guide-to-building-effective-training-pipelines-for-maximum-results-6fdaef594cee - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@s.illesinghe/how-to-join-or-merge-data-in-polars-8f87cd708e1b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/unlock-the-secret-to-efficient-batch-prediction-pipelines-using-python-a-feature-store-and-gcs-17a1462ca489 - 2023-10-06 - monthly - 1.0 - - - - https://pkmjournal.com/heptabase-your-new-ally-in-language-acquisition-719aee532987 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mind-cafe/why-we-struggle-with-the-efficiency-mindset-5054aeb6c8da - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/implement-android-tablayout-in-jetpack-compose-e61c113add79 - 2023-10-06 - monthly - 1.0 - - - - https://jacintowong.medium.com/becoming-a-senior-developer-in-4-months-eaac7dd06011 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/hacking-java-deserialization-7625c8450334 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/why-is-emirates-winning-when-other-airlines-are-going-bankrupt-81d103ffc80b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/firebase-tips-tricks/how-to-drastically-reduce-the-number-of-reads-when-no-documents-are-changed-in-firestore-8760e2f25e9e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@func25/logging-best-practices-proven-techniques-for-services-b772eaedbe3f - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/how-we-reduced-our-firestore-cost-by-more-than-70-193fd3d6f8ca - 2023-10-06 - monthly - 1.0 - - - - https://bhaveshpraveen.medium.com/implementing-circuit-breaker-pattern-from-scratch-in-python-714100cdf90b - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-to-create-a-whitelist-nft-collection-using-the-merkle-tree-dc0b34c412f0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/requestly/learn-bypass-content-security-policy-using-http-response-header-757228be14df - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/keyword-extraction-a-benchmark-of-7-algorithms-in-python-8a905326d93f - 2023-10-06 - monthly - 1.0 - - - - https://soumenatta.medium.com/nonlinear-optimization-made-easy-with-python-ca64c2826d83 - 2023-10-06 - monthly - 1.0 - - - - https://stevenpcurtis.medium.com/make-all-your-swift-uikit-views-a-uitableview-70dd98bbb93e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-extract-relevant-keywords-with-keybert-6e7b3cf889ae - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/semantic-search-73fa1177548f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/analyzing-my-whatsapp-database-using-sql-and-redash-5ef9bd6a0b0 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/deceptive-patterns-what-can-designers-learn-from-amazon-getting-sued-c6516aca7af0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tsecretdeveloper/where-do-old-programmers-go-e433dc387604 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/native-apps-are-dead-189a4b9459e9 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/18-powerful-javascript-skills-for-senior-engineers-17c51990997e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tsecretdeveloper/software-development-needs-women-urgently-acacf7c45141 - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/become-an-expert-backend-projects-that-define-senior-developers-61ac76e17d98 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-techlife/an-overview-of-semantic-search-knowledge-graphs-vector-databases-27588925f33f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@iamprovidence/backend-side-architecture-evolution-n-layered-ddd-hexagon-onion-clean-architecture-643d72444ce4 - 2023-10-06 - monthly - 1.0 - - - - https://taimurcloud123.medium.com/cyber-security-is-changing-are-you-ready-863bb28a8234 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/attention-is-all-you-need-1-3b960b7b6500 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/what-is-microsoft-copilot-and-how-will-it-integrate-with-power-bi-61581b4e28ce - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/4-ways-of-adding-external-js-files-in-reactjs-823f85de3668 - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/what-is-the-best-ide-for-developing-and-programming-in-lua-47bff22f01b9 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/7-visualizations-with-python-to-express-changes-in-rank-over-time-71c1f11d7e4b - 2023-10-06 - monthly - 1.0 - - - - https://pedrodelcarpio.medium.com/how-to-solve-bayesian-problems-d071e17c0487 - 2023-10-06 - monthly - 1.0 - - - - https://eng.lyft.com/building-a-large-scale-unsupervised-model-anomaly-detection-system-part-1-aca4766a823c - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/boost-your-data-science-with-ranking-in-python-and-pandas-911080128e1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/silibrain/using-passport-bcrypt-for-full-stack-app-user-authentication-fe30a013604e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-one-page-data-and-analytics-templates-f53b949be84 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/understanding-probability-distributions-using-python-9eca9c1d9d38 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/10-quick-pandas-tricks-to-energize-your-analytics-project-2333a144946b - 2023-10-06 - monthly - 1.0 - - - - https://nickwignall.medium.com/4-core-fears-holding-you-back-9d8c0ef2bcc7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/makerandmoxie/9-non-branding-books-about-branding-that-every-creative-should-read-923f3c21c486 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/concept-bureau-insights/how-brands-bridge-the-identity-gap-61c8fe0ff253 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@TripleJas/how-to-think-like-a-brand-strategist-4b5b5ec128c5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/concept-bureau-insights/strong-brands-ask-weak-brands-answer-9290584bf6bb - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/the-single-most-important-thing-you-need-to-know-about-required-optional-input-fields-96e906db544d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/concept-bureau-insights/how-to-find-the-perfect-brand-name-being-original-without-being-stupid-f86992f01c37 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/concept-bureau-insights/two-questions-at-the-heart-of-every-great-brand-strategy-c237180c3aa4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/concept-bureau-insights/the-brand-perception-queries-f2bcaa37b9fa - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/concept-bureau-insights/the-cognitive-dissonance-hiding-behind-strong-brands-fa99341175eb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/concept-bureau-insights/the-16-rules-of-brand-strategy-6a8d4a0cbad0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/concept-bureau-insights/strategic-brand-messaging-5-truths-a-framework-c33831f0504c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/concept-bureau-insights/these-3-brand-languages-will-change-the-playing-field-for-your-company-98e4b55b21b9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/concept-bureau-insights/how-to-tell-a-story-people-will-never-forget-e4ec3d021945 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/concept-bureau-insights/the-14-rules-of-identity-572cb6f39342 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@funshorfelix/brand-strategy-for-early-stage-startups-3a8c970859ba - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@frncsfranca/how-to-add-value-to-your-brand-through-storytelling-1edcb22cb3f - 2023-10-06 - monthly - 1.0 - - - - https://knamaky.medium.com/ultimate-guide-brand-strategy-branding-101-6fcb52042e6c - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/branding-for-startups-build-a-brand-before-its-too-late-b856f2a06a40 - 2023-10-06 - monthly - 1.0 - - - - https://marcosantonocito.medium.com/fixing-the-gh001-large-files-detected-you-may-want-to-try-git-large-file-storage-43336b983272 - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/8-problems-every-java-developer-knows-4f65339e0c00 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/when-should-you-fine-tune-llms-2dddc09a404a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/ochrona/preventing-dependency-confusion-attacks-in-python-fa6058ac972f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/8-ml-ai-projects-to-make-your-portfolio-stand-out-bfc5be94e063 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/feedium/how-to-medium-a-complete-beginners-guide-to-the-writing-platform-3ce8af8e95cc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/a-taste-for-life/how-do-you-supply-nutrients-to-your-writing-muscle-for-better-flow-b7bf23730658 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/building-basic-react-authentication-e20a574d5e71 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/attention-is-all-you-need-2-5a5f4435bbf5 - 2023-10-06 - monthly - 1.0 - - - - https://gen.medium.com/i-lived-through-collapse-america-is-already-there-ba1e4b54c5fc - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/music-genre-classification-with-python-c714d032f0d8 - 2023-10-06 - monthly - 1.0 - - - - https://digitalcurmudgeon.medium.com/how-to-do-video-conferencing-with-professional-video-gear-29f14bc9d9d4 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/perfect-artboard-size-c267939c5843 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/tensorflow-model-tracking-with-mlflow-e9de29c8e542 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tobias.streng/net-performance-series-2-newtonsoft-vs-system-text-json-2bf43e037db0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/age-of-awareness/this-3-minute-subconscious-mind-exercise-will-change-your-life-d663772907d6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/17-things-i-wish-id-done-earlier-as-a-data-engineer-d1aa2e4f0694 - 2023-10-06 - monthly - 1.0 - - - - https://matthewsalminen.medium.com/ingest-data-with-databricks-autoloader-7360c16b8608 - 2023-10-06 - monthly - 1.0 - - - - https://chamanyadav.medium.com/how-to-become-mentally-strong-6f75f625b181 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/optimizing-hyperparameters-in-random-forest-classification-ec7741f9d3f6 - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/design-system-documentation-5eea9cebde8e - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/building-a-better-dungeon-level-b04d133a6ca - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/how-to-build-a-dungeon-crawler-game-with-javascript-57189bdd9f08 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/5-python-libraries-for-better-console-output-b2494b587855 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/zalopay-engineering/buildingdocker-grpc-gateway-e2efbdcfe5c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@macklinfluehr/word-expander-42649e315222 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@pkmbeth/why-i-use-notion-and-capacities-72cdfab5aafc - 2023-10-06 - monthly - 1.0 - - - - https://eand.co/how-we-got-conditioned-into-accepting-dystopia-f472f335d34d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@pkmbeth/capacities-vs-obsidian-part-3-writing-and-linking-3fa5557f4bed - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/swiftui-why-you-need-anyview-99b1c48794a4 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/how-to-unsubscribe-from-all-youtube-channels-at-once-d516b3669325 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@professor5775/from-bodybuilder-to-billionaire-how-gymshark-founder-ben-francis-built-a-sportswear-unicorn-89b9554ad4e9 - 2023-10-06 - monthly - 1.0 - - - - https://alexnovicov.medium.com/three-marketing-lessons-from-gymshark-94bcf9df8429 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/up-and-running-with-milvus-2466161e8b1f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ivangfr/implementing-social-login-in-a-spring-boot-and-react-app-6ce073c9983c - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/15-tools-to-increase-your-productivity-as-a-ui-ux-designer-in-2020-4ee83b824ade - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-basics-of-natural-language-processing-25002d093eb9 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/natural-language-processing-a-beginners-guide-part-i-1a5880cc3bdc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/cache-and-kaniko-2cfb766925af - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/multi-stage-docker-layer-caching-using-kaniko-cloud-build-7e46395fb2c2 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/introduction-to-natural-language-processing-nlp-323cc007df3d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-detailed-novice-introduction-to-natural-language-processing-nlp-90b7be1b7e54 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/natural-language-processing-nlp-for-beginners-6d19f3eedfea - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/data-science-anti-patterns-you-should-know-1d8711eef72d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-speed-up-data-processing-in-pandas-a272d3485b24 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ameersami/set-up-an-integration-deployment-pipeline-using-jenkins-portainer-traefik-docker-66c5f3d1130a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/techtofreedom/5-uses-of-sympy-writing-python-code-like-a-mathematician-67dafc6f20cf - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@shekharvrm47/how-i-improved-my-python-code-performance-by-371-ea6209b9ab61 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/mathematical-optimization-heuristics-every-data-scientist-should-know-b26de0bd43e6 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/ml-basics-part-1-regression-a-gateway-method-to-machine-learning-36d54d233907 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-right-way-to-build-an-api-with-python-cd08ab285f8f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/evaluation-of-machine-learning-classifiers-3912e7f5cf74 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/ml-basics-part-3-artificial-neural-networks-879851bcd217 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/ml-basics-part-4-decision-trees-cc37d07137b2 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/diffusion-models-made-easy-8414298ce4da - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@keshavtibrewal2/support-vector-machines-svm-an-intuitive-explanation-b084d6238106 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@Coursesteach/deep-learning-part-1-86757cf5a0c3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/mastering-logistic-regression-3e502686f0ae - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@MrBam44/activation-functions-in-deep-learning-models-how-to-choose-3ad007eaf998 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/probabilistic-ml-with-quantile-matching-an-example-with-python-c367eee85f18 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-be-an-effective-data-science-manager-dbdea96b783c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/local-vs-global-forecasting-what-you-need-to-know-1cc29e66cae0 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/forecast-multiple-horizons-an-example-with-weather-data-8d5fa4321e07 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-easily-draw-neural-network-architecture-diagrams-a6b6138ed875 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bain-inside-advanced-analytics/conformal-prediction-an-easy-way-to-estimate-prediction-intervals-c0de34c47494 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bain-inside-advanced-analytics/confidence-intervals-for-the-real-world-and-real-people-fe08ea903855 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/3-ways-to-deal-with-heteroskedasticity-in-time-series-831f6499e688 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/low-code-for-advanced-data-science/conformal-prediction-for-regression-1ba24f1442df - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/low-code-for-advanced-data-science/conformal-prediction-theory-explained-14a35226df80 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/low-code-for-advanced-data-science/how-to-use-the-power-of-machine-learning-to-predict-diabetes-aeb77296cb21 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@joachimiak.krzysztof/expectile-regression-an-alternative-for-quantile-regression-48298fb6eaa0 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/shap-for-feature-selection-and-hyperparameter-tuning-a330ec0ea104 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/time2vec-for-time-series-features-encoding-a03a4f3f937e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/prediction-intervals-for-any-regression-model-306930d5ad9a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/bayesian-logistic-regression-53df017ba90f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/14-requirements-to-make-your-machine-learning-project-a-success-part-i-80c288be503d - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/how-i-built-a-video-recommendation-system-using-large-language-models-and-vector-database-5becc67f776e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/langchain-retrievers-understanding-how-they-work-under-the-hood-3580d004e078 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/14-requirements-to-make-your-machine-learning-project-a-success-part-ii-5a89600a7a16 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-choose-a-forecasting-model-fa9c4a2e75b8 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/experiments-on-returns-on-investment-34a1953c5f16 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/statistics-bootcamp-8-a-tale-of-two-means-ecec013ae414 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-bayesian-bootstrap-6ca4a1d45148 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/understanding-meta-learners-8a9c1e340832 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/statistics-lecture-1-227f934924d9 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/statistics-bootcamp-2-center-variation-and-position-9de00a231e80 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/statistics-bootcamp-3-probably-probability-588a2640fc13 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/statistics-bootcamp-4-baes-coins-fish-goats-and-cars-e31e9c3d6cbd - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/statistics-bootcamp-5-what-is-normal-dd7ca037d37d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/statistics-bootcamp-6-building-our-confidence-ba7be17c008c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/statistics-bootcamp-7-balancing-type-i-and-ii-errors-848a699a65a8 - 2023-10-06 - monthly - 1.0 - - - - https://blog.prototypr.io/figma-variables-ultimate-guide-47cef3dc3ce7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/c-sharp-progarmming/10-undiscovered-tools-for-net-developers-dc08a0ec01d - 2023-10-06 - monthly - 1.0 - - - - https://chughesbabb-32154.medium.com/i-took-up-karate-in-my-late-40s-7f59caa31dde - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/c-sharp-progarmming/net-7-and-redis-d9a9d33bef4f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mind-cafe/12-ideas-you-can-steal-to-make-the-next-6-months-a-period-of-enormous-growth-18925c94bd0c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/understanding-reference-counting-in-python-3894b71b5611 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/fast-load-data-to-sql-from-python-2d67aea946c0 - 2023-10-06 - monthly - 1.0 - - - - https://smokebacon.medium.com/guide-and-best-practice-on-using-variables-for-design-system-in-figma-38b6a5d01aa4 - 2023-10-06 - monthly - 1.0 - - - - https://dudadelcourt.medium.com/how-to-organize-your-figma-file-3110444e16ee - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/uncle-bobs-advice-on-stability-and-abstraction-b96ea8623e97 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coinmonks/how-to-build-a-crypto-trading-bot-with-binance-and-python-connect-to-binance-9e69bb320c24 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coinmonks/how-to-build-a-crypto-trading-bot-with-binance-and-python-putting-it-all-together-7d21a843f296 - 2023-10-06 - monthly - 1.0 - - - - https://lukasoppermann.medium.com/w3c-design-tokens-with-style-dictionary-f7ff5f2ba98c - 2023-10-06 - monthly - 1.0 - - - - https://guese-justin.medium.com/using-sklearns-decision-trees-to-form-simple-trading-decisions-for-trading-bots-5da2f2123744 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@subhashishc/discover-the-secret-to-automated-profits-in-cryptocurrency-trading-16aaa568ddd0 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/9-questions-great-bosses-ask-themselves-140d848e8368 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/eightshapes-llc/naming-tokens-in-design-systems-9e86c7444676 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/redirect-refresh-and-access-the-url-of-the-current-page-in-javascript-3d9160e8317e - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/learn-ui-design-series-alignment-12dc103931ec - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/machine-learning-is-getting-easier-software-engineering-is-still-hard-d4e8320bc046 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/5-data-processing-techniques-for-data-science-beginners-cf087af955f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jasmeet.dotnettricks/the-data-processing-cycle-a-comprehensive-guide-to-data-management-5b79f977521e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-checklist-for-data-pre-processing-before-you-build-your-machine-learning-model-91d2d04dc53f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/data-pre-processing-techniques-you-should-know-8954662716d6 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/heres-how-the-cpu-handles-if-statements-and-branching-95cfd42af9c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/datascience-semantics3/using-ai-to-automate-web-crawling-69683b99aa3e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@vinciabhinav7/whats-tsdb-part-2-concepts-and-example-ce12a4c8be9f - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/10-principles-for-typography-usage-in-ui-design-a8f038f43ffd - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/python-concurrency-multiprocessing-327c02544a5a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@lee.harding/inexpensive-and-reliable-redirects-in-aws-83b17ddd06f8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@productivitybee/mac-users-are-going-crazy-over-these-9-game-changing-file-media-management-apps-eca0e696f01d - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/neovim-lsp-and-dap-using-lua-3fb24610ac9f - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/neovim-for-beginners-javascript-typescript-debugging-bd0fc8e16657 - 2023-10-06 - monthly - 1.0 - - - - https://code.likeagirl.io/linux-ubuntu-installation-steps-on-old-macbook-air-mid-2012-2ba85d397239 - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/neovim-for-beginners-lua-autocmd-and-keymap-functions-3bdfe0bebe42 - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/neovim-for-beginners-init-lua-45ff91f741cb - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/neovim-for-beginners-plugin-management-59a8253a655f - 2023-10-06 - monthly - 1.0 - - - - https://wlockett.medium.com/a-40-year-old-us-missile-system-just-destroyed-putins-ultimate-weapon-57cbfa32ec5a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ExploitTheEdge/use-a-raspberry-pi-to-make-passive-income-e559c26867e8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@subhashishc/how-to-know-exactly-what-the-whales-are-buying-a9cbb80bfb4c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/introduction-to-hierarchical-time-series-forecasting-part-i-88a116f2e2 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/introduction-to-hierarchical-time-series-forecasting-part-ii-e73dfd3de86b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-automatically-extract-and-label-data-points-on-a-seaborn-kde-plot-52a576238301 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/3d-sars-cov-2-protein-visualization-with-biopython-7c4f1955b1db - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/its-2023-please-stop-using-for-conditional-rendering-in-react-b588a09ebb17 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/dotnet-hub/clean-architecture-with-dotnet-and-dotnet-core-aspnetcore-overview-introduction-getting-started-ec922e53bb97 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/why-grpc-is-the-future-of-software-architecture-baa68452a093 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/why-microservices-is-not-always-the-best-choice-df5b3b10babb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/a-journey-with-go/go-goroutine-os-thread-and-cpu-management-2f5a5eaf518a - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/neovim-dap-enhanced-ebc730ff498b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/blankpage/how-to-structure-your-articles-using-six-common-writing-patterns-a51216dbc3cf - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/big-data-blog/filtragem-avan%C3%A7ada-de-https-com-squid-proxy-e26d82b61e19 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/obsidian-unleashed-community-plugins-series-ep-1-2302e9b62c8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/what-obsidian-is-me-think-about-part-2-a02537a381e5 - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/repository-pattern-is-insane-if-you-know-how-to-use-it-properly-python-88a05f03a50c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/enhance-your-obsidian-canvas-448a4f465d4 - 2023-10-06 - monthly - 1.0 - - - - https://hamza-senhajirhazi.medium.com/how-to-handle-schema-multi-tennancy-with-python-flask-sqlalchemy-postgres-7000dda10749 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ash_computational_qm/reactpy-building-dynamic-frontend-applications-with-python-de92d9e95bce - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/all-about-data-encoding-for-quantum-machine-learning-2a7344b1dfef - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@kat.callahan/i-wont-be-reading-her-books-again-d550a6591f20 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/sql-on-pandas-usign-duckdb-f7cd238a0a5a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/borderless-journal/5-crucial-things-we-had-to-start-doing-when-we-got-a-puppy-fd412ef0022f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/pet-talks/kickbacks-incentives-ce87fb06bd48 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/crows-feet/things-im-too-old-for-ed5debaf3b0f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@rajputgajanan50/the-walrus-operator-in-python-90532f6ccd8a - 2023-10-06 - monthly - 1.0 - - - - https://blog.det.life/dont-write-another-line-of-code-until-you-see-these-pydantic-v2-breakthrough-features-5cdc65e6b448 - 2023-10-06 - monthly - 1.0 - - - - https://bettermarketing.pub/5-marketing-tips-i-learned-from-working-in-porn-5b38b414f3cc - 2023-10-06 - monthly - 1.0 - - - - https://entreprenal.com/google-quietly-introduced-an-ai-product-that-could-kill-the-schooling-system-we-know-b4c767a45e6f - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/nsql-first-ever-fully-opensource-sql-foundation-model-f7b501d91ca4 - 2023-10-06 - monthly - 1.0 - - - - https://bettermarketing.pub/how-to-transform-generic-chatgpt-outputs-into-quality-content-with-seed-prompting-ac3f1a0ea496 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/on-reflection/one-little-old-man-gifted-me-a-miracle-and-didnt-even-know-it-186c9f78a97b - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/how-we-reduced-our-annual-server-costs-by-80-from-1m-to-200k-by-moving-away-from-aws-2b98cbd21b46 - 2023-10-06 - monthly - 1.0 - - - - https://muddyum.net/my-boss-thinks-im-a-morning-person-lol-here-s-why-8029b83ba5dd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@fareedkhandev/python-programming-in-microsoft-excel-2c88df7633df - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/latinxinai/how-i-deployed-a-machine-learning-model-for-the-first-time-b82b9ea831e0 - 2023-10-06 - monthly - 1.0 - - - - https://coinsbench.com/chat-with-your-databases-using-langchain-bb7d31ed2e76 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/pandas-spark-and-polars-when-to-use-which-f4e85d909c6f - 2023-10-06 - monthly - 1.0 - - - - https://blog.det.life/10-things-i-learned-from-reading-fundamentals-of-data-engineering-eea5dc8e5fb7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ThatShelbs/counterfactual-inference-using-time-series-data-83c0ef8f40a0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/time-series-forecasting-with-xgboost-and-lightgbm-predicting-energy-consumption-with-lag-features-dbf69970a90f - 2023-10-06 - monthly - 1.0 - - - - https://blog.bitsrc.io/difference-between-middleware-interceptor-and-filter-in-the-nest-js-ecosystem-c71fb3ba32f6 - 2023-10-06 - monthly - 1.0 - - - - https://www.cantorsparadise.com/how-einsteins-theory-guides-gps-navigation-4f9bc2d8bb23 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bug-bounty-hunter/bug-bounty-hacking-with-subfinder-the-right-way-2aa4197e0067 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@maheshhkanagavell/p-value-fdf3c6ec09ee - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-to-display-multiple-android-bottom-sheets-in-jetpack-compose-6c46e3536ab - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/hypothesis-testing-in-real-life-47f42420b1f7 - 2023-10-06 - monthly - 1.0 - - - - https://wire.insiderfinance.io/introduction-to-quant-investing-with-python-c215d1014a25 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/docker-compose-made-easy-with-elasticsearch-and-kibana-4cb4110a80dd - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/practical-guide-for-anomaly-detection-in-time-series-with-python-d4847d6c099f - 2023-10-06 - monthly - 1.0 - - - - https://tonylixu.medium.com/devops-in-k8s-ingress-part-four-c0c17b9e781e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ignacio.de.gregorio.noblejas/meta-is-doing-gods-work-releases-shockingly-good-coding-models-to-the-world-848975e7d1f0 - 2023-10-06 - monthly - 1.0 - - - - https://miqbalrp.medium.com/exploring-autoarima-in-python-for-multiple-time-series-forecasting-2f3004ba5a49 - 2023-10-06 - monthly - 1.0 - - - - https://australianapplenews.medium.com/apple-notes-is-on-the-cusp-of-sherlocking-many-note-taking-apps-d5b8689a9f81 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@prathamesh.gadekar/seaborn-charts-that-every-data-scientist-knows-7274ac8bc773 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/10-essential-statistical-significance-tests-explained-in-r-f455f56abe91 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/200-python-and-data-science-tips-covering-pandas-numpy-ml-basics-sklearn-jupyter-and-more-b657f039e89e - 2023-10-06 - monthly - 1.0 - - - - https://jefago.medium.com/why-you-should-send-a-weekly-summary-email-1c556149ed42 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@codingandcoffee/how-i-developed-a-trading-system-as-a-software-engineer-with-no-formal-finance-background-9728bc884af8 - 2023-10-06 - monthly - 1.0 - - - - https://hopeness.medium.com/master-the-linux-nslookup-command-a-comprehensive-guide-f5743f8ab54c - 2023-10-06 - monthly - 1.0 - - - - https://keith-mcnulty.medium.com/the-era-of-the-mathematician-has-arrived-251d189fdaa1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@lekileki/customer-churn-predictions-using-classification-analysis-e0f0a038f2fd - 2023-10-06 - monthly - 1.0 - - - - https://doctorow.medium.com/big-tech-cant-stop-telling-on-itself-f7f0eb6d215a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/japonica-publication/the-most-underrated-skill-you-need-for-fluency-in-the-japanese-language-99e26333a612 - 2023-10-06 - monthly - 1.0 - - - - https://tomaszs2.medium.com/25-awesome-open-source-end-user-apps-ep-2-efdde55fbabf - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/innerhtml-vs-dom-speed-i-was-wrong-and-right-41d0e06f2b3b - 2023-10-06 - monthly - 1.0 - - - - https://tomaszs2.medium.com/25-awesome-open-source-end-uapps-948bb8aef27 - 2023-10-06 - monthly - 1.0 - - - - https://tomaszs2.medium.com/top-10-programmers-to-follow-on-threads-vol-1-9996a42abc02 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coinmonks/voting-on-a-blockchain-solidity-contract-codes-explained-c677996d94f2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/japonica-publication/i-shin-den-shin-why-the-japanese-value-communicating-without-words-3ca329684714 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/pet-talks/i-hate-to-say-i-told-you-so-53f71a3172dc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/age-of-empathy/a-song-about-jesus-saved-me-from-a-childhood-of-hell-2b0bcf734f51 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mystic-minds/co-create-with-the-universe-tarot-pick-a-card-379cfc3e0853 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-narrative-arc/new-school-new-home-new-country-once-again-bef148ee57f0 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/introspecting-databases-with-airflow-and-sqlalchemy-6ef18d85acce - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/node-js-default-memory-settings-3c0fe8a9ba1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/flutter-community/nfc-with-flutter-f8c3515cb0e0 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/write-markdown-latex-in-the-jupyter-notebook-10985edb91fd - 2023-10-06 - monthly - 1.0 - - - - https://jstanier.medium.com/scaling-how-we-did-code-review-bac739790183 - 2023-10-06 - monthly - 1.0 - - - - https://gvasanka.medium.com/extract-multiple-variables-with-jmeter-json-extractor-aec1e0e2b332 - 2023-10-06 - monthly - 1.0 - - - - https://himnickson.medium.com/custom-dynamic-highlight-panel-in-salesforce-lightning-9cf121915ed5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/dependency-injection-using-google-guice-framework-97c3ca5a5d82 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/deployment-diagrams-chatgpt-and-eraser-io-diagramgpt-f3d0a153f180 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/angular-spring-boot-kafka-how-to-stream-realtime-data-the-reactive-way-510a0f1e5881 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/prometheus-push-gateway-and-python-f754885db1cb - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-to-use-uikit-extensions-with-ios-storyboards-3a20fdccaac7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@4yourheart/the-best-productivity-apps-in-2023-bb6ec17031be - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/my-journey-to-pass-the-databricks-certified-machine-learning-professional-exam-84567a5d476e - 2023-10-06 - monthly - 1.0 - - - - https://proandroiddev.com/launchedeffect-vs-remembercoroutinescope-in-jetpack-compose-24b5c91106ac - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tenzin_ngodup/simple-text-classification-using-random-forest-fe230be1e857 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@estebanthi/use-obsidian-as-a-bookmark-manager-with-raindrop-3df00f4a0b70 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/a-complete-up-to-date-guide-to-obsidian-june-2023-17f2684be898 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/my-obsidian-setup-mobile-capture-2-93a57b576cc7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/my-obsidian-setup-mobile-capture-900b0764b692 - 2023-10-06 - monthly - 1.0 - - - - https://dataman-ai.medium.com/fine-tune-a-gpt-lora-e9b72ad4ad3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@Aaron0928/weve-finally-found-the-reason-for-chatgpt-s-declining-iq-ccbbd3b383ec - 2023-10-06 - monthly - 1.0 - - - - https://iorilan.medium.com/my-junior-developer-told-me-oo-design-patterns-are-too-complicated-and-useless-4dce902597f0 - 2023-10-06 - monthly - 1.0 - - - - https://rafipiun.medium.com/how-i-got-easy-for-sql-injection-bug-7ff622236e4c - 2023-10-06 - monthly - 1.0 - - - - https://sicks3c.medium.com/tale-of-xss-in-angular-c5c057a56156 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/the-plugin-obsidian-had-been-missing-for-a-very-long-time-2888ab2832ae - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@bnjmn_marie/quantize-llms-with-gptq-using-hugging-face-transformers-95a6297960cf - 2023-10-06 - monthly - 1.0 - - - - https://marian-caikovski.medium.com/modern-alternatives-to-innerhtml-and-appendchild-296b9e5a5d28 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/what-is-faster-to-insert-into-dom-html-or-dom-nodes-ff11586f8570 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/how-to-incorporate-openlayers-maps-into-react-65b411985744 - 2023-10-06 - monthly - 1.0 - - - - https://pjmcdermott92.medium.com/why-i-use-custom-data-attributes-for-selecting-elements-in-javascript-58166fe074a8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@shantanu.kr/beyond-chatgpt-boost-productivity-with-these-7-ai-driven-project-management-de7d704de034 - 2023-10-06 - monthly - 1.0 - - - - https://humanparts.medium.com/when-i-m-gone-f1611ceb759f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@the_Seunfunmi/flimsy-371d8a84306d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@LearningPages/why-im-moving-away-from-twitter-ef9d169229fd - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/teaching-language-models-to-use-tools-7fd58916c66b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/environmental-data-science-an-introduction-127b4b3422dc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/an-idea-for-you/the-two-minutes-it-takes-to-read-this-will-improve-your-writing-forever-82a7d01441d1 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/monte-carlo-approximation-methods-which-one-should-you-choose-and-when-886a379fb6b - 2023-10-06 - monthly - 1.0 - - - - https://andreafeccomandi.medium.com/how-to-use-the-foreshadowing-narrative-technique-aae302693336 - 2023-10-06 - monthly - 1.0 - - - - https://dariusforoux.medium.com/the-secret-to-waking-up-with-a-smile-4814fb9e63fe - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@aleb/how-to-generate-random-user-agents-with-an-api-22aad3d232cb - 2023-10-06 - monthly - 1.0 - - - - https://securitylit.medium.com/leveraging-search-queries-for-bug-bounty-a-guide-to-finding-vulnerabilities-3782788f603 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@Land2Cyber/remote-code-execution-a-deep-dive-into-how-to-achieve-it-e87f9f35d8c8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@Land2Cyber/bug-hunting-on-the-dark-web-tips-and-tricks-for-staying-safe-c4e8bb9f30f8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@Land2Cyber/the-top-bug-bounty-programs-of-the-year-and-how-to-maximize-your-earnings-fbbd8c0cd32a - 2023-10-06 - monthly - 1.0 - - - - https://infosecwriteups.com/bypassing-xss-filters-techniques-and-solutions-d6674029f1e9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/written-with-love/my-relationship-with-my-affair-partner-was-doomed-yours-probably-is-too-1db9a0c037a - 2023-10-06 - monthly - 1.0 - - - - https://infosecwriteups.com/inside-the-xss-vulnerability-how-to-understand-and-protect-yourself-627ae6d39121 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/unfaithful-perspectives-on-the-third-party/maybe-everyone-who-has-an-affair-deserves-a-broken-heart-f43170dbb640 - 2023-10-06 - monthly - 1.0 - - - - https://takeitoutamber.medium.com/print-prime-numbers-hackerrank-advanced-sql-6b9fbfe1445 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/power-of-context-in-data-driven-storytelling-b4dc48a402e - 2023-10-06 - monthly - 1.0 - - - - https://jorgepit-14189.medium.com/how-to-connect-external-data-with-gpt-3-using-llamaindex-9f836766e167 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/developing-an-autonomous-dual-chatbot-system-for-research-paper-digesting-ea46943e9343 - 2023-10-06 - monthly - 1.0 - - - - https://corneacristian.medium.com/top-25-xss-bug-bounty-reports-b3c90e2288c8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@gk_/chatgpt-and-langchain-an-attempt-at-scheduling-automation-part-1-of-3-575c005906b2 - 2023-10-06 - monthly - 1.0 - - - - https://javedmultani16.medium.com/hiding-elements-in-ios-a4c9c0735ca9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@gk_/chatgpt-and-langchain-an-attempt-at-scheduling-automation-part-2-of-3-6e38b3c086d5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@gk_/chatgpt-and-langchain-an-attempt-at-scheduling-automation-part-3-of-3-db65906ab581 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/animated-rnn-lstm-and-gru-ef124d06cf45 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/branding-process-brand-strategy-5a7cf4286512 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ameermuaviaa116/creating-seamless-visual-branding-across-platforms-a-comprehensive-guide-f70ee516baf6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/exploiting-cors-misconfiguration-vulnerabilities-2a16b5b979 - 2023-10-06 - monthly - 1.0 - - - - https://theingspace.medium.com/how-to-create-a-memorable-brand-experience-39e2e665fef4 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/setuptools-python-571e7d5500f2 - 2023-10-06 - monthly - 1.0 - - - - https://michalmalewicz.medium.com/x-rebranding-exercise-explained-f475baa5eef0 - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/2023-logo-trends-make-your-brand-pop-f76b4607d184 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/techiepedia/what-are-sop-cors-and-ways-to-exploit-it-62a5e02100dc - 2023-10-06 - monthly - 1.0 - - - - https://theingspace.medium.com/makeup-trends-that-will-take-your-brand-to-the-next-level-in-2023-aa153e641190 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tijmenal/the-audi-brand-name-5a330cb22b78 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/concept-bureau-insights/brands-outliers-a38c28762169 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/techiepedia/javascript-code-review-guide-for-bug-bounty-hunters-c95a8aa7037a - 2023-10-06 - monthly - 1.0 - - - - https://mikekitckchan.medium.com/linux-tricks-for-bug-bounty-hunter-f8f936005151 - 2023-10-06 - monthly - 1.0 - - - - https://mikekitckchan.medium.com/common-bugs-found-in-file-upload-functions-fa9990ab404a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/automate-the-structure-of-your-data-science-projects-with-cookiecutter-937b244114d8 - 2023-10-06 - monthly - 1.0 - - - - https://mikekitckchan.medium.com/cors-misconfig-that-worths-usd200-4696eda5ab4c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/devtechie/how-to-send-local-notification-in-swiftui-7e787868c87e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/plotly-dash-vs-streamlit-which-is-the-best-library-for-building-data-dashboard-web-apps-97d7c98b938c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bytehide/fluent-validation-or-data-annotations-in-c-which-is-better-d97936c7109b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/7-useful-net-libraries-you-should-use-in-your-next-project-55c24bf65254 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@dmosyan/how-does-facebook-handle-billions-of-async-requests-8b00abf32b69 - 2023-10-06 - monthly - 1.0 - - - - https://christopherkokoski.medium.com/my-honest-topsetters-review-and-experience-2023-1fcf5563fd5b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/stop-one-hot-encoding-your-categorical-features-avoid-curse-of-dimensionality-16743c32cea4 - 2023-10-06 - monthly - 1.0 - - - - https://tzjacky.medium.com/swiftui-how-to-send-local-notifications-cb3405988ca - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@dandelionmind/why-im-switching-from-obsidian-to-capacities-359f3b561371 - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/neovim-for-beginners-performance-95687714c236 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/c-sharp-progarmming/azure-durable-functions-in-short-4a40fd389cd6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coinmonks/voting-on-a-blockchain-dapp-demonstration-dfb5944a0c9e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coinmonks/voting-on-a-blockchain-ballot-management-dapp-code-walk-through-11d7d287d82e - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/top-tools-for-net-messaging-c02891f6bf42 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/lightgbm-vs-xgboost-which-algorithm-win-the-race-1ff7dd4917d - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/please-stop-using-autowired-field-injection-in-the-spring-bdb8bc65b486 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/3-python-tools-data-scientists-can-use-for-production-quality-code-604a5e0acf9a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/documenting-python-code-with-sphinx-554e1d6c4f6d - 2023-10-06 - monthly - 1.0 - - - - https://eellaup.medium.com/the-application-that-got-me-into-georgia-tech-omscs-99a43c5a1361 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@pjsfnqk/the-scandal-that-shook-the-nation-larry-sinclairs-haunting-allegations-against-obama-5dd4546fd0aa - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/neovim-for-beginners-completion-plugins-52c46b774474 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/chatgpt-for-pdf-files-with-langchain-ef565c041796 - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/create-and-deploy-your-telegram-bot-here-entirely-free-757d5d5e8099 - 2023-10-06 - monthly - 1.0 - - - - https://sagunraj.medium.com/how-to-generate-gifs-from-videos-on-macos-b3780d2ef5c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/easiest-way-to-host-your-react-app-azure-vs-code-8046f9f7fb0b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/darts-swiss-knife-for-time-series-forecasting-in-python-f37bb74c126 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/how-to-add-an-extra-ip-address-in-your-mac-8f989f7d49d3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/devops-with-valentine/run-your-playwright-e2e-tests-in-gitlab-ci-ea1afe432032 - 2023-10-06 - monthly - 1.0 - - - - https://ryankemmer.medium.com/how-i-made-an-open-source-ai-hedge-fund-bec2bf07c1c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/teamzerolabs/node-js-monitoring-with-prometheus-grafana-3056362ccb80 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/ampersand-academy/php-read-and-write-excel-file-using-phpspreadsheet-ec0b41fb1fd0 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/stationarity-in-time-series-analysis-90c94f27322 - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/neovim-101-macros-and-registers-5e08781d9d27 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/understanding-random-forest-58381e0602d2 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/understanding-logistic-regression-using-a-simple-example-163de52ea900 - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/heteroscedasticity-analysis-in-time-series-data-fee51503cc0e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-detect-heteroskedasticity-in-time-series-3413a8aa8da9 - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/streamlit-python-tips-how-to-avoid-your-app-from-rerunning-on-every-widget-click-cae99c5189eb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/humungus/the-erotics-of-trent-reznor-efabd2fe2195 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@noah_Weddigen/do-you-want-to-make-2k-mo-writing-on-medium-me-too-89d67b862eea - 2023-10-06 - monthly - 1.0 - - - - https://aubreybergauer.medium.com/what-the-articles-arent-saying-about-arts-and-culture-challenges-e6335af77a70 - 2023-10-06 - monthly - 1.0 - - - - https://writingcooperative.com/heres-how-to-make-writing-easy-e1748334fc69 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@onmyway133/how-to-use-navigationsplitview-and-navigationstack-in-swiftui-dfefc5c17605 - 2023-10-06 - monthly - 1.0 - - - - https://maherz.medium.com/10-coding-secrets-from-best-selling-programming-books-7fc68452379 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/how-to-server-side-render-a-web-component-770cd25efb6f - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/how-to-hydrate-a-server-side-rendered-web-component-2e795651e07c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@maxgoh222/my-journey-from-self-taught-to-becoming-a-fang-engineer-54bcc4fc1203 - 2023-10-06 - monthly - 1.0 - - - - https://ikolomiyets.medium.com/transferring-data-between-android-devices-over-bluetooth-with-kotlin-3cab7e5ca0d2 - 2023-10-06 - monthly - 1.0 - - - - https://hotplugin.medium.com/flight-hackthebox-fd3a2829aab0 - 2023-10-06 - monthly - 1.0 - - - - https://psiloveyou.xyz/the-most-important-life-lessons-are-seen-not-heard-cf6f6b508cec - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/what-is-npy-files-and-why-you-should-use-them-603373c78883 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-storytellers-vault/being-a-vet-tech-ca2f318b4e6d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/catness/the-things-we-let-our-cats-get-away-with-fd8b69afdfd4 - 2023-10-06 - monthly - 1.0 - - - - https://writingcooperative.com/how-to-win-writing-contests-by-passing-these-3-tests-cc898a486664 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/how-to-get-github-copilot-for-100-free-d25c3b8c3ba4 - 2023-10-06 - monthly - 1.0 - - - - https://wshuyi.medium.com/what-exactly-is-good-about-heptabase-590f741135b0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coinmonks/mean-reversion-trading-strategy-using-python-4cfecb51859e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/why-you-should-start-using-npy-file-more-often-df2a13cc0161 - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/how-to-conduct-heuristic-evaluation-85548a355dca - 2023-10-06 - monthly - 1.0 - - - - https://blog.gopenai.com/knowledge-graph-prompting-a-new-approach-for-multi-document-question-answering-ab5c4006a429 - 2023-10-06 - monthly - 1.0 - - - - https://sungkim11.medium.com/ai-landscape-is-shifting-from-gpu-to-ai-accelerator-5dc1aeaffdc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/kiftlife/the-real-reason-amazon-just-called-everyone-back-to-the-office-you-wont-believe-how-scary-it-is-89a686f1e436 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@sylvievu/ui-ux-designer-a-trendy-career-is-coming-to-an-end-7d2bdf568ebe - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tedskyba/my-job-search-story-ca3956b498c9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mobile-app-development-publication/kotlins-flow-channelflow-and-callbackflow-made-easy-5e82ce2e27c0 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/9-reasons-why-you-should-start-using-python-dataclasses-98271adadc66 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@hassiba.boukari/how-i-landed-the-google-apm-internship-e19f3ef0fbc4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@hassiba.boukari/how-i-crafted-my-google-apm-internship-resume-with-no-product-experience-dbdc3acb7011 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@hassiba.boukari/how-to-prepare-for-the-google-apm-internship-technical-interview-a2eb5c3aef42 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/greener-pastures-magazine/were-the-twentysomething-couple-who-can-mysteriously-afford-to-buy-a-house-f8f1dec47898 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-pub/conservatives-are-scared-of-our-tits-7d783ede670b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/deconstructing-christianity/pick-me-christians-280f4a74b1ee - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@doctoreww/next-generation-context-aware-password-cracking-39b65e3aa976 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/publishous/after-six-years-of-being-a-digital-nomad-im-ready-to-go-home-cc2717fdcdf5 - 2023-10-06 - monthly - 1.0 - - - - https://michelekohmorollo.medium.com/be-glad-you-arent-too-beautiful-too-smart-or-too-rich-ab8f46c004f - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/4-ssh-alternatives-that-are-better-than-the-original-e0c22965eefd - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/generating-knowledge-graphs-with-wikipedia-ec17030a40f6 - 2023-10-06 - monthly - 1.0 - - - - https://thomashahn11.medium.com/3-brutal-truths-you-need-to-accept-to-get-a-dream-body-79a6b65921c2 - 2023-10-06 - monthly - 1.0 - - - - https://jamesjulianwrites.medium.com/avoid-these-5-unhealthiest-foods-in-the-world-to-live-a-long-vibrant-life-b211e74ae214 - 2023-10-06 - monthly - 1.0 - - - - https://jamesjulianwrites.medium.com/eat-these-top-5-healthiest-foods-in-the-world-and-youll-feel-amazing-5af0ed7e1a53 - 2023-10-06 - monthly - 1.0 - - - - https://manggit.medium.com/react-native-redux-realm-js-r3-js-a-new-mobile-development-standard-5290ec02a590 - 2023-10-06 - monthly - 1.0 - - - - https://manggit.medium.com/code-example-react-native-redux-realm-js-r3-js-cb35e8998a42 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/what-is-hashable-in-swift-6a51627f904 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tsecretdeveloper/warning-colleagues-are-not-friends-even-for-software-developers-af01ff2454b8 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-beginner-friendly-explanation-of-how-neural-networks-work-55064db60df4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@lambrospd/5-simple-rules-to-data-visualization-with-vue-js-and-d3-js-f6b2bd6a1d40 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/demystifying-obsidians-outlining-superpowers-20c077793356 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/generalized-advantage-estimate-maths-and-code-b5d5bd3ce737 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/2-neuroscience-tricks-to-learn-faster-639668a1d7c8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/collaborne-engineering/returning-promises-from-redux-action-creators-3035f34fa74b - 2023-10-06 - monthly - 1.0 - - - - https://blog.det.life/data-pipelines-with-python-and-sql-part-1-eea0ddceacd6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/infosec/nuclei-a-bug-bounty-tool-502fd4d1e098 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/fintechexplained/everything-about-python-from-beginner-to-advance-level-227d52ef32d2 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/paired-t-test-to-evaluate-machine-learning-classifiers-1f395a6c93fa - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/thinking-is-hard/4-conundrums-of-intelligence-2ab78d90740f - 2023-10-06 - monthly - 1.0 - - - - https://compilezero.medium.com/dark-mode-ui-design-the-definitive-guide-part-1-color-53dcfaea5129 - 2023-10-06 - monthly - 1.0 - - - - https://sahajamit.medium.com/selenium-chrome-dev-tools-makes-a-perfect-browser-automation-recipe-c35c7f6a2360 - 2023-10-06 - monthly - 1.0 - - - - https://kaabar-sofien.medium.com/creating-a-volume-stock-trading-strategy-a69df5b38c40 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/chrome-dev-tools-protocol-2d0ef2baf4bf - 2023-10-06 - monthly - 1.0 - - - - https://juldhais.net/all-about-dependency-injection-in-asp-net-core-15651a16f11f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/7-awesome-net-ui-library-to-create-a-better-ui-825852c0d5cc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/dotnet-hub/use-fluentvalidation-in-asp-net-or-asp-net-core-d0b891e5e87b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/c-sharp-progarmming/orm-wars-dapper-vs-ef-core-f9ef4b53ed7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@samuilovas/c-mappers-which-one-is-the-fastest-17ac6889ce4f - 2023-10-06 - monthly - 1.0 - - - - https://thexssrat.medium.com/using-sqlmap-authenticated-41a28b8f7d5e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/natural-language-processing-feature-engineering-using-tf-idf-e8b9d00e7e76 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/monitoring-setup-with-docker-compose-part-1-prometheus-3d2c9089ee82 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/top-10-must-have-burp-suite-extensions-for-web-application-security-67d05d304ee - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/mastering-git-reset-v-revert-12701108a451 - 2023-10-06 - monthly - 1.0 - - - - https://infosecwriteups.com/guide-to-basic-recon-bug-bounties-recon-728c5242a115 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@FlutterTech/discover-the-magic-of-firebase-analytics-for-your-flutter-app-47c7fb76ca48 - 2023-10-06 - monthly - 1.0 - - - - https://infosecwriteups.com/broken-link-hijacking-404-google-play-store-xxx-bounty-96e79a8dfd71 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/try-these-3-lesser-known-pandas-functions-cfee4bc7e191 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/python-lists-vs-sets-39bd6b5745e1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/an-introduction-to-python-dictionary-520302924ef8 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-ultimate-beginners-guide-to-numpy-f5a2f99aef54 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/numpy-illustrated-the-visual-guide-to-numpy-3b1d4976de1d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/dont-quit-the-rat-race-your-9-5-isn-t-the-problem-do-this-instead-f66c2989d837 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/let-us-extract-some-topics-from-text-data-part-i-latent-dirichlet-allocation-lda-e335ee3e5fa4 - 2023-10-06 - monthly - 1.0 - - - - https://mattgiaro.medium.com/how-to-start-your-digital-zettelkasten-in-simple-4-steps-2e6d38915fa1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tpierrain/dual-track-post-agile-explained-in-3-minutes-2d223d199f91 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/offsetting-the-model-logic-to-implementation-7e333bc25798 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/i-created-an-alexa-skill-to-settle-an-argument-with-my-wife-410fbcb6a45a - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/10-weird-little-behaviours-that-make-people-attracted-to-you-9e9c718f25e6 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/3-useful-pandas-tips-to-work-with-datetime-data-424afbec628b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/7-miserable-tell-tell-signs-ai-wrote-your-article-781d52265822 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/spacy-langchain-a-powerful-duo-for-your-nlp-projects-6c9d89fcf077 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mind-cafe/why-is-jeremy-the-happiest-person-i-know-5b271ee927ac - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-post-grad-survival-guide/the-reality-every-20-something-should-accept-sooner-than-later-cd1dcc9f27ae - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/snippets-of-growth/i-made-out-with-my-boyfriends-best-friend-on-his-birthday-f87bdeeb6d5b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@fundamentalised/writers-dump-your-morning-routine-this-is-more-effective-a1ac04aa3589 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@fundamentalised/how-i-set-up-my-macbook-air-for-productivity-85360ac639d2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/jspoint/typescript-module-system-5022cac310f6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/jspoint/typescript-type-declaration-files-4b29077c43 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/hello-love/why-i-cheated-on-the-love-of-my-life-d661d10d4f57 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/take-mits-bachelor-s-of-computer-science-courses-free-online-d749a1e80045 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/psion-pda-how-does-it-look-today-327e01b60016 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/heart-affairs/how-to-know-for-sure-that-your-affair-partner-wont-leave-their-spouse-for-you-caaf65af0e5f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/google-just-launched-bigquery-studio-8e53aae8ec37 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/top-5-obsidianmd-plugins-youre-not-going-to-want-to-go-without-da88afbf60a7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/obsidian-has-over-1100-plugins-these-are-the-ones-recommended-by-the-community-e1e5aa35f807 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/age-of-empathy/i-fell-in-love-all-over-again-when-i-finally-allowed-myself-to-be-vulnerable-79a5b5016b6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@fengliplatform/python-procedure-to-copy-files-from-one-internal-stage-to-another-a07549b495f2 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/introduction-to-markov-chains-50da3645a50d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/wizdm-genesys/rendering-markdown-in-angular-37750d124247 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/the-best-obsidian-plugins-for-academic-writing-96824331cc7f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/25-lesser-known-java-libraries-you-should-try-ff8abd354a94 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/unfaithful-perspectives-on-the-third-party/why-having-an-affair-at-work-with-a-married-man-is-a-really-bad-idea-cd9f003cda63 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mistress-voices/pretty-woman-showed-me-why-my-affair-didnt-last-6d5a25cab918 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/sex-love-and-relationships/the-real-consequences-of-cheating-e5209f86b368 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-ultimate-guide-to-your-terminal-makeover-e11f9b87ac99 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mobile-app-development-publication/enable-unittest-on-local-pod-for-ios-b9105bac418d - 2023-10-06 - monthly - 1.0 - - - - https://flutter-developer.medium.com/flutter-flutter-doctor-results-with-cmdline-tools-component-is-missing-f6371a9c6e97 - 2023-10-06 - monthly - 1.0 - - - - https://drmattcrooks.medium.com/how-to-set-up-rcparams-in-matplotlib-355a0b9494ec - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/monitoring-setup-with-docker-compose-part-2-grafana-2cd2d9ff017b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@Evenword/the-30-most-useful-python-libraries-for-data-engineering-9e724a19e613 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@hugolu87/the-hottest-sql-tools-you-have-no-use-for-22b2d9a310fc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@mygreatlearning/machine-learning-resume-sample-how-to-build-a-strong-ml-resume-3d402261f25a - 2023-10-06 - monthly - 1.0 - - - - https://entreprenal.com/lets-talk-about-sam-altman-the-500-million-openai-ceo-e0ef8caef32f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@sateeshgodewar45/customer-churn-analysis-203c1284f503 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/custom-memory-for-chatgpt-api-artificial-intelligence-python-722d627d4d6d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@datawithdan_/using-data-analytics-to-make-over-106-000-per-year-as-a-freelancer-a-comprehensive-guide-c57bf542a004 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/monitoring-setup-with-docker-compose-part-3-alertmanager-5d0a2d4a5612 - 2023-10-06 - monthly - 1.0 - - - - https://josephine-amponsah.medium.com/forecasting-demand-of-retail-inventory-hierarchical-approach-3ec9c42a65e8 - 2023-10-06 - monthly - 1.0 - - - - https://takeitoutamber.medium.com/occupations-hackerrank-advanced-sql-b74e9cb04cd0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@carla.zarazir/a-b-testing-in-python-a-case-study-comparing-two-marketing-campaigns-eae6883e72cc - 2023-10-06 - monthly - 1.0 - - - - https://hafiqiqmal93.medium.com/using-digital-ocean-spaces-with-laravel-3885ee26b7e2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/omics-diary/how-to-test-normality-skewness-and-kurtosis-using-python-18fb2d8e35b9 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/statistics-are-you-bayesian-or-frequentist-4943f953f21b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@abdelilah.moulida/10-advanced-sql-interview-questions-for-data-professionals-5150d669ca3a - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/viper-for-swiftui-please-no-ee61ce99694c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/afresh-engineering/shrinkaware-an-improved-grocery-ordering-policy-fa1fcc2e610d - 2023-10-06 - monthly - 1.0 - - - - https://blog.det.life/database-cursors-in-sql-explaining-basic-and-advanced-usages-fb9c5dfbfba9 - 2023-10-06 - monthly - 1.0 - - - - https://blog.det.life/understanding-database-normalization-from-basics-to-er-diagrams-488a53923cf4 - 2023-10-06 - monthly - 1.0 - - - - https://blog.det.life/why-everyone-is-talking-about-onelake-in-microsoft-fabric-ba8c5f56195b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/text-classification-with-bert-in-pytorch-887965e5820f - 2023-10-06 - monthly - 1.0 - - - - https://myas92.medium.com/an-introduction-to-mqtt-with-nestjs-framework-a69ec55483f0 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/pandas-vs-polars-a-syntax-and-speed-comparison-5aa54e27497e - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/big-debate-naming-layers-in-figma-9ac6253ad136 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jdseo/stable-diffusion-and-dreambooth-raising-a-jedi-d6aad3793fcb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@WriteupsTHM_HTB_CTF/intro-to-logs-tryhackme-b4ad402c1b05 - 2023-10-06 - monthly - 1.0 - - - - https://cwsites.medium.com/automate-sonarqube-scans-with-github-actions-79db9542cd60 - 2023-10-06 - monthly - 1.0 - - - - https://infosecwriteups.com/my-first-grafana-admin-bug-bounty-with-google-dork-xxx-31cced6a6663 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/how-to-create-a-simple-animated-accordion-in-react-303567a4ca9f - 2023-10-06 - monthly - 1.0 - - - - https://tosny.medium.com/3-apps-new-to-my-home-screen-in-2023-e1ad6389656c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jkeszka/8-helpful-websites-you-probably-didnt-even-know-that-exist-a32d051cc1a9 - 2023-10-06 - monthly - 1.0 - - - - https://infosecwriteups.com/unlocking-the-mind-of-a-bug-hunter-a-deep-dive-into-the-bug-bounty-ecosystem-50084413ec9c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/classes-in-python-fundamentals-for-data-scientists-fb7deb4fcda1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/langchain-streamlit-the-tech-stack-you-need-to-create-large-language-model-based-demos-in-33340f1c4367 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/tech-takeaways/how-to-use-viewmodels-delegate-with-constructor-parameters-and-koin-dependency-injection-91a7a69bfc93 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/how-to-serve-ai-models-with-fastapi-and-docker-aa811696f8bb - 2023-10-06 - monthly - 1.0 - - - - https://sprinkle-twinkles.medium.com/kafka-best-practices-edition-how-to-design-kafka-message-key-and-why-it-is-important-in-6b483b2bdb0c - 2023-10-06 - monthly - 1.0 - - - - https://billatnapier.medium.com/opaque-one-of-the-great-advancements-in-cybersecurity-aace51a76560 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/neural-prophet-a-time-series-modeling-library-based-on-neural-networks-dd02dc8d868d - 2023-10-06 - monthly - 1.0 - - - - https://chevonphillip.medium.com/blind-xss-via-sms-support-chat-1100-bug-bounty-779a1e19cc51 - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/midjourney-prompts-to-create-outstanding-ui-design-ef947bf63007 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/ds3ucsd/career-paths-within-data-science-4243679c04b9 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/knative-serving-and-eventing-tutorial-586b41099dd2 - 2023-10-06 - monthly - 1.0 - - - - https://markwschaefer.medium.com/chatgpt-starter-pack-10-amazing-prompts-to-improve-your-business-now-60878a011f3f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/low-code-time-series-analysis-2d5d02b5474b - 2023-10-06 - monthly - 1.0 - - - - https://likeandinscribe.medium.com/using-cannabis-to-be-more-productive-dcd955e03379 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-infinite-universe/the-universe-is-not-made-for-us-d4217b06fa5 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/rate-limit-plus-worker-pool-in-golang-8df5b8cab378 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/7-best-jetbrains-ide-plugins-to-make-your-life-easier-in-2023-e69de80b74b8 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/12-data-science-ai-competitions-to-advance-your-skills-in-2021-32e3fcb95d8c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@veeralpatel/things-ive-learned-about-state-management-for-react-apps-174b8bde87fb - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-intuition-behind-shannons-entropy-e74820fe9800 - 2023-10-06 - monthly - 1.0 - - - - https://judedoyle.medium.com/kiwifarms-went-down-now-everything-is-kiwifarms-218d95bd9a76 - 2023-10-06 - monthly - 1.0 - - - - https://fatihozdemir.medium.com/bedelli-askerlik-deneyimlerim-erzincan-59-topcu-egitim-tugay-komutanligi-45fa8f8a5427 - 2023-10-06 - monthly - 1.0 - - - - https://rickhess99.medium.com/ai-isnt-the-problem-it-s-how-we-use-it-especially-in-schools-d396076cc8ff - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@Land2Cyber/advanced-sql-injection-techniques-how-to-bypass-login-forms-and-extract-sensitive-data-79b9846e7bab - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-stata-guide/the-stata-to-latex-guide-6e7ed5622856 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/entity-linking-a-primary-nlp-task-for-information-extraction-22f9d4b90aa8 - 2023-10-06 - monthly - 1.0 - - - - https://kdwilson.medium.com/is-star-trek-fandom-really-divided-across-generational-lines-10868dc7fa61 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/tinder-card-swipe-feature-using-react-spring-and-react-use-gesture-7236d7abf2db - 2023-10-06 - monthly - 1.0 - - - - https://alanchan1209.medium.com/heptabase-vs-notion-vs-obsidian-3d1740c7745 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/experiment-tracking-with-mlflow-in-10-minutes-f7c2128b8f2c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/how-blogging-can-change-your-life-d0904590d5ca - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/web-design-web-developer-magazine/wild-ways-to-get-midjourney-ai-to-imitate-something-making-a-bored-ape-derivative-from-a-real-f901aababe9 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/generating-synthetic-data-with-python-ea15fd0555ee - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/neovim-for-beginners-key-mappings-and-whichkey-31dbf58f9f87 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/comprehensive-guide-on-multiclass-classification-metrics-af94cfb83fbd - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/how-to-redirect-to-another-webpage-using-javascript-to-change-the-url-2b92754845a3 - 2023-10-06 - monthly - 1.0 - - - - https://iorilan.medium.com/a-5-years-tech-lead-said-they-shard-a-database-to-scale-but-then-he-failed-to-answer-this-question-8be39115dcb0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@rahul.sikder3/netflixs-engagement-metric-has-dropped-by-20-find-out-the-root-cause-5063ee3b8ed6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/working-from-home-is-bad-48ad0cdc3196 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/helpshift-engineering/1-on-1-with-your-manager-will-be-more-effective-after-reading-this-post-252f5437bb58 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-year-of-the-looking-glass/junior-designers-vs-senior-designers-fbe483d3b51e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/onebigthought/too-many-meetings-is-not-your-problem-7eafa7ae477c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/get-productive-with-apple-reminders-on-iphone-and-ipad-51cdf8e9f26b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@joannaborowa88/these-6-rules-helped-me-make-real-progress-6bf8a96c493d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@marvelgomulya/how-to-gain-social-status-19196b7f162a - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/factory-swift-dependency-injection-14da9b2b5d09 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/extensions-development/chrome-extension-ui-description-styling-part-ii-b95789e9b005 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/10-most-frequently-asked-pandas-questions-on-stack-overflow-b9d7d94cd83e - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/best-vscode-extensions-by-a-full-stack-developer-in-2022-f730037b6e0b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@davidcomfort/creating-consistent-characters-in-midjourney-ba7ebe7cb079 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@davidcomfort/generating-consistent-characters-in-midjourney-v5-2-53165c4f98a7 - 2023-10-06 - monthly - 1.0 - - - - https://www.cantorsparadise.com/what-does-a-30-chance-of-rain-really-mean-cf567ae76f71 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/wwcode-python/data-engineering-interview-series-sql-a079819bb465 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@lewisjdoyle/theres-nothing-quite-like-evernote-and-they-know-it-2b64476e13e0 - 2023-10-06 - monthly - 1.0 - - - - https://blog.det.life/what-is-medallion-architecture-and-how-can-you-use-it-in-fabric-6b0056ababc4 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdev.com/building-a-streaming-data-pipeline-using-azure-event-hub-stream-analytics-and-sql-server-a9f3a3df6af5 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-gentle-introduction-to-calculating-the-tf-idf-values-9e391f8a13e5 - 2023-10-06 - monthly - 1.0 - - - - https://drpicox.medium.com/agile-is-to-psychoanalysis-what-continuous-delivery-is-to-behaviorism-a-new-vision-of-software-834692848569 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lessons-from-history/the-mysterious-strange-disease-which-wiped-out-15-million-mexicans-9cdcc3b9419a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/dataseries/k-fold-cross-validation-with-pytorch-and-sklearn-d094aa00105f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lessons-from-history/the-imperial-harem-of-china-with-over-20-000-wives-1a38a22abb9b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lessons-from-history/why-do-inuit-husbands-exchange-their-wives-e3c79f91f68b - 2023-10-06 - monthly - 1.0 - - - - https://dwirandyh.medium.com/effortless-routing-deeplink-in-flutter-using-go-router-59edd67c52a0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@rahul.singh.ds20/data-engineering-zero-etl-past-llm-new-future-of-data-engineering-fa9c6160f4fe - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@laraveltuts/how-to-install-and-run-php-8-x-on-ubuntu-20-04-8f18e7565c41 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/your-datas-finally-in-the-cloud-now-stop-acting-so-on-prem-bbb7b4f35529 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdev.com/delta-lake-for-beginners-data-lake-data-warehouse-and-more-4017099b87a5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@chaudharyharsh575/my-first-etl-project-on-aws-explained-step-by-step-220fcaf799f3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/reactbrasil/modal-funcional-com-react-hooks-ddaf6224efa1 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdev.com/building-an-end-to-end-data-pipeline-with-delta-lake-and-databricks-337202a110a8 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/5-python-tricks-that-distinguish-senior-developers-from-juniors-826d57ab3940 - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/20-best-midjourney-prompts-to-create-coloring-pages-that-sell-cc93b3b1948 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/the-big-problem-with-variables-in-figma-61a4ea82640 - 2023-10-06 - monthly - 1.0 - - - - https://maciejszymczyk.medium.com/how-to-use-variables-and-xcom-in-apache-airflow-5eb313adbde1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@paul.k.pallaghy/a-fascinating-tree-of-gpts-and-llms-reveals-whats-been-going-on-4d4235f2a2b1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/leadup/the-three-weekly-meetings-that-will-help-you-lead-your-team-like-a-rock-star-7279ad284b68 - 2023-10-06 - monthly - 1.0 - - - - https://kennykandola.medium.com/31-business-ideas-for-2023-c0cee24a75a0 - 2023-10-06 - monthly - 1.0 - - - - https://mateusclira.medium.com/never-ask-for-a-raise-or-a-promotion-3a2f19627b2d - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/private-llms-on-local-and-in-the-cloud-with-langchain-gpt4all-and-cerebrium-6dade79f45f6 - 2023-10-06 - monthly - 1.0 - - - - https://artificialcorner.com/privategpt-a-free-chatgpt-alternative-to-interact-with-your-documents-offline-ea1c98f98062 - 2023-10-06 - monthly - 1.0 - - - - https://artificialcorner.com/gpt4all-is-the-local-chatgpt-for-your-documents-and-it-is-free-df1016bc335 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coinmonks/why-you-should-take-advantage-of-high-savings-interest-rates-in-the-uk-now-c3ba14c1dc0e - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/introducing-pandasai-the-generative-ai-python-library-568a971af014 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/introducing-icecream-never-use-print-to-debug-your-python-code-again-d8f2e5719f8a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@fareedkhandev/pandas-ai-the-future-of-data-analysis-8f0be9b5ab6f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/fintechexplained/how-do-pensions-work-uk-5b410b172270 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/how-i-generated-217-roi-with-sports-betting-and-machine-learning-27b10fdad986 - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/a-walkthrough-on-helix-a-post-modern-modal-text-editor-faf573d16892 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/assumptions-of-logistic-regression-clearly-explained-44d85a22b290 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@laurendessoye.ld/seriously-what-has-happened-to-kids-sports-since-we-were-young-783b162d0317 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/automating-scientific-data-analysis-part-1-c9979cd0817e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/flutter-community/element-embedding-in-flutter-dda770dad792 - 2023-10-06 - monthly - 1.0 - - - - https://artificialcorner.com/break-the-language-barrier-translate-any-foreign-language-video-with-whisper-ai-for-free-1cbf011fab20 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/in-fitness-and-in-health/the-simple-math-behind-losing-a-belly-after-40-the-lazy-way-536fed578366 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/llamaindex-the-ultimate-llm-framework-for-indexing-and-retrieval-fa588d8ca03e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/sopmac-labs/gpt-4-api-pricing-analysis-a507a4bf9829 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/beingwell/you-shift-gears-at-3-ages-b7bb3ad3edc6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@dianademco/obsidian-properties-the-new-feature-that-changes-everything-68077acc48fe - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@traviskaufman/demystifying-rxjs-part-ii-building-our-own-operators-b475e307e4d3 - 2023-10-06 - monthly - 1.0 - - - - https://ryanholiday.medium.com/32-thoughts-from-a-32-year-old-f7ec8b1a95a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/how-to-publish-content-with-the-instagram-graph-api-806ec9c56588 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/how-i-manage-my-medium-content-with-notion-and-why-you-should-too-free-template-included-1600e4d1ee7e - 2023-10-06 - monthly - 1.0 - - - - https://plethoraofpop.com/what-songs-would-have-been-on-your-back-to-school-playlist-15d30874269a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lessons-from-history/what-was-life-like-for-a-slave-in-ancient-rome-6e26bef78e37 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/ancient-com/zoroaster-founder-of-all-monotheistic-religions-94284eb21618 - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/exciting-updates-of-midjourney-v5-3-improved-inpainting-and-personalisation-bb40fd991918 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/firebase-developers/generating-auto-incrementing-sequences-with-firestore-b51ab713c571 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@traviskaufman/demystifying-rxjs-part-i-building-our-own-observables-e7a985fd8153 - 2023-10-06 - monthly - 1.0 - - - - https://proandroiddev.com/network-connectivity-service-using-callbackflow-and-jetpack-compose-4a52c49f9abd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/great-research/do-you-need-a-ph-d-f78d2fb0f286 - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/depth-tutorial-the-fully-automated-python-backend-of-my-stock-app-4d5087b67001 - 2023-10-06 - monthly - 1.0 - - - - https://nicksaraev.medium.com/top-10-best-anki-decks-of-2019-9a5abab5111a - 2023-10-06 - monthly - 1.0 - - - - https://thepythonlab.medium.com/market-regime-detection-using-unsupervised-learning-to-forecast-bull-bear-and-sideways-markets-b346c27ad4d8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coinmonks/i-spent-two-years-building-an-algorithmic-crypto-trading-platform-and-have-just-released-it-9e174fb27bf7 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/install-multiple-python-versions-in-wsl2-ba81f21109d6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/how-to-install-and-manage-multiple-python-versions-in-wsl2-6d6ce1b6f55b - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/8-free-courses-and-guides-that-will-teach-you-how-to-master-ai-982101f8918 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@stevenzhang/how-i-landed-18-faang-software-engineer-offers-after-not-interviewing-for-5-years-fc0dfc957a5d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-weekly-readme/how-i-negotiated-in-the-top-1-of-amazon-sde-1-offers-f9eec6e351f5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/how-to-create-a-smart-chatbot-with-streamlit-python-and-chatgpt-56ab76508279 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/arc-digital/slate-star-codex-and-the-gray-ladys-decay-e213725ebd8a - 2023-10-06 - monthly - 1.0 - - - - https://kaabar-sofien.medium.com/the-forgotten-way-of-using-the-rsi-b33f95c0ad30 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/5-best-computer-vision-courses-for-beginners-85f901a8f88a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/predict/this-is-your-captain-ai-speaking-how-automation-is-reshaping-aviation-b79099b959a5 - 2023-10-06 - monthly - 1.0 - - - - https://entrepreneurshandbook.co/how-to-avoid-ruining-your-best-team-player-ebfe13bed5f2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/serious-scrum/endless-and-boring-product-backlog-refinement-meetings-e98f6a4a46ed - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/preview-your-jupyter-notebooks-in-the-terminal-with-nbpreview-87601a92d0d1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@hnasr/how-slow-is-select-8d4308ca1f0c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@PurpleGreenLemon/php-isnt-that-bad-so-why-the-hate-c7b374b87ee4 - 2023-10-06 - monthly - 1.0 - - - - https://beingpax.medium.com/how-to-sync-obsidian-notes-across-different-devices-for-free-326423218597 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/must-know-computer-science/mastering-design-patterns-with-examples-command-pattern-2dc68803f9ce - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/workings/wonkish-obsidian-footnotes-as-sidenotes-9513d19d4eb0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/5-adhd-productivity-hacks-that-keep-me-going-at-my-9-5-4de7771369a9 - 2023-10-06 - monthly - 1.0 - - - - https://vvadithya.medium.com/establishing-an-ssh-connection-to-google-colab-a-step-by-step-guide-6e27a8302eb1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/dynamic-command-dispatching-in-c-d3abe21b3d1b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@alexandragrosu03/laravel-forge-forging-scalable-and-secure-web-apps-61ab54ceabc9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-code-box/streamlining-laravel-development-with-automation-examples-and-code-ce9707c8f786 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illuminations-mirror/a-broken-system-isnt-a-good-rationale-for-anti-natalism-7d28aacdaef - 2023-10-06 - monthly - 1.0 - - - - https://fmsreliability.medium.com/mcnemar-test-335c8697535b - 2023-10-06 - monthly - 1.0 - - - - https://barunavo.medium.com/install-grafana-mimir-using-helm-chart-507a22cf16a1 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/notes-on-graph-theory-centrality-measurements-e37d2e49550a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/8-must-have-vscode-extensions-for-boosting-productivity-c04eff26809a - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-to-use-vscode-like-a-pro-e120c428f45f - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/replacing-if-else-with-commands-and-handlers-527e0abe2147 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/crush-publications/meta-self-publishing-giveaways-boo-68ca2507a556 - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/an-in-depth-look-at-how-rasa-featurizes-user-input-for-dialogue-prediction-f153da550382 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/if-else-is-a-poor-mans-polymorphism-ab0b333b7265 - 2023-10-06 - monthly - 1.0 - - - - https://newlight77.medium.com/hexagonal-architecture-a7d956dc4782 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/intuition/the-intuition-behind-the-wave-equation-2550b58f55cf - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/wayward-magazine/im-so-mad-about-the-last-house-on-needless-street-57a2f9b16f88 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mind-cafe/following-your-intuition-can-change-your-life-27cf0642c481 - 2023-10-06 - monthly - 1.0 - - - - https://elemental.medium.com/today-feels-impossible-heres-how-science-suggests-we-cope-15f3e781778b - 2023-10-06 - monthly - 1.0 - - - - https://nikitrauniyar.medium.com/how-to-set-up-a-node-js-project-with-a-clean-folder-structure-typescript-5f4f5cdc575e - 2023-10-06 - monthly - 1.0 - - - - https://sonnyhuynhb.medium.com/how-i-built-and-sold-my-first-no-code-saas-company-in-3-months-4d49b9bc0755 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/automate-changelog-generation-with-gitlab-dbd4e4c41d99 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/your-own-personal-chatgpt-cb0512091e3f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/6-free-macos-menu-bar-apps-i-never-close-1c22861a6403 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/the-7-best-macos-apps-to-make-your-everyday-life-easier-b61e0e07ada1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/9-less-expensive-macos-apps-you-wont-regret-paying-for-2c68649c3722 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/7-one-off-paid-macos-apps-actually-worth-paying-for-1edbb4f8365 - 2023-10-06 - monthly - 1.0 - - - - https://secureitmania.medium.com/never-leave-this-tip-while-you-hunting-broken-access-control-f63c00b1e96a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/7-free-mac-apps-so-useful-that-youll-want-to-tip-the-developer-2ff83bb2691a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/backyard-theology/the-lies-they-taught-me-about-jesus-when-i-was-a-teenager-869e82a51d2e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/7-mac-apps-that-cost-a-bomb-but-are-totally-worth-it-2b56362cdcae - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-no%C3%B6sphere/yes-its-taken-until-2023-for-period-products-to-be-tested-using-actual-blood-de3f6f12275a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/linux-with-michael/how-i-setup-neovim-for-competitive-programming-in-c-ceaee468b530 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/devops-mojo/terraform-best-practices-top-best-practices-for-terraform-configuration-style-formatting-structure-66b8d938f00c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/devops-mojo/terraform-provision-amazon-eks-cluster-using-terraform-deploy-create-aws-eks-kubernetes-cluster-tf-4134ab22c594 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/a-programmers-regret-neglecting-math-at-university-9d937655752b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/devops-mojo/prometheus-overview-what-is-prometheus-introduction-92e064cff606 - 2023-10-06 - monthly - 1.0 - - - - https://writingcooperative.com/into-the-black-hole-whats-at-stake-for-comedy-variety-writers-in-the-wga-strike-29d58b4c93c6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/nerd-for-tech/script-communication-in-unity-using-getcomponent-242cbea403af - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/7-tools-to-help-you-write-better-swift-code-5e25bc77e88d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/automatic-video-editing-using-python-324e5efd7eba - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/learn-how-i-design-icons-for-ui-bd8cbd4f4f80 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/hello-love/clear-signs-its-not-true-love-you-just-got-attached-too-quickly-6ed316bf640a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/unfaithful-perspectives-on-the-third-party/why-doesnt-the-relationship-resulting-from-an-affair-work-out-ae37f4be0d49 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/predict/starlink-now-has-a-serious-competitor-d20860f44113 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-fwl-theorem-or-how-to-make-all-regressions-intuitive-59f801eb3299 - 2023-10-06 - monthly - 1.0 - - - - https://acronis.design/figma-plugins-development-via-chatgpt-1f13206f9b3d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/unfaithful-perspectives-on-the-third-party/the-nineteen-emotional-steps-you-will-go-through-after-breaking-up-any-long-term-relationship-5444be166d8e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/linear-regression-in-6-lines-of-python-5e1d0cd05b8d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@karlrombauts/building-an-8-bit-computer-in-logisim-part-1-building-blocks-a4f1e5ea0d03 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@JaySillings/how-9-11-taught-me-to-stop-saying-everything-will-be-okay-90195fb52c86 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@karlrombauts/building-an-8-bit-computer-in-logisim-part-2-arithmetic-ae7861c82e79 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@karlrombauts/building-an-8-bit-computer-in-logisim-part-3-basic-alu-29a7dd9d569 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@karlrombauts/building-an-8-bit-computer-in-logisim-part-4-status-flags-c41d8ca44542 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/must-know-computer-science/mastering-design-patterns-with-examples-factory-method-and-abstract-factory-patterns-11a95c5213b1 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/fse-2b1ffa791cf9 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/exploratory-data-analysis-with-pandas-profiling-de3aae2ddff3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/pythoneers/9-different-ways-to-embedded-code-in-medium-9213cb4c0a2e - 2023-10-06 - monthly - 1.0 - - - - https://nickfthilton.medium.com/the-end-of-the-subscription-era-is-coming-ed197f252c6a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/scientists-gave-homeless-people-7-500-heres-how-they-spent-it-2adc85a9d27a - 2023-10-06 - monthly - 1.0 - - - - https://keith-mcnulty.medium.com/three-simple-things-about-regression-that-every-data-scientist-should-know-d38ee17c5563 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-10-best-platforms-and-tools-to-learn-data-science-from-scratch-1d93eef1a32 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/azure-cloud/a-killer-guide-for-cloud-gaming-on-azure-march-2020-1aa56d13fba3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/hacking-git-directories-e0e60fa79a36 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/make-your-cli-portable-with-docker-c97038fdc601 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/have-you-ever-evaluated-your-model-in-this-way-a6a599a2f89c - 2023-10-06 - monthly - 1.0 - - - - https://ai.plainenglish.io/top-10-gpt-4-open-source-projects-for-developers-428ea307b980 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-landscape-of-timeseries-databases-95cd7f7ee64d - 2023-10-06 - monthly - 1.0 - - - - https://code.likeagirl.io/how-to-implement-and-select-the-best-linear-regression-model-2315b9a26348 - 2023-10-06 - monthly - 1.0 - - - - https://debugger.medium.com/you-need-a-password-manager-just-dont-use-lastpass-4b4ef3d485f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/serious-scrum/why-most-refinement-sessions-leads-to-nothing-but-frustrations-f52936ea2f60 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/change-your-mind/the-strategies-for-dopamine-detoxing-57faa551b33b - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/entity-recognition-with-llm-a-complete-evaluation-e34eb1902149 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/workings/wonkish-refining-a-new-taskidian-for-obsidian-e4c3c92d4934 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/workings/obsidian-tufte-style-sidenotes-d8d69b839fd7 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/goodbye-8-point-grid-hello-4-point-grid-1aa7f2159051 - 2023-10-06 - monthly - 1.0 - - - - https://odsc.medium.com/15-open-datasets-for-healthcare-830b19980d9 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/ui-cheat-sheets-buttons-7329ed9d6112 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/spatial-data-science/an-easy-way-to-work-and-visualize-lidar-data-in-python-eed0e028996c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/build-your-first-rest-api-with-django-rest-framework-e394e39a482c - 2023-10-06 - monthly - 1.0 - - - - https://thealexguides.medium.com/i-made-1-217-using-my-ai-girlfriend-in-30-days-88c17dc32e97 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/in-fitness-and-in-health/a-harvard-brain-researcher-warns-you-against-these-top-5-deadly-brain-destroying-habits-b38d1db11dab - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@makemoneyblog/make-100-day-on-rumble-youtubes-alternative-256b35f11b92 - 2023-10-06 - monthly - 1.0 - - - - https://beingpax.medium.com/new-obsidian-plugins-quick-note-multi-tag-image-converter-voice-spreadsheets-and-more-1422e6021510 - 2023-10-06 - monthly - 1.0 - - - - https://indica.medium.com/how-precisely-were-fucked-cad1f0e5b068 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/python-name-mangling-and-how-to-use-underscores-e67b529f744f - 2023-10-06 - monthly - 1.0 - - - - https://lynn-kwong.medium.com/how-to-use-pydantic-to-read-environment-variables-and-secret-files-in-python-8a6b8c56381c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/a-testing-strategy-for-a-domain-centric-architecture-e-g-hexagonal-9e8d7c6d4448 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/top-12-bussines-for-data-science-books-for-data-scientists-75b724f46224 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/it-dead-inside/advice-to-product-owners-from-a-developer-b7c4834f9460 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/nycdev/deploy-to-a-managed-kubernetes-cluster-on-google-cloud-894d35b83619 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/my-unpopular-opinion/dreary-dads-to-dominant-alphas-the-7-types-of-men-who-attract-women-8908918cb002 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/crush-publications/lessons-learned-eb026f30f731 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/growing-self-organizing-maps-2d69b6374398 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@drdanielledick/happy-healthy-101-a-parents-guide-to-helping-your-child-thrive-across-the-college-years-cd50e3abca25 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/5-simple-ways-to-tokenize-text-in-python-92c6804edfc4 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/over-100-data-scientist-interview-questions-and-answers-c5a66186769a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/reinforcement-learning-based-recommender-systems-492a2674fcc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@austin-starks/this-trading-strategy-has-an-insane-2200-return-on-investment-in-10-years-db17174f201e - 2023-10-06 - monthly - 1.0 - - - - https://infosecwriteups.com/xss-reflected-xss-bypass-filter-de41d35239a3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coinmonks/chatgpt-best-trading-strategy-made-18322-profit-5927ef8a4afd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/weekly-webtips/sending-push-notifications-from-nodejs-backend-app-to-flutter-android-app-8a261c3c2c61 - 2023-10-06 - monthly - 1.0 - - - - https://christianmartinezfinancialfox.medium.com/how-to-use-python-in-excel-for-finance-and-fp-a-professionals-5711b24575cf - 2023-10-06 - monthly - 1.0 - - - - https://venelinvalkov.medium.com/langchain-quickstart-build-powerful-chatgpt-applications-4d3bdbc742b2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/artefact-engineering-and-data-science/serving-ml-models-at-scale-using-mlflow-on-kubernetes-a83390718a92 - 2023-10-06 - monthly - 1.0 - - - - https://infosecwriteups.com/tryhackme-c4ptur3-th3-fl4g-ctf-writeup-detailed-f196058c26d0 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/introduction-to-the-hurst-exponent-with-code-in-python-4da0414ca52e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/scaling-machine-learning-from-0-to-millions-of-users-part-1-a2d36a5e849 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-side-hustle-club/how-i-build-websites-for-10-and-sell-them-for-395-1e1d0c750f90 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/sma-golden-cross-8-market-signals-for-your-metatrader-5-python-trading-bot-4a1d808bc1ff - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jackieschuld/my-to-do-list-haunts-my-audhd-mind-5aa7d4b8dcc4 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/setting-up-python-projects-part-ii-c4bd84b709d1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@himanshuarora/protect-private-content-using-cloudfront-signed-cookies-fd9674faec3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/setting-up-python-projects-part-iii-56aafde8ae0b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/setting-up-python-projects-part-iv-82059eba4ca4 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/setting-up-python-projects-part-v-206df3c1e3d3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/setting-up-python-projects-part-vi-cbdbf28eff53 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/is-attention-explanation-b609a7b0925c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-complete-guide-to-time-series-analysis-and-forecasting-70d476bfe775 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/the-great-python-ide-debate-pycharm-vs-vs-code-vs-jupyter-19e6f1d98196 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/top-10-vs-code-extensions-for-data-science-ce3e24e24347 - 2023-10-06 - monthly - 1.0 - - - - https://writingcooperative.com/the-anatomy-of-an-amazon-6-pager-fc79f31a41c9 - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/excalidraw-how-to-express-yourself-in-data-science-more-clearly-with-drawings-d0b46bb5c4aa - 2023-10-06 - monthly - 1.0 - - - - https://david-kyn.medium.com/workplace-automation-generate-pdf-reports-using-python-fa75c50e7715 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@3minutesnapshot/top-5-vector-databases-and-when-to-use-them-6c321e8ccc33 - 2023-10-06 - monthly - 1.0 - - - - https://preettheman.medium.com/awesome-vs-code-extensions-for-golang-8186896cca2f - 2023-10-06 - monthly - 1.0 - - - - https://cryptozoa.com/my-weekly-em-report-9-10-23-235c06f0290c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/hyperparameter-tuning-of-neural-networks-with-optuna-and-pytorch-22e179efc837 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/pipeline-a-data-engineering-resource/i-got-the-same-question-in-12-data-analyst-interviews-how-to-answer-71a0b0f84d61 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/18-of-the-most-recommended-data-science-platforms-to-learn-python-and-sql-f969f61b6d70 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/my-first-impressions-about-tana-the-app-that-pretends-to-revolutionize-the-productivity-world-15c277f63fa0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/how-to-become-a-magnet-for-anything-you-want-a993393f80c8 - 2023-10-06 - monthly - 1.0 - - - - https://iamalexmathers.medium.com/7-disgraceful-little-hacks-the-most-productive-people-dont-want-you-to-know-b912c148ee58 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/building-django-api-views-without-django-rest-framework-4fa9883de0a8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/personal-growth/find-the-thing-that-never-abandons-you-73f7024fcacb - 2023-10-06 - monthly - 1.0 - - - - https://andzwa.medium.com/a-playbook-for-disagree-and-commit-c06a81fa978d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/my-name-is-manj-and-im-addicted-to-notifications-b52d088ceb8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/use-chatgpt-to-create-trading-indicator-on-tradingview-easy-328d83228130 - 2023-10-06 - monthly - 1.0 - - - - https://anthony-trad.medium.com/stop-using-data-transfer-objects-dtos-in-you-code-62b58f97278e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-better-approach-to-text-summarization-d7139b571439 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/create-the-most-photorealistic-images-on-midjourney-success-prompting-formula-100-cheat-codes-1449e6dcc30f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@inverita/best-frontend-frameworks-for-web-development-in-2023-e31e3e7b2404 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/c-sharp-progarmming/running-async-code-in-unity-in-edit-mode-d9863cb2726f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@nykolas.z/dns-resolvers-performance-compared-cloudflare-x-google-x-quad9-x-opendns-149e803734e5 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/kagglers-guide-to-lightgbm-hyperparameter-tuning-with-optuna-in-2021-ed048d9838b5 - 2023-10-06 - monthly - 1.0 - - - - https://tapajyoti-bose.medium.com/7-cool-html-elements-nobody-uses-436598d85668 - 2023-10-06 - monthly - 1.0 - - - - https://medium.themayor.tech/official-gatekeeper-writeup-ea9e2f6dd85 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/full-frame/i-keep-fighting-with-this-lens-4e8c3d566c6f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@anirudh.munipalli/10-powerful-css-properties-that-every-web-developer-must-know-e5d7f8f04e10 - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/neovim-for-beginners-lsp-installer-245a0326530c - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/neovim-for-beginners-lsp-part-1-b3a17ddbe611 - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/neovim-for-beginners-lsp-part-2-37f9f72779b6 - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/neovim-lsp-enhanced-a3d313abee65 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@hemansnation/god-level-data-science-machine-learning-full-stack-roadmap-2023-ed3c414597d0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@nicknikravesh/a-foolproof-strategy-to-make-money-day-trading-no-really-7896e365fd40 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/adventures-in-data-science/why-use-alternative-data-405cfa36c6ee - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/adventures-in-data-science/why-you-should-stop-predicting-prices-if-you-want-to-stand-a-chance-of-predicting-prices-f1087af8fc19 - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/neovim-for-beginners-lsp-inlay-hints-bf4a8afa6f27 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@kalpit.sharma/intuit-interview-dsa-problems-8e9cdfe0e86 - 2023-10-06 - monthly - 1.0 - - - - https://faun.pub/q-google-4af7301bf12f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tsecretdeveloper/the-6-phrases-that-show-youre-a-junior-developer-2bee9a0149ff - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@maxy_ermayank/tick-stack-with-docker-application-package-fd20384d2db0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/adventures-in-data-science/at-morgan-stanley-we-found-simple-trading-rules-outperformed-fancy-portfolio-optimization-8adce91dc770 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@HeCanThink/gradio-the-new-frontier-in-interactive-python-data-apps-64b5ce06628a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@UnbecomingStories/social-media-heartbreak-unfriending-my-husband-60349aec7e61 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@UnbecomingStories/the-defeated-wife-2611f334505f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@UnbecomingStories/the-email-that-ended-my-20-year-marriage-6cf44e0e8b04 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/board-game-rating-prediction-using-linear-regression-random-forest-regression-in-python-e9a63480090f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@UnbecomingStories/the-gifts-divorcing-gave-me-cedb5d1e8c3e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/which-is-faster-for-loop-or-foreach-in-java-aaf1d65154e1 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/15-killer-websites-for-web-developers-97113695e775 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/working-with-payments-data-in-python-and-sql-44439a701a6b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/what-java-developers-often-overlook-about-java-enums-bff7cb20ffd6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/sexography/80-of-women-choose-only-the-top-20-of-attractive-men-is-a-big-fat-incel-lie-90e764b6a76 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/10-worldwide-predictions-for-the-next-20-years-e45f186a4cc - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/sourcery-in-ios-10e93c822223 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/starts-with-a-bang/quantum-supremacy-explained-ffd622437f2f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdev.com/streamlit-vs-taipy-the-ultimate-comparison-f705d60930f6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@TheShahzada/reflected-xss-in-yahoo-6e2b6b177448 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@TheShahzada/stored-xss-in-yahoo-b0878ecc97e2 - 2023-10-06 - monthly - 1.0 - - - - https://dhyanintech.medium.com/how-to-monitor-power-bi-dataset-performance-with-sql-server-profiler-2bf8e2c733ed - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coders-mojo/day-9-of-system-design-case-studies-series-design-dropbox-ead523ccccfa - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@maityamit/binary-search-binary-search-on-answer-concepts-with-all-curated-problems-on-leetcode-4e373384e676 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/neurodiversified/my-lightbulb-moments-dbbdefb0a110 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/5-python-projects-to-automate-your-life-from-beginner-to-advanced-90fe29a7d664 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/lazy-predict-fit-and-evaluate-all-the-models-from-scikit-learn-with-a-single-line-of-code-7fe510c7281 - 2023-10-06 - monthly - 1.0 - - - - https://infosecwriteups.com/threat-profiling-how-to-understand-hackers-and-their-ttps-3bba1be6359 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-locate-dark-web-hacker-forums-for-security-research-e87b53f18508 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-make-a-pytorch-transformer-for-time-series-forecasting-69e073d4061e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-run-inference-with-a-pytorch-time-series-transformer-394fd6cbe16c - 2023-10-06 - monthly - 1.0 - - - - https://beingpax.medium.com/new-obsidian-plugins-telegram-sync-brain-plugin-manager-template-trigger-more-ea7a4c0074a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/deep-dive-into-docker-security-59b19ac8d0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/the-5-paid-subscriptions-i-actually-use-in-2023-as-a-software-engineer-9418515a315a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/let-us-extract-some-topics-from-text-data-part-ii-gibbs-sampling-dirichlet-multinomial-mixture-9e82d51b0fab - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/allan-variance-in-python-d1175e5aeee2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/young-coder/a-simple-introduction-to-web-workers-in-javascript-b3504f9d9d1c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@UnbecomingStories/10-seconds-that-ended-my-20-year-marriage-a6f367f02e53 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mostly-true-stories/i-was-addicted-to-hating-the-other-woman-9d69d792d735 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/the-economic-potential-of-generative-ai-the-next-productivity-frontier-dce3934f23ca - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/gibbs-sampling-8e4844560ae5 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/7-html-attributes-to-help-you-improve-user-experience-6795c130af1e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-magic-pantry/the-case-of-the-fake-database-7bde487213a3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/let-us-extract-some-topics-from-text-data-part-iii-non-negative-matrix-factorization-nmf-8eba8c8edada - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/neurodiversified/sensory-overload-double-trouble-acb79533b255 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/top-6-python-libraries-for-visualization-which-one-to-use-fe43381cd658 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-ultimate-guide-to-pdps-and-ice-plots-4182885662aa - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/terraform-real-use-cases-to-solve-95-of-the-conditional-resources-or-blocks-creation-f0bf9b9fbc87 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/create-your-own-javascript-runtime-2e3642713b62 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/create-your-own-javascript-runtime-5929bf1c894e - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/best-laptops-for-machine-learning-deep-learning-data-science-ml-f55602197593 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/5-modern-bash-scripting-techniques-that-only-a-few-programmers-know-4abb58ddadad - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/deep-learning-audio-classification-fcbed546a2dd - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/what-ive-learned-about-building-things-cd6c4a026e5a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/geospatial-clustering-kinds-and-uses-9aef7601f386 - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/5-ui-ux-design-community-that-i-follow-ad02b1717d77 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/heart-affairs/i-went-to-a-bumble-irl-event-and-finally-understood-why-modern-dating-is-a-mess-b3719425cc4d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@9cv9official/cloud-engineer-job-description-a-complete-guide-655dc088dc5d - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/javascript-destructuring-for-object-transformation-8ac8d088134e - 2023-10-06 - monthly - 1.0 - - - - https://codemaker2016.medium.com/talk-with-documents-using-llamaindex-3952c76bd511 - 2023-10-06 - monthly - 1.0 - - - - https://charles-stover.medium.com/resolving-prettier-react-context-getphysicalfilename-is-not-a-function-52a250f68291 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-simple-way-to-learn-generally-from-a-large-training-set-dino-95ecd76e9677 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/5-practical-sql-examples-to-master-sql-group-by-7877ddf03ba8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/raposa-technologies/how-to-use-python-and-the-kelly-criterion-to-optimize-your-stock-portfolio-bb6e43df50c2 - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/ultimate-guide-for-designing-ui-cards-59488a91b44f - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/dynamic-strategy-backtesting-developing-a-trading-system-that-adapts-to-changing-market-conditions-1f0d497bd24b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/efficient-k-nearest-neighbors-k-nn-solutions-with-numpy-58cbac2a0971 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/problems-and-solutions-upgrading-to-storybook-7-62c868b23af4 - 2023-10-06 - monthly - 1.0 - - - - https://www.cantorsparadise.com/life-outside-the-normal-distribution-e5d50cac7d2a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ali.soleymani.co/stop-using-grid-search-or-random-search-for-hyperparameter-tuning-c2468a2ff887 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ali.soleymani.co/beyond-scikit-learn-is-it-time-to-retire-k-means-and-use-this-method-instead-b8eb9ca9079a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@thevnotebook/train-and-evaluate-clustering-models-2-2-94629cfc1c65 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@thevnotebook/train-and-evaluate-clustering-models-1-2-d5dcaa07c822 - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/exploring-knn-with-different-distance-metrics-85aea1e8299 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@WojtekFulmyk/outlier-detection-in-data-preprocessing-4fde42c8a19b - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/visualizing-clustering-algorithms-k-means-and-dbscan-c4ce62de23c1 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/dbscan-clustering-break-it-down-for-me-859650a723af - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@reddyyashu20/k-means-kmodes-and-k-prototype-76537d84a669 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/you-should-probably-know-this-about-tree-based-feature-importances-7afc450726f5 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/stop-using-smote-to-treat-class-imbalance-take-this-intuitive-approach-instead-9cb822b8dc45 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@thevnotebook/introduction-to-pytorch-3dbf80752ab5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@thevnotebook/train-and-evaluate-regression-models-3-4-612582bf71b4 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-to-design-software-plugins-d051ce1099b2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/neurodiversified/atypical-autistic-traits-7f39d87be420 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/100-days-of-linux/working-with-systemd-networkd-e461cfe80e6d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/neurodiversified/the-dsm-vs-autism-criteria-sucks-25abf668139e - 2023-10-06 - monthly - 1.0 - - - - https://shuvohabib.medium.com/listening-to-dom-changes-by-javascript-web-api-mutation-observer-hint-its-the-best-practice-3ee92dc8aac6 - 2023-10-06 - monthly - 1.0 - - - - https://vtsen.medium.com/minsdk-vs-targetsdk-vs-compilesdk-6fa840b78cd8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mobile-app-development-publication/handling-illegalstateexception-can-not-perform-this-action-after-onsaveinstancestate-d4ee8b630066 - 2023-10-06 - monthly - 1.0 - - - - https://coronavirus.medium.com/the-most-important-takeaways-from-the-fdas-big-covid-19-vaccine-meeting-a635bdfc9be4 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/exploring-animatedcontent-and-crossfade-in-jetpack-compose-45374c6b842 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lessons-from-history/seven-times-the-weather-turned-the-tides-of-war-77bd63829c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lessons-from-history/ladies-of-the-night-in-early-modern-europe-3a6843ef8b7e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lessons-from-history/act-dead-and-wait-for-it-to-pass-sex-tips-for-women-100-years-ago-6fda7b80686 - 2023-10-06 - monthly - 1.0 - - - - https://short-history.com/the-7-kinky-sex-taboos-of-the-roman-empire-nsfw-2c004a35a38e - 2023-10-06 - monthly - 1.0 - - - - https://aninjusticemag.com/americas-worst-mistake-ae654d319066 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/artificial-intelligence-for-geospatial-analysis-with-pytorchs-torchgeo-part-3-7521131f30b1 - 2023-10-06 - monthly - 1.0 - - - - https://patrickberry.medium.com/working-with-css-in-obsidian-f9c573ff0065 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/padding-large-language-models-examples-with-llama-2-199fb10df8ff - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@inner_journeyer/3-scientifically-proven-ways-to-boost-your-creativity-with-zero-efforts-b304fd5f2df5 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-detect-memory-leakage-in-your-python-application-f83ae1ad897d - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/gpt-4-tried-to-escape-into-the-internet-today-and-it-almost-worked-2689e549afb5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mind-cafe/i-followed-bill-gates-daily-routine-and-became-10x-more-productive-d51869ea69c6 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/causal-inference-what-why-and-how-d7336b0081ec - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/vulnerable-man/5-recent-documentaries-id-recommend-for-nostalgia-junkies-10e7ffc1db0d - 2023-10-06 - monthly - 1.0 - - - - https://farhan-tanvir.medium.com/clean-architecture-in-android-jetpack-compose-paging-3-0-kotlin-mvvm-%E3%83%BCpart-2-8d97cee4dffe - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/explore-your-activity-on-netflix-with-r-how-to-analyze-and-visualize-your-viewing-history-e85792410706 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/redis-unsafe-at-any-speed-f2731f738a25 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/google-has-a-secret-hiring-challenge-called-foobar-14625bfcea7a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mistress-voices/how-long-are-you-willing-to-wait-for-your-affair-partner-9ab3fd92980b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/unfaithful-perspectives-on-the-third-party/why-do-cheaters-want-to-stay-in-relationships-9-surprising-reasons-5322be5ba4ba - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/14-data-science-projects-to-do-during-your-14-day-quarantine-8bd60d1e55e1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/3-techniques-to-perform-named-entity-recognition-ner-on-text-data-ec1e91e3a8aa - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/named-entity-recognition-with-bert-in-pytorch-a454405e0b6a - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/elm-vs-svelte-d8e6f0abf667 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-use-manage-multiple-python-versions-on-an-apple-silicon-m1-mac-d69ee6ed0250 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/starts-with-a-bang/does-time-really-exist-23f9b8a58753 - 2023-10-06 - monthly - 1.0 - - - - https://joseph-mellor1999.medium.com/stop-saying-entropy-is-disorder-8e170a90d0ed - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-create-map-plots-with-plotly-26111d38fff9 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/what-makes-zig-unique-1b98bfb95701 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/when-and-why-tree-based-models-often-outperform-neural-networks-ceba9ecd0fd8 - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/building-an-epic-card-game-with-chatgpt-8180b6e09612 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/coding-controversies-unpopular-opinions-in-the-world-of-programming-87bb32292e6f - 2023-10-06 - monthly - 1.0 - - - - https://nickwignall.medium.com/4-habits-that-will-bring-you-inner-peace-79ad219f2ca6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/erika-harano/ux-task-flows-versus-user-flows-as-demonstrated-by-pancakes-896e78a98026 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/double-pointer/concurrency-in-ruby-sleeping-and-terminating-threads-309b9c0e10db - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/mac-5-great-ways-to-arrange-your-day-with-it-for-free-fa6335f5671a - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/figma-now-supports-rem-units-understanding-the-use-and-benefits-5957fc1ecb78 - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/use-langchain-to-extract-a-dictionary-from-text-3fca094d85d - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/exploring-end-to-end-evaluation-of-rag-pipelines-e4c03221429 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/hacking-the-same-origin-policy-f9f49ad592fc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/hand-engineering-features-for-vehicle-object-detection-in-c-61edd3c5699 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@zaraverax/should-i-stay-in-my-marriage-or-leave-how-do-you-know-when-to-leave-a-marriage-76b0d330ec20 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/setting-up-an-end-to-end-monitoring-system-with-grafana-stack-lgtm-1c534ebdf17b - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/a-step-by-step-roadmap-to-data-engineering-5d13d3ac4be4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/38-python-tips-and-ticks-to-learn-before-you-write-your-next-code-21ce3695db15 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/propensity-score-5c29c480130c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/measuring-the-speed-of-new-pandas-2-0-against-polars-and-datatable-still-not-good-enough-e44dc78f6585 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/heart-affairs/one-month-no-sex-what-it-taught-me-about-my-marriage-915ce4dba5f7 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/causal-effects-via-the-do-operator-5415aefc834a - 2023-10-06 - monthly - 1.0 - - - - https://moez-62905.medium.com/top-natural-language-processing-nlp-python-libraries-in-2022-c8f77b56e442 - 2023-10-06 - monthly - 1.0 - - - - https://medium.nextlevelswift.com/extract-a-subview-and-preview-f0f817939fe6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/data-hackers/como-virar-analista-de-dados-do-zero-em-1-ano-b654faa7dde9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/angular-in-depth/debug-angular-apps-in-production-without-revealing-source-maps-ab4a235edd85 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/web-components-what-are-they-pros-cons-and-more-77ad56711e49 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-sophist/nietzsche-vs-stoicism-58f6bd3c8693 - 2023-10-06 - monthly - 1.0 - - - - https://lucamezzalira.medium.com/i-dont-understand-micro-frontends-88f7304799a9 - 2023-10-06 - monthly - 1.0 - - - - https://bigb0ss.medium.com/redteam-c2-redirector-cloud-fronting-setup-aws-e7ed561a3a6c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@FlutterTech/internationalization-in-flutter-a-comprehensive-guide-1ec5deadbfa7 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/25-killer-javascript-one-liners-thatll-make-you-look-like-a-pro-d43f08529404 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/free-code-camp/how-to-become-a-git-expert-e7c38bf54826 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/7-reasons-to-migrate-from-java-8-to-java-17-b8cb031b7af8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/how-to-to-write-test-cases-for-your-apis-in-django-f2d113ffd954 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-financial-journal/how-im-making-money-with-political-python-3521f22698e3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/personal-growth/bertrand-russells-6-timeless-ideas-on-living-your-best-life-ba3d6d5792b4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/convolution-padding-stride-and-pooling-in-cnn-13dc1f3ada26 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/conv2d-to-finally-understand-what-happens-in-the-forward-pass-1bbaafb0b148 - 2023-10-06 - monthly - 1.0 - - - - https://arshren.medium.com/supervised-unsupervised-and-reinforcement-learning-245b59709f68 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jankammerath/bringing-palm-os-devices-back-online-a-journey-into-vintage-computing-1282d27406e9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/python-data-science-web/python-requesting-and-parsing-data-from-api-5159d52d1ff2 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/confidence-intervals-for-xgboost-cac2955a8fde - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-create-data-maps-of-the-united-states-with-python-and-matplotlib-5dfb425bd87d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@michellerichardson_11188/the-benefits-of-high-protein-diets-for-adhd-patients-21ef6b4c053 - 2023-10-06 - monthly - 1.0 - - - - https://rossbulat.medium.com/react-native-sign-in-with-apple-75733d3fbc3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@lewisjdoyle/todoist-now-puts-things-3-in-the-shade-d22114bcecfc - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/10-ways-bentoml-can-help-you-serve-and-scale-machine-learning-models-4060f1e59d0d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-store-historical-data-much-more-efficiently-78b0f2c8c811 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@nomadworld/automate-your-forex-trading-with-python-a-beginners-guide-e2a7a6126fa5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/forecasting-s-p500-volatility-using-a-novel-data-driven-exponentially-weighted-moving-average-and-de11330e9bab - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/automate-your-life-business-top-20-python-packages-2051fd02fb8 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/fine-tune-your-own-llama-2-model-in-a-colab-notebook-70b8c851d931 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/blogging-guide/medium-bullet-points-numbered-lists-and-custom-lists-e48a8a45b4a7 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/how-to-make-exoplayer-lifecycle-aware-in-jetpack-compose-6d4084b122e3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/how-to-install-the-nvidia-cuda-toolkit-11-in-wsl2-88292cf4ab77 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/deep-reinforcement-learning-for-automated-stock-trading-f1dad0126a02 - 2023-10-06 - monthly - 1.0 - - - - https://adamgoss.medium.com/certified-red-team-operator-crto-review-71ea4edef62a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/setting-up-python-projects-part-i-408603868c08 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@exceed73/code-llama-a-new-and-powerful-help-for-coding-707df14c66f9 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/tooltips-with-pythons-matplotlib-dcd8db758846 - 2023-10-06 - monthly - 1.0 - - - - https://tomaszs2.medium.com/contributors-angry-after-turbo-8-suddenly-drops-typescript-4ffd4e0be7cd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@Anthony-Lam/how-to-make-100-a-day-unsaturated-method-9de0c9cdc8f3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/sentence-correctness-classifier-using-transfer-learning-with-huggingface-bert-8884795ba5ca - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/hacking-python-applications-5d4cd541b3f1 - 2023-10-06 - monthly - 1.0 - - - - https://sophiamyang.medium.com/building-custom-panel-widgets-using-reactivehtml-ca9a1dd47e4a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/building-an-interactive-ml-dashboard-in-panel-d3e344ea7126 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/10-predictions-about-the-software-development-trends-in-the-2030s-2fab86c5f661 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mind-cafe/4-undiscovered-lessons-by-marcus-aurelius-that-changed-my-life-and-can-do-the-same-for-you-8443ec4742b4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mind-cafe/i-interviewed-several-high-class-escorts-here-are-some-lessons-i-learned-8dc2b3b1caf - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mind-cafe/the-lemon-juice-robbery-how-overconfidence-led-to-a-bizarre-heist-bc9736f5c2ac - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-haven/best-ways-to-create-fake-medium-accounts-b79b3980ea8c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/quality-control-charts-x-bar-chart-r-chart-and-process-capability-analysis-96caa9d9233e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/ideas-into-action/ikigai-the-perfect-career-diagnostic-3de932834be7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@cannon_circuit/the-best-operating-system-for-programming-windows-mac-linux-1d9091d85c48 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/what-being-a-full-stack-data-scientist-at-a-startup-is-like-fa54b6be4c26 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/validating-input-with-zod-in-typescript-6d0e04677123 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/display-and-download-pdf-in-streamlit-a-blog-use-case-5fc1ac87d4b1 - 2023-10-06 - monthly - 1.0 - - - - https://indica.medium.com/the-universe-really-is-telling-you-something-a05d330c7c09 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/19-developer-tools-to-improve-your-workflow-86f560657bdb - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/my-personal-collection-of-100-python-one-liners-that-shaped-my-career-d2a41f8f447a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/why-i-made-the-switch-from-spotify-to-apple-music-5cee5fe7344b - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/beyond-pandas-exploring-high-performance-alternatives-for-data-manipulation-and-analysis-in-python-ff9b6eb67f56 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/high-performance-string-building-in-go-golang-3fd99b9ca856 - 2023-10-06 - monthly - 1.0 - - - - https://rabbinikki.medium.com/why-it-doesnt-really-matter-what-you-wear-to-temple-7519b8c98b52 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@containeroo/traefik-2-0-docker-an-advanced-guide-d098b9e9be96 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/appcoda-tutorials/building-an-image-carousel-from-scratch-with-swiftui-a89e14c5fa12 - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/docker-essentials-image-optimization-9a75e5c39f7f - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/react-interview-questions-2023-a-comprehensive-collection-for-newcomers-and-professionals-alike-b74ad3e5178f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/canivete-sui%C3%A7o-hacker/tutorial-react-native-meteo-ipma-571d97004b92 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/thoughts-on-machine-learning/langchain-expression-language-how-to-easily-create-llm-based-pipelines-5c22d8fc78b1 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/natural-language-processing-for-absolute-beginners-a195549a3164 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/insider/only-11-tv-shows-received-a-perfect-score-on-rotten-tomatoes-this-year-so-far-e446022b486a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-modern-scientist/a-journey-through-calculus-integrals-from-basics-to-advanced-techniques-pt-1-1e4da5d5d01a - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/validating-yaml-configs-made-easy-with-pydantic-594522612db5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lifeworkmag/why-ive-deleted-all-my-social-media-5bc2f1063dde - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/data-cleansing-in-polars-f9314ea04a8e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@zelphontheshelf/10-signs-youre-probably-in-a-cult-1921eb5a3857 - 2023-10-06 - monthly - 1.0 - - - - https://forge.medium.com/how-malcolm-x-andr%C3%A9-weil-and-antonio-gramsci-learned-their-way-to-greatness-555f6358cbd6 - 2023-10-06 - monthly - 1.0 - - - - https://phiwhyyy.medium.com/rocket-equations-iv-5c7bd4ea9461 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@lorenzowbattistela/quantified-statements-and-proofs-building-a-solid-foundation-in-logical-reasoning-76ed113a31bd - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/understanding-groupby-in-polars-dataframe-by-examples-1e910e4095b3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@2305sakake/why-linear-algebra-is-the-natural-language-of-quantum-mechanics-97b7c4d8a69b - 2023-10-06 - monthly - 1.0 - - - - https://tomaszs2.medium.com/django-5-0-3-features-you-waited-for-that-will-go-public-in-december-2023-ef9b1105ff27 - 2023-10-06 - monthly - 1.0 - - - - https://tomaszs2.medium.com/5-awesome-python-projects-people-dont-know-about-5766fada6936 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/short-business-articles-by-svyatoslav-biryulin/total-addressable-market-tam-how-to-measure-it-7041f81a0262 - 2023-10-06 - monthly - 1.0 - - - - https://humanparts.medium.com/the-rise-and-fall-of-mentally-retarded-e3b9eea23018 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/double-pointer/system-design-interview-search-engine-edb66b64fd5e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-build-a-scalable-big-data-analytics-pipeline-7de18f8be848 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/intuition/the-intuition-behind-the-continuity-equation-8e87045652d3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/math-simplified/the-intuition-behind-the-fourier-series-and-the-fourier-transform-75e7a78d96ef - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/intuition/the-intuition-behind-the-laplace-transform-8432c3bceb37 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/python-scikit-learn-logistic-regression-classification-eb9c8de8938d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/intuition/the-intuition-behind-the-schr%C3%B6dinger-equation-and-the-wavefunction-1660ee55140c - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/cracking-the-code-a-guide-to-python-debugging-tools-70ecc351a457 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/enough-why-its-time-to-rip-out-angular-7d831802c8a2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-modern-scientist/beyond-infinity-understanding-limits-in-mathematics-e0169d20a2bc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-modern-scientist/logarithms-demystified-a-guide-to-understanding-the-rules-5efe566408a6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-modern-scientist/derivatives-in-the-wild-how-calculus-shapes-our-world-77d169e3fca6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-modern-scientist/continuity-in-functions-a-smooth-ride-through-math-7cab8085315d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-modern-scientist/understanding-mathematical-sets-from-the-intuitive-to-the-concrete-4406c2f4b990 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@aosotsi/everything-youve-ever-wanted-to-know-about-functions-c822ab0b660e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/the-top-12-tools-for-developers-you-cant-live-without-in-2023-4aede9af4263 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/must-experience-open-source-projects-and-tools-for-2023-f5f93410c21e - 2023-10-06 - monthly - 1.0 - - - - https://sergeygultyayev.medium.com/new-reactivity-in-angular-is-it-time-to-say-farewell-to-rxjs-5331e0ccb150 - 2023-10-06 - monthly - 1.0 - - - - https://gupta-bless.medium.com/penetration-testing-of-network-9e92527a2902 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/being-part-of-amazons-10-pip-39f1dbc60a13 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/higherpattern/predicting-stock-prices-using-machine-learning-bbd110f85ab - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/predicting-the-future-of-stock-using-machine-learning-58d710dfd380 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/free-code-camp/crud-using-react-41d047224e26 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-weekly-readme/why-i-left-amazon-pip-3d99e0b899c8 - 2023-10-06 - monthly - 1.0 - - - - https://ngyibin.medium.com/how-to-get-access-to-llama2-via-huggingface-ba936f609a9e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-side-hustle-club/how-i-made-630-online-while-i-was-on-a-holiday-in-greece-without-my-computer-34c71104ef39 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@aakashrajur/authentication-system-design-cfa95ed2dfaa - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@mickyangelod/how-i-am-trying-to-use-chat-gpt-to-beat-resume-scanners-f016cf8816ca - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ordinaryindustries/the-ultimate-vs-code-setup-for-python-538026b34d94 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/7-new-firmware-updates-that-make-your-airpods-way-better-e29299d1b616 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/data-analysis-visualization-in-finance-technical-analysis-of-stocks-using-python-269d535598e4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/10-open-source-projects-for-web-developers-in-2023-b972ac745ff - 2023-10-06 - monthly - 1.0 - - - - https://fadingeek.medium.com/top-20-mobile-apps-which-nobody-knows-about-72b975209cb8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/cinemania/the-problem-s-with-greta-gerwigs-barbie-72253ca0ae97 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/can-this-3-minute-japanese-exercise-get-you-in-shape-c2e513d90ec6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@bugxhunter01/android-pentesting-series-i-configuring-the-android-emulator-device-with-proxy-burp-9cf418a25d64 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/smoothing-financial-time-series-with-wavelets-79645a44aa40 - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/beyond-repainting-pythons-tactical-trading-advantage-34fa9c69a274 - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/discover-my-foolproof-method-for-finding-the-best-trading-parameters-7e56e31da3c7 - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/the-traders-lifesaver-how-this-decorator-could-prevent-your-financial-disaster-6def5d564412 - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/enhancing-trading-strategies-with-kalman-filter-an-advanced-approach-8a912ad3ca6 - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/real-time-ohlc-tactics-your-trading-game-revolutionized-911b82ad4757 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@matthew1992/algorithmic-stock-trading-utilizing-xgboost-and-kalman-filters-approach-b63858f040db - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@matthew1992/machine-learning-techniques-applied-to-stock-price-prediction-b321442b761 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@matthew1992/deep-learning-forecasts-arima-fourier-and-indices-shape-stock-prices-6a2b8b246409 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@matthew1992/time-series-stock-forecasting-using-arima-and-sarimax-models-1f5197dd38ad - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/topic-modeling-with-bert-779f7db187e6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@lei.shang/experimenting-agents-and-tools-with-llama-2-model-on-a-local-gpu-setup-3400406ee3d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@supriyadevidutta/understanding-quantitative-trading-c16-temporal-fusion-transformer-tbased-strategy-166f98cd2dab - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bouncin-and-behavin-blogs/the-tragic-downfall-of-national-geographic-e0547bbbda90 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/why-do-we-fall-for-brand-illusions-d88353d77f44 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lucid-nightmare/the-great-chinese-takeaway-spies-in-british-parliament-dee3742b6702 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/uncovering-deceptive-patterns-in-video-games-4ed0b5b9aa68 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/neural-network-calibration-using-pytorch-c44b7221a61 - 2023-10-06 - monthly - 1.0 - - - - https://bretcameron.medium.com/how-to-publish-your-first-npm-package-b224296fc57b - 2023-10-06 - monthly - 1.0 - - - - https://blog.medium.com/what-were-reading-when-you-talk-about-ai-context-matters-73aa894ee8bb - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/optimal-estimation-algorithms-kalman-and-particle-filters-be62dcb5e83 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/particle-filter-a-hero-in-the-world-of-non-linearity-and-non-gaussian-6d8947f4a3dc - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/particle-filter-on-localisation-9e0802282aaf - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/generative-adversarial-networks-gans-89ef35a60b69 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/clustering-machine-learning-combination-in-sales-prediction-330a7a205102 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/beginners-guide-to-generating-insights-from-banking-transaction-dataset-3427591b163b - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/how-i-deleted-more-than-1000-lines-of-code-using-spring-retry-9118de29060 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/erotic-fantasies/seducing-the-lodger-while-my-husband-sleeps-e921479b6bb7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/erotic-fantasies/pounded-by-my-neighbor-on-my-way-to-senior-prom-part-1-507d1c20a20a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/erotic-fantasies/joining-in-for-threesome-fun-325f40673903 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ivangfr/setting-up-openldap-with-keycloak-for-user-federation-82c643b3a0e6 - 2023-10-06 - monthly - 1.0 - - - - https://generativeai.pub/stable-diffusion-enables-the-control-of-camera-distance-and-angles-using-prompts-53ca4d1c9981 - 2023-10-06 - monthly - 1.0 - - - - https://myerotica.com/one-night-stand-with-my-brother-in-law-7214cba12d9c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/erotic-fantasies/pounded-by-my-neighbor-on-my-way-to-senior-prom-part-2-7123e74ee6f8 - 2023-10-06 - monthly - 1.0 - - - - https://generativeai.pub/30-prompts-to-create-a-beautiful-girl-in-stable-diffusion-290dc312b3fc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bb-tutorials-and-thoughts/how-to-serve-react-application-with-nginx-and-docker-9c51ac2c50ba - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-to-become-a-blockchain-engineer-fa4386a0504f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/support-vector-machine-formulation-and-derivation-b146ce89f28 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/which-features-are-harmful-for-your-classification-model-6227859a44a6 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/shap-for-drift-detection-effective-data-shift-monitoring-c7fb9590adb0 - 2023-10-06 - monthly - 1.0 - - - - https://barros9.medium.com/a-custom-pagination-in-compose-an-alternative-to-the-android-paging-library-46dc043fb251 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/what-you-think-about-writing-on-drugs-2295bdcb529 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/invisible-illness/is-ritalin-really-a-stimulant-c1a9f3415469 - 2023-10-06 - monthly - 1.0 - - - - https://alexellisuk.medium.com/bypass-the-corporate-proxy-e5cc84ca5013 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@mnemko/just-say-no-to-ritalin-b42f08df1baf - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/invisible-illness/people-with-adhd-dont-need-urine-drug-tests-771943b4ddd - 2023-10-06 - monthly - 1.0 - - - - https://waelkdouh.medium.com/integrating-blazor-components-into-existing-asp-net-core-mvc-applications-b1a2aec4ac1f - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/managing-virtual-machines-under-vagrant-on-a-mac-m1-aebc650bc12c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/wise-well/adhd-impulsivity-can-play-an-important-role-in-suicide-2a3a80fe2055 - 2023-10-06 - monthly - 1.0 - - - - https://ai.plainenglish.io/logistic-regression-543c8424595d - 2023-10-06 - monthly - 1.0 - - - - https://ai.plainenglish.io/bayes-classifiers-in-depth-e0582a48a291 - 2023-10-06 - monthly - 1.0 - - - - https://eand.co/the-election-should-never-have-been-this-close-2ff1f4e3aeaa - 2023-10-06 - monthly - 1.0 - - - - https://brian-kean.medium.com/31-years-ago-george-h-w-bush-sent-his-legs-to-russia-3ca5d2c1c536 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/feature-selection-and-eda-in-python-c6c4eb1058a3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-no-code-approach-to-building-knowledge-graphs-ce5d6b244b2b - 2023-10-06 - monthly - 1.0 - - - - https://datascience.com.co/how-to-install-python-2-7-and-3-6-in-windows-10-add-python-path-281e7eae62a - 2023-10-06 - monthly - 1.0 - - - - https://intriguework.medium.com/i-made-6000-in-a-week-on-gumroad-using-this-strategy-cea35634b993 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/sltc-sean-learns-to-code/hosting-a-discord-bot-on-google-cloud-ca0dea5df988 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/techtofreedom/8-uses-of-sed-in-linux-e61678b04114 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mobile-app-development-publication/explore-livedata-stateflow-value-emitting-behavior-3f5c9e8ef2e3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/dynamic-eda-for-qatar-world-cup-teams-8945970f16be - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ddwen/how-to-orchestrate-microservices-with-docker-compose-5a972cbac8d5 - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/4-everyday-one-minute-habits-that-actually-improved-my-life-in-6-months-532a63cfd77d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@gunsberg/python-grs-test-for-asset-pricing-models-in-linearmodels-v-4-25-69b54832d08d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/simple-exploratory-data-analysis-real-estate-listings-based-on-seattles-neighborhood-67a51c515506 - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/advanced-eda-techniques-with-pandas-and-numpy-ab6f7e7989c0 - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/all-you-need-to-know-for-eda-with-python-c868bb00b78d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@pkmbeth/my-note-taking-workflow-aug-2023-732f123b5b70 - 2023-10-06 - monthly - 1.0 - - - - https://chingisoinar.medium.com/did-leetcode-help-me-get-a-job-in-ai-ml-2023-fd630fe7ea0f - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/responsive-ui-design-with-figmas-variables-and-modes-2f97a36be6f7 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/stock-predictions-with-state-of-the-art-transformer-and-time-embeddings-3a4485237de6 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/univariate-analysis-intro-and-implementation-b9d1e07e5c16 - 2023-10-06 - monthly - 1.0 - - - - https://tracyrenee61.medium.com/interview-question-differentiate-between-univariate-bivariate-and-multivariate-analysis-37e47b66e4e4 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-to-set-up-argo-cd-with-terraform-to-implement-pure-gitops-d5a1d797926a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/dazn-tech/nuitka-python3-and-scratch-4ce209ed6dd6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/an-introduction-to-the-advanced-encryption-standard-aes-d7b72cc8de97 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/visualization-with-plotly-express-comprehensive-guide-eb5ee4b50b57 - 2023-10-06 - monthly - 1.0 - - - - https://mariedehayes.medium.com/le-design-cest-fini-47b458e5ff9d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mystic-minds/3-powerful-signs-that-your-twin-flame-misses-you-8f2ffcf95356 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/the-8-must-have-productivity-apps-for-programmers-in-2023-a620848a8bb1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@makemoneyblog/earn-200-day-selling-digital-products-de0c407d3406 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-side-hustle-club/earning-30k-month-with-faceless-youtube-channels-proven-method-46382e810dcf - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/how-to-do-networking-like-a-pro-in-flutter-7e2612103cb5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@NirZicherman/rough-drafts-fca1f0b7d124 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/no-exit-every-feed-is-a-traffic-jam-a5b091e8d3c2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-nuance/its-time-to-end-the-war-on-negative-emotions-15de810e4283 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-merge-large-csv-files-into-a-single-file-with-python-c66696f595ff - 2023-10-06 - monthly - 1.0 - - - - https://quant-galore.medium.com/bond-trading-is-more-profitable-than-you-think-like-way-more-9b743a87cb4d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/pythoneers/a-quick-look-at-object-oriented-programming-oop-in-python-975fc3cb9618 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-handbook-of-coding-in-finance/fundamental-analysis-of-stock-using-python-gross-profit-margin-a5373c58db94 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/5-chatgpt-plugins-that-will-put-you-ahead-of-99-of-data-scientists-4544a3b752f9 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/3-useful-projects-to-learn-python-classes-cf0076c36297 - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/a-secret-trick-to-decouple-software-components-seamlessly-90635c92f118 - 2023-10-06 - monthly - 1.0 - - - - https://kaabar-sofien.medium.com/a-simple-and-profitable-discretionary-trading-strategy-fa38e40152b7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coinmonks/build-your-own-robo-advisor-a-step-by-step-guide-with-python-code-examples-a0529ec483e5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/start-in-your-20s-retire-in-your-30-s-a-guide-to-money-minimalism-and-life-16af758e0448 - 2023-10-06 - monthly - 1.0 - - - - https://index.medium.com/your-career-is-too-short-to-spend-years-being-undervalued-underpaid-and-treated-like-a-piece-of-c2b556e8c380 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@redeaddiscolll/stock-price-prediction-using-encoder-decoder-model-evaluation-and-analysis-15b9557ab7d9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@smraiyyan/chatgpt-code-interpreter-launches-next-week-here-are-10-mind-blowing-use-cases-c20ce9be3824 - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/what-should-ai-learn-from-the-randomness-in-financial-data-f914999bd805 - 2023-10-06 - monthly - 1.0 - - - - https://riteshshergill.medium.com/toxic-managers-how-i-dealt-with-them-6dc8ad0fe6f2 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/designing-dark-mode-c7bd200eaa64 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/personal-growth/the-chase-6cd6845b27b2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@andrew.buntsev/javascript-string-memory-leak-48681fb39c0b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/text-to-3d-generation-cb8ce2c7f0f7 - 2023-10-06 - monthly - 1.0 - - - - https://ngwaifoong92.medium.com/introduction-to-shap-e-text-to-3d-a4fb5304642b - 2023-10-06 - monthly - 1.0 - - - - https://loriballen.medium.com/imagine-earning-a-whopping-45-000-each-month-by-selling-png-designs-on-etsy-67c05871272c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-b-c-tests-how-to-analyze-results-from-multi-group-experiments-ad5d5cee0b05 - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/documentation-template-using-cookiecutter-mkdocs-and-github-template-9e16be47f09e - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/spring-mvc-with-ssl-for-secure-communication-1a2927dde600 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/authentication-and-authorization-in-microservices-how-to-implement-it-5d01ed683d6f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-beginners-guide-to-data-analysis-in-python-188706df5447 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/cross-validation-techniques-to-assess-your-models-stability-3a4d55d90409 - 2023-10-06 - monthly - 1.0 - - - - https://bettermarketing.pub/how-i-completely-changed-my-career-using-linkedin-e711122d6151 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/support-vector-regression-svr-one-of-the-most-flexible-yet-robust-prediction-algorithms-4d25fbdaca60 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jasoncbenn/everything-you-need-to-become-a-self-taught-machine-learning-engineer-d09bbcdfa631 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/commitlog/why-i-still-use-vim-67afd76b4db6 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/javascript-keywords-that-every-experienced-web-developer-should-know-a10370cc0a23 - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/this-ai-can-generate-the-pixels-of-half-of-a-picture-from-nothing-using-a-nlp-model-7d7ba14b5522 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/stakingbits/the-best-defi-savings-accounts-dc5ebd538de4 - 2023-10-06 - monthly - 1.0 - - - - https://coinsbench.com/my-review-of-part-1-of-johnnytimes-smart-contract-hacking-course-6d5e2432b49a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@bloqarl/smart-contract-hacking-course-how-defi-lessons-changed-everything-d6b5ab5416cc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@bloqarl/why-have-i-decided-to-pay-for-a-smart-contract-hacking-course-ed8b1ce449c8 - 2023-10-06 - monthly - 1.0 - - - - https://jonmce.medium.com/what-the-heck-is-a-lateral-join-anyway-4c3345b94a63 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@bloqarl/new-in-blockchain-dont-start-from-learning-solidity-learn-first-about-defi-a1c9822a2427 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/stakingbits/the-best-defi-portfolio-trackers-e44a2c856635 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/linear-regression-with-hugging-face-3883fe729324 - 2023-10-06 - monthly - 1.0 - - - - https://lajavaness.medium.com/regression-with-text-input-using-bert-and-transformers-71c155034b13 - 2023-10-06 - monthly - 1.0 - - - - https://blog.det.life/9-techniques-to-find-stories-of-data-6a660a00d75f - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/how-to-create-a-machine-learning-model-in-python-for-sales-prediction-23e19098069 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/firestore-query-limitations-and-how-to-work-around-them-e058a844ae57 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/time-series-from-scratch-white-noise-and-random-walk-5c96270514d3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-detect-random-walk-and-white-noise-in-time-series-forecasting-bdb5bbd4ef81 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/mobile-ui-13-basic-patterns-of-app-ui-design-to-know-about-d3f7c6176f13 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/airbnb-can-drastically-change-your-houses-value-807f259ccb82 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/learning-sql/how-to-create-pivot-tables-in-sql-27098d9dbc45 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/new-devs-guide/what-are-expression-bodied-members-in-c-cf9fee812116 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/web-design-web-developer-magazine/the-secret-way-to-easily-circumvent-most-internet-paywalls-in-a-pinch-90ffd7fcc14e - 2023-10-06 - monthly - 1.0 - - - - https://andresand.medium.com/bitrise-android-environment-variables-c9cae8dab65e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/heart-affairs/self-relationships-c0791ee3bbc0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@arsdivina/helpful-people-are-a-nuisance-f042013fff44 - 2023-10-06 - monthly - 1.0 - - - - https://ralzohairi.medium.com/displaying-dynamic-elapsed-time-in-javascript-260fa0e95049 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@arsdivina/what-blockchain-music-services-have-to-provide-c33a54e0a51d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/chenjd-xyz/unity-tip-use-trygetcomponent-instead-of-getcomponent-to-avoid-memory-allocation-in-the-editor-fe0c3121daf6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/train-a-pytorch-efficientnet-model-for-medical-diagnosis-1d000c540bd - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/designing-color-systems-transparent-vs-solid-shades-9eb841571fdd - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/designing-a-graph-data-structure-in-a-relational-database-e13ffb857ce2 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/visualizing-decision-trees-with-python-scikit-learn-graphviz-matplotlib-1c50b4aa68dc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@shouke.wei/1d-multilevel-discrete-wavelet-transform-1-decomposition-method-41365da54702 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@shouke.wei/1d-multilevel-discrete-wavelet-transform-2-reconstruction-method-3c8e06c789e1 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/here-are-my-top-10-tips-for-optimizing-your-sql-queries-5563272f3c79 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@shouke.wei/python-wavelet-transform-library-pywavelets-and-its-built-in-wavelet-families-7692bf99528a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@vcomposieux/redis-filter-and-sort-your-data-in-a-sql-like-way-using-sort-789d97f0d99 - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/how-to-create-a-custom-sized-thumbnail-in-python-using-pillow-50d6386150a5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@shouke.wei/basic-concepts-of-wavelets-transform-43830a68ac34 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@shouke.wei/plot-approximations-of-wavelet-and-scaling-functions-in-python-dabd31452bdf - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/building-a-docker-container-for-your-python-package-55b8eea8b1d4 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-wavelet-transform-e9cfa85d7b34 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mind-cafe/9-things-to-do-before-bed-that-will-help-you-wake-up-feeling-energized-7b8e0db91a30 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@designerswho/portfolios-that-got-designer-hired-at-uber-860364bb652d - 2023-10-06 - monthly - 1.0 - - - - https://humanparts.medium.com/classic-vinyl-966d25e8256c - 2023-10-06 - monthly - 1.0 - - - - https://raduzaharia.medium.com/how-to-monitor-ip-changes-using-cron-or-a-systemd-timer-3fbd957dd6b - 2023-10-06 - monthly - 1.0 - - - - https://ravthiru.medium.com/rbac-using-keycloak-with-spring-boot-3-0-af6bf3edcd38 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bytebytego-system-design-alliance/the-architects-blueprint-understanding-software-styles-and-patterns-with-cheatsheet-5c1f5fd55bbd - 2023-10-06 - monthly - 1.0 - - - - https://proviesec.medium.com/broken-link-hijacking-what-it-is-and-how-to-get-bounties-with-it-ca64db6a3f74 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/session-management-in-nodejs-using-redis-as-session-store-64186112aa9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/creating-middlewares-with-python-flask-166bd03f2fd4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@s12deff/bypass-antivirus-with-fibers-code-execution-7ef089f4232 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/obsidian-plugin-review-obsidian-timelines-8f98d3fa82b0 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/redis-streams-in-action-part-1-intro-and-overview-135f66d3ab58 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/my-obsidian-setup-part-27-habits-tracker-84478aebb18e - 2023-10-06 - monthly - 1.0 - - - - https://proandroiddev.com/traditional-mvvm-with-jetpack-compose-and-stateflow-7ca934e12784 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/why-default-cnn-are-broken-in-keras-and-how-to-fix-them-ce295e5e5f2 - 2023-10-06 - monthly - 1.0 - - - - https://beingpax.medium.com/obsidian-daily-notes-template-journal-edition-749500917c03 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/beginners-guide-to-clustering-techniques-164d6ad5dbb - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/why-causation-is-correlation-a-physicists-perspective-part-1-742696d130e8 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-much-do-data-scientists-make-c4c18c0820f0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/using-keycloak-with-spring-boot-3-0-376fa9f60e0b - 2023-10-06 - monthly - 1.0 - - - - https://blog.sourcerer.io/docker-image-in-production-1gb-or-100mb-a455ed5eb461 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/devgorilla/migrating-dockerfiles-from-debian-apt-to-alpine-apk-dcdfb16492c8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@WriteupsTHM_HTB_CTF/information-gathering-web-edition-hackthebox-55550356fbe - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@thefatshadow/a-request-from-your-fat-friend-what-i-need-when-we-talk-about-bodies-2442b5a8b06d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/5-easy-to-implement-tricks-to-trim-down-your-docker-image-size-263978a6ed29 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/top-5-speech-recognition-open-source-projects-and-libraries-with-most-stars-on-github-d705408b834 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/all-pandas-json-normalize-you-should-know-for-flattening-json-13eae1dfb7dd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/the-more-developed-the-more-depressed-755dd2a0bbaa - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/science-says-your-highest-alertness-is-at-10-a-m-why-wake-up-at-6-a-m-498529ca8939 - 2023-10-06 - monthly - 1.0 - - - - https://admiralcloudberg.medium.com/the-dead-mans-gambit-the-crash-of-ethiopian-airlines-flight-961-1a8a8daa566b - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/150-5-minute-data-matching-gig-6a5c10ce75d6 - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/comparing-pythons-top-tools-for-fuzzy-matching-pyfuzzy-fuzzywuzzy-recordlinkage-and-rapidfuzz-455cdfd6a65c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/invisible-illness/our-best-insomnia-medications-dont-even-work-on-sleep-f0ce514e9826 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/matter/youre-16-youre-a-pedophile-you-dont-want-to-hurt-anyone-what-do-you-do-now-e11ce4b88bdb - 2023-10-06 - monthly - 1.0 - - - - https://rahulbhadani.medium.com/installing-ros2-on-ubuntu-22-04-4f1e89d7139d - 2023-10-06 - monthly - 1.0 - - - - https://ashima96.medium.com/building-a-book-recommendation-system-a98c58a4f1bb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/journal-of-empirical-entrepreneurship/dissecting-startup-failure-by-stage-34bb70354a36 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/building-a-book-recommender-engine-from-scratch-and-deploying-it-to-a-web-application-eea029c4c1fb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/nerd-for-tech/how-to-set-up-github-for-a-unity-project-49672303dee2 - 2023-10-06 - monthly - 1.0 - - - - https://patriciaswilliams.medium.com/are-pedophiles-born-or-made-14037bda81e8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/finnovate-io/how-to-prevent-kubernetes-cron-jobs-with-sidecar-containers-from-getting-stuck-912c0f1497a3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/fintechexplained/so-what-exactly-is-the-internet-of-things-iot-89e165597b1d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/fintechexplained/the-guide-to-choose-the-right-database-for-your-project-74b1af4150ab - 2023-10-06 - monthly - 1.0 - - - - https://algowriting.medium.com/gpt-3-temperature-setting-101-41200ff0d0be - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lessons-from-history/the-cia-kgb-used-sex-tapes-to-overthrow-president-sukarno-491d97c6268f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/say-goodbye-to-loops-in-python-and-welcome-vectorization-e4df66615a52 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/alpine-slim-stretch-bookworm-bullseye-buster-jessie-which-docker-image-should-i-choose-500f8c15c8cf - 2023-10-06 - monthly - 1.0 - - - - https://sebastiancarlos.com/vatican-confirms-secret-while-true-loop-has-been-running-since-the-16th-century-dc6e0f18625e - 2023-10-06 - monthly - 1.0 - - - - https://alimustoofaa.medium.com/how-to-load-model-yolov8-onnx-runtime-b632fad33cec - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/5-lessons-i-learned-at-mit-3f31cf20af0 - 2023-10-06 - monthly - 1.0 - - - - https://alimustoofaa.medium.com/how-to-load-model-yolov8-onnx-cv2-dnn-3e176cde16e6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/the-pros-and-cons-of-publishing-under-a-custom-domain-on-medium-1e0994174fd9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/dataseries/roberta-robustly-optimized-bert-pretraining-approach-d033464bd946 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/mystery-of-entropy-finally-solved-after-50-years-stephen-wolfram-4e82ce1cd42 - 2023-10-06 - monthly - 1.0 - - - - https://keith-mcnulty.medium.com/was-school-math-easier-or-harder-in-1858-5b8b3676ce06 - 2023-10-06 - monthly - 1.0 - - - - https://dshark3y.medium.com/why-nextdns-should-be-on-all-your-devices-1f1c88ee77f7 - 2023-10-06 - monthly - 1.0 - - - - https://frisellagiuseppe.medium.com/quantum-mechanical-evolution-9694fac7b3c4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/knowledge-pills/understanding-microsoft-aspnetcore-authentication-jwtbearer-c3eff657b99d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/thedevproject/top-5-python-blogs-that-you-should-follow-and-read-in-2022-1d1671dccbf2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/how-to-scrape-trending-medium-articles-with-python-3b40af8cb29c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/techtofreedom/understand-the-property-decorator-of-python-classes-a6e75011cde2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/learn-python-in-10-minutes-fd6b4707ff0e - 2023-10-06 - monthly - 1.0 - - - - https://www.cantorsparadise.com/what-is-graph-theory-455f2e67891d - 2023-10-06 - monthly - 1.0 - - - - https://alfredbaudisch.medium.com/from-unity-to-godot-game-objects-and-components-in-godot-84594874efdc - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/top-10-python-libraries-for-data-science-you-cant-ignore-in-2023-38f1c8b24340 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/methods-to-estimate-customer-churn-risk-ce877c12407f - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/how-to-build-a-design-system-in-figma-6c169e3ea6cc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/build-a-blog-with-next-js-2315d9683ef - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/golang-services-metrics-instrumentation-for-kibana-apm-8d9fa8658af2 - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/books-ux-designers-should-read-in-2022-3738d3933085 - 2023-10-06 - monthly - 1.0 - - - - https://proandroiddev.com/migrate-from-groovy-to-kotlin-dsl-951266f3c072 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/read-local-json-data-with-next-js-2a56c20eb651 - 2023-10-06 - monthly - 1.0 - - - - https://konstantinmuenster.medium.com/adopting-a-no-code-mindset-11b3bef8b21d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/best-machine-learning-books-e2e37bf783b5 - 2023-10-06 - monthly - 1.0 - - - - https://patrickcuba.medium.com/data-vault-on-snowflake-performance-tuning-with-keys-d19902f2d9b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-i-was-using-naive-bayes-incorrectly-till-now-part-1-4ed2a7e2212b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/educreation/language-dialect-and-the-time-space-continuum-31ec7b581529 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/age-of-empathy/left-behind-a3ef19aa15c2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mind-cafe/a-legendary-creator-explains-how-to-do-great-work-in-four-unsimple-steps-27350c33dfec - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bouncin-and-behavin-blogs/marketing-and-advertising-follies-lost-in-translation-found-in-laughter-b5d4f2cb0d6f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/grow-the-unicorn/classification-model-accuracy-metrics-confusion-matrix-and-thresholds-afa2412e984c - 2023-10-06 - monthly - 1.0 - - - - https://christianlauer90.medium.com/snowflake-launches-new-array-functions-ba82dfecdace - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/node-js-is-dying-bun-1-0-is-changing-the-javascript-game-2892d4ff6921 - 2023-10-06 - monthly - 1.0 - - - - https://randomized0612.medium.com/2022-usenix-conference-on-privacy-engineering-practice-and-respect-key-takeaways-4940231a6085 - 2023-10-06 - monthly - 1.0 - - - - https://buckdown.medium.com/wtf-just-happened-at-burning-man-part-2-why-2023-was-black-rock-citys-finest-moment-6cd0b62d7cbc - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/pythons-args-and-kwargs-a-quick-and-easy-guide-with-examples-b4e223f5ad37 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-to-use-webassembly-to-transform-images-without-a-server-39db1a6e8c5 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/c-net-json-deserialization-with-system-net-http-json-and-httpclients-9f49ffb7d9e3 - 2023-10-06 - monthly - 1.0 - - - - https://agilebatman.com/9-steps-to-starting-scrum-from-scratch-2edc30265f80 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@fundamentalised/how-i-set-up-my-iphone-for-productivity-d75448c98d9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ruman/the-simple-trick-behind-my-iphone-home-screen-setup-to-build-good-habits-50afc569551f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@raphael.mansuy/ai-rag-vs-fine-tuning-which-is-the-best-tool-to-boost-your-llm-application-aaa3f4408999 - 2023-10-06 - monthly - 1.0 - - - - https://irtizahafiz.medium.com/whats-on-my-iphone-ios-16-edition-e012a02abe7a - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/using-nginx-to-serve-react-application-static-vs-proxy-69b85f368e6c - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/swift-3-creating-a-custom-view-from-a-xib-ecdfe5b3a960 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/jj-innovative-results/how-to-create-a-simple-hangouts-chat-bot-in-python-ce758270acc7 - 2023-10-06 - monthly - 1.0 - - - - https://michalmalewicz.medium.com/post-design-era-fd68c0ece9ab - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@PKMExplorer/setting-up-properties-for-my-obsidian-notes-9105f5c58d0f - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/why-you-should-never-use-methods-inside-templates-in-angular-497e0e11f948 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/produclivity/ptpl-069-obsidian-properties-are-just-the-help-i-needed-to-organise-my-notes-68b7759dadf4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@adityavikramsurana/obsidians-minimal-magic-d7d65639cd39 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mobile-app-development-publication/android-jetpack-compose-inset-padding-made-easy-5f156a790979 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/falcon-180b-can-it-run-on-your-computer-c3f3fb1611a9 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-walrus-operator-in-python-a315e4f84583 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-stata-guide/stata-and-github-integration-8c87ddf9784a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/python-3-11-new-features-that-you-will-truly-enjoy-9fd67882fdf - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/the-power-of-letting-go-how-surrendering-control-can-improve-your-life-5fa988aff7d - 2023-10-06 - monthly - 1.0 - - - - https://eand.co/why-there-was-no-biden-landslide-b7156091a2d8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/4-unsexy-macos-apps-that-save-me-30-hours-every-week-8ee37c46f6b8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-ascent/a-simple-philosophy-for-a-happy-life-defb4180da9b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-carrier-pigeon/child-free-women-are-tired-of-being-told-theyll-regret-it-5cac7557033a - 2023-10-06 - monthly - 1.0 - - - - https://coinsbench.com/template-for-hardhat-foundry-setup-e9c7af9c3e7b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/its-better-to-be-respected-than-liked-59316c9a84fa - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mind-cafe/6-behaviors-youre-unaware-of-that-are-holding-you-back-2b2241a39265 - 2023-10-06 - monthly - 1.0 - - - - https://elemental.medium.com/the-case-for-psychedelics-for-depression-is-getting-stronger-98d3197e7872 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/4-creative-mini-python-automation-projects-you-will-love-8803a35e4d7a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@cautaerts/you-are-abusing-the-init-method-db5ec7fb3df - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/how-to-boost-pandas-speed-and-process-10m-row-datasets-in-milliseconds-9f6b37fb407d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codechai/testing-provider-in-flutter-8fe3876796e1 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/fourier-transform-for-time-series-292eb887b101 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/towards-data-engineering/most-asked-complex-sql-queries-in-data-engineering-interviews-9fde381d23f8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@khairulomar/deconstructing-time-series-using-fourier-transform-e52dd535a44e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/parquet-file-format-everything-you-need-to-know-4eed5c0019e7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@avra42/how-to-build-a-personalized-pdf-chat-bot-with-conversational-memory-965280c160f8 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/say-goodbye-to-react-dnd-hello-to-dnd-kit-the-future-of-drag-and-drop-is-here-6aa488f17a0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/my-obsidian-setup-part-19-how-do-i-manage-my-projects-f7d9a5cd1dd0 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/pygwalker-a-python-library-for-visualizing-data-with-pandas-ff5fc6b59f33 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/extensions-development/chrome-extension-how-to-add-a-badge-on-your-extensions-icon-c3385b00932b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/aiguys/yolo-v4-explained-in-full-detail-5200b77aa825 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/refinery29/bmi-cant-tell-the-full-story-of-a-person-s-health-so-why-are-we-still-using-it-118586fcdc69 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/on-the-couch/dont-envy-highly-motivated-people-join-them-e7b223560ba5 - 2023-10-06 - monthly - 1.0 - - - - https://forge.medium.com/the-thing-that-matters-more-than-status-power-and-money-827c615ccc75 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-partnered-pen/how-to-tell-youre-a-storyteller-6097ed819a50 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/slackjaw/20-greek-sayings-about-the-name-john-82ce15709194 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-ultimate-guide-to-a-b-testing-part-2-data-distributions-5ed429abbce - 2023-10-06 - monthly - 1.0 - - - - https://tech.olx.com/clean-architecture-and-mvvm-on-ios-c9d167d9f5b3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@s12deff/creating-trojan-virus-in-5-minutes-480723077b49 - 2023-10-06 - monthly - 1.0 - - - - https://entreprenal.com/the-chatgpt-hype-is-over-now-watch-how-google-will-kill-chatgpt-426d5e3f7d05 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/object-detection-explained-yolo-v3-fdf83cc78d25 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/grabngoinfo/ols-treatment-effects-estimation-using-python-package-causal-inference-393306d53940 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/perplexity-in-language-models-87a196019a94 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/building-an-application-of-question-answering-system-from-scratch-2dfc53f760aa - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/fine-tuning-gpt2-for-text-generation-using-pytorch-2ee61a4f1ba7 - 2023-10-06 - monthly - 1.0 - - - - https://juldhais.net/object-reference-not-set-to-an-instance-of-an-object-b30402d4450d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/zillow-tech-hub/building-a-data-streaming-platform-how-zillow-sends-data-to-its-data-lake-821df8223ea2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mind-cafe/the-only-books-tim-cook-has-rated-five-stars-29d5dfd8950b - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/building-standardized-api-error-responses-in-spring-boot-3-with-the-problem-details-specification-226ca2626620 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/recommendation-systems-explained-a42fc60591ed - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bricksnbrackets/there-is-no-batterygate-just-poorly-educated-apple-users-85acf788e51d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/why-i-decided-to-start-my-small-one-person-business-empire-2ee925e5a0dd - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/causal-effects-via-dags-801df31da794 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/when-you-should-prefer-thompson-sampling-over-a-b-tests-5e789b480458 - 2023-10-06 - monthly - 1.0 - - - - https://jgefroh.medium.com/a-guide-to-using-nginx-for-static-websites-d96a9d034940 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/essential-python-libraries-for-web-scraping-and-data-extraction-45a763cc8155 - 2023-10-06 - monthly - 1.0 - - - - https://damienlawless.medium.com/nsfw-reddit-the-gooners-c25832d43ba0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/in-fitness-and-in-health/what-ive-learned-most-about-teaching-people-how-to-breathe-873eff1c1e38 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/getting-started-with-the-combine-framework-in-swift-36fe4ff6e568 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/sexography/gooning-sex-guide-what-is-gooning-444fbf9f07bb - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/scikit-llm-power-up-your-text-analysis-in-python-using-llm-models-within-scikit-learn-framework-e9f101ffb6d4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/tech-pulse/navigating-the-debugging-interview-insights-from-stripe-and-retool-697cead7c4db - 2023-10-06 - monthly - 1.0 - - - - https://thepaulo.medium.com/scheduling-jobs-in-a-super-computer-cluster-using-github-actions-2ee83405cb69 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/on-ab-tests-and-carryover-effect-43668dbd52e2 - 2023-10-06 - monthly - 1.0 - - - - https://kturek.medium.com/how-to-deal-with-dont-call-firebase-functions-before-checkdependencies-has-finished-in-unity-7a9c8adba754 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/spectral-entropy-an-underestimated-time-series-feature-94e18ae5b958 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/top-resoruces-to-learn-understand-large-language-models-4d339f7b685d - 2023-10-06 - monthly - 1.0 - - - - https://awstip.com/aws-lambda-local-debugging-with-vscode-7e9da24a4dca - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/how-to-accomplish-dynamic-absolute-positioning-in-androids-jetpack-compose-afa14f0e8dea - 2023-10-06 - monthly - 1.0 - - - - https://lowprofilefreedom.medium.com/gopath-and-goroot-set-up-in-mac-and-in-vscode-cf86d8503e57 - 2023-10-06 - monthly - 1.0 - - - - https://johnslegers.medium.com/the-decline-of-stack-overflow-7cb69faa575d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/devops-with-valentine/how-to-fix-some-user-is-not-in-the-sudoers-file-this-incident-will-be-reported-in-ubuntu-76135b9d5d83 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@andrew_johnson_4/leveraging-large-language-models-in-biology-research-4c791525b2e3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/top-data-certifications-for-a-successful-2024-ef1c78500a25 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/google-cloud/connecting-dbeaver-to-cloud-sql-3f672ece836b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mind-cafe/when-you-reach-the-age-of-screw-it-your-entire-life-changes-forever-4d8e4642cd46 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/alpha-beta-blog/a-man-for-all-markets-b8606ae7c905 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/on-the-couch/tell-me-how-you-love-and-ill-show-you-who-you-are-318c5c19b31f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/art-of-data-engineering/how-to-keep-going-as-a-data-engineer-and-stay-on-track-76f4d72b3557 - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/neovim-openai-codex-github-copilot-and-cheat-sh-f54dc9f2d3d5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/top-8-skills-to-stand-out-as-data-engineer-46d89054946a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-affirmations/you-can-crash-b978f935f91b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/pitfall/bye-bye-spotify-37bb823839d2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/10-interesting-easter-eggs-in-macos-hardly-0-1-of-people-know-677c6849c946 - 2023-10-06 - monthly - 1.0 - - - - https://blog.stackademic.com/the-sql-whisperer-lessons-i-learned-from-an-experienced-dba-cdf76ab4d448 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-store-financial-data-a-sql-vs-no-sql-comparison-bbd0d71bfc26 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/grabngoinfo/recommendation-system-user-based-collaborative-filtering-a2e76e3e15c4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/grabngoinfo/hybrid-recommendation-system-using-user-based-and-item-based-collaborative-filtering-c5e8283cd2dc - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/create-your-first-swift-package-command-plugin-3f918e2e8b8e - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/an-introduction-to-javascript-compile-time-processing-f77571e71dfd - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/angular-material-table-with-edit-function-like-excel-7c2c53332553 - 2023-10-06 - monthly - 1.0 - - - - https://allenhwkim.medium.com/esbuild-x-esbuild-extended-95807a1744fe - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/30-python-concepts-i-wish-i-knew-way-earlier-3add72af6433 - 2023-10-06 - monthly - 1.0 - - - - https://prawira.medium.com/react-execute-code-only-during-build-time-version-timestamp-3085b3d50274 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/should-we-be-virtualizing-our-data-science-systems-and-or-not-6cb69b4850f3 - 2023-10-06 - monthly - 1.0 - - - - https://cryptozoa.com/em-nft-marketplace-math-257a60943597 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/editing-better-programming-a1e46e1b3927 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/hand-over-product-prioritization-to-engineering-managers-heres-why-6927983f3580 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@wenqiglantz/an-overview-of-my-blog-posts-2868c1f87676 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/essential-techniques-to-style-pandas-dataframes-8796c74c9ff3 - 2023-10-06 - monthly - 1.0 - - - - https://balramchavan.medium.com/smarter-way-to-organize-import-statements-using-index-ts-file-s-in-angular-c685e9d645b7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/free-code-camp/build-an-apollo-graphql-server-with-typescript-and-webpack-hot-module-replacement-hmr-3c339d05184f - 2023-10-06 - monthly - 1.0 - - - - https://vtrsalgado.medium.com/a-simple-node-js-boilerplate-with-typescript-647c2601f04 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/cameron-nokes/the-30-second-guide-to-publishing-a-typescript-package-to-npm-89d93ff7bccd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/ovrsea/setup-a-typescript-project-with-eslint-prettier-and-vs-code-4ce4fcb76509 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/how-to-automatically-bump-npm-package-version-feee0e4dde6f - 2023-10-06 - monthly - 1.0 - - - - https://mpth.medium.com/use-autogenerated-typescript-type-definitions-from-any-api-inside-a-namespace-3c5bfad8f28d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/automatic-api-documentation-in-node-js-using-swagger-dd1ab3c78284 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/neo4j/securing-your-graph-with-neo4j-graphql-91a2d7b08631 - 2023-10-06 - monthly - 1.0 - - - - https://kongmunist.medium.com/accessing-the-iphone-accelerometer-with-javascript-in-ios-14-and-13-e146d18bb175 - 2023-10-06 - monthly - 1.0 - - - - https://brianodike.medium.com/remote-debugging-a-web-app-over-wi-fi-without-usb-fe1e3397beec - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@shouke.wei/how-to-embed-youtube-videos-in-the-jupyter-notebook-1a5fbfc0cdc2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/automating-file-management-in-obsidian-with-the-auto-note-mover-community-plugin-850dc6bda9f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@godfreythegreat/you-have-no-idea-how-addicted-you-are-5a7d6d2c2193 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@godfreythegreat/linear-success-is-a-lie-35c6ae24a595 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/my-obsidian-setup-project-management-803d6834a8d0 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/basics-of-kernels-and-convolutions-with-opencv-c15311ab8f55 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/free-tools-that-make-me-more-productive-on-windows-a3e381cc298d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/my-obsidian-setup-daily-notes-journaling-and-habits-tracker-f6f65119e59e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/live-your-life-on-purpose/you-only-die-once-5100d2a00aee - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/my-obsidian-setup-my-notes-and-my-theme-settings-8f434eb377ba - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/pre-commit-hooks-you-must-know-ff247f5feb7e - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/keyboardoptions-in-jetpack-compose-a-beginners-guide-97b2154ab742 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/unet-line-by-line-explanation-9b191c76baf5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/grabngoinfo/recommendation-system-item-based-collaborative-filtering-f5078504996a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/8-paid-macos-apps-that-cost-money-but-save-you-time-db23685013d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/9-new-must-have-macos-productivity-apps-for-daily-usage-fec955b1510c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/8-insanely-useful-macos-productivity-apps-you-never-heard-of-513cfce9ff08 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/introskeptic/three-vital-misconceptions-about-meditation-c5d8332297d0 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/run-airflow-docker-1b83a57616fb - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/practical-python-how-to-write-and-deploy-a-monitoring-notification-service-within-minutes-for-free-b682cffa66ef - 2023-10-06 - monthly - 1.0 - - - - https://raymondlind.medium.com/stored-xss-to-cookie-exfiltration-2cbca6a8c7f0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@zeeshanJ./get-paid-15-every-15-minutes-with-cpa-marketing-make-money-online-2023-44269a2810c6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@joeyabanks/a-guide-to-variables-in-figma-b500b80d4e4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-generator/how-to-create-hidden-face-portraits-on-midjourney-c15fe02cbc51 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/ai-genesis/the-midjourney-cheat-sheet-v5-7b535f3a29af - 2023-10-06 - monthly - 1.0 - - - - https://interviewnoodle.com/i-got-interviews-with-all-of-faang-as-a-new-grad-swe-ed57c5a58f86 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/productive-data-science/out-of-core-larger-than-ram-machine-learning-with-dask-9d2e5f29d733 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/the-resume-that-got-me-interviews-with-all-faang-companies-new-grad-swe-e4b96af0c64 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/how-to-find-balance-between-analytical-and-emotional-intelligence-c97a80821c13 - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/the-impact-of-ai-on-ux-design-opportunities-and-challenges-a9e466d319ad - 2023-10-06 - monthly - 1.0 - - - - https://ice-wzl.medium.com/hackthebox-lame-d3b6fea82d21 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/serious-philosophy/philosophical-suicide-in-the-myth-of-sisyphus-a6d305be8dda - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/good-leaders-have-the-right-questions-not-all-the-answers-13e27c031b00 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@bjhenslee/developing-emotional-intelligence-491042f81865 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-mission/the-ultimate-guide-to-emotional-intelligence-to-be-happy-and-successful-in-a-brain-dead-world-5d050e316640 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/bayesian-ab-testing-part-ii-revenue-1fbcf04f96cd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/serious-philosophy/sartre-on-camus-b7f093d0761e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/serious-philosophy/albert-camus-on-happiness-88b833c9406e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/the-pain-of-a-terraform-nested-for-loop-4a9c09f64290 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@WriteupsTHM_HTB_CTF/owasp-api-security-top-10-1-tryhackme-54c545d06c87 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/understanding-the-basics-of-digital-image-processing-and-computer-vision-using-opencv-8bc0e67243c8 - 2023-10-06 - monthly - 1.0 - - - - https://kevinkreuzer.medium.com/the-ultimate-guide-to-style-projected-content-in-angular-731c0721902f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/time-series-modeling-using-scikit-pandas-and-numpy-682e3b8db8d1 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-ultimate-guide-to-training-bert-from-scratch-introduction-b048682c795f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/consol/light-more-light-uva-10110-8adfbe86a68f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/sysf/playing-with-geometry-spatial-data-type-in-mysql-645b83880331 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-ultimate-guide-to-training-bert-from-scratch-the-tokenizer-ddf30f124822 - 2023-10-06 - monthly - 1.0 - - - - https://systemweakness.com/chatgpt-powered-malware-bypasses-edr-c9a66af5cec1 - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/gams-and-smoothing-splines-part-2-tensor-product-splines-97928f226a2c - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/gams-and-smoothing-splines-part-1-simplified-8c5e2c10dbaa - 2023-10-06 - monthly - 1.0 - - - - https://lucasjellema.medium.com/run-and-access-gui-inside-vs-code-devcontainers-b572643d0d2a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@basics.machinelearning/tokenization-in-openai-api-lets-explore-tiktoken-library-d02d3ce94b0a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/retrieving-openstreetmap-data-in-python-1777a4be45bb - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/naive-bayes-algorithm-for-classification-bc5e98bff4d7 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/understanding-logistic-regression-81779525d5c6 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/are-you-interpreting-your-logistic-regression-correctly-d041f7acf8c7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/kubernetes-tutorials/deploying-traefik-as-ingress-controller-for-your-kubernetes-cluster-b03a0672ae0c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codestorm/custom-json-response-with-responseentity-in-spring-boot-b09e87ab1f0a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/aiguys/mlflow-on-gcp-for-experiment-tracking-151ac5ccebc7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@gveloper/using-iterm2s-built-in-integration-with-tmux-d5d0ef55ec30 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/deploy-interactive-real-time-data-visualizations-on-flask-with-bokeh-311239273838 - 2023-10-06 - monthly - 1.0 - - - - https://stefan-poeltl.medium.com/build-and-deploy-a-static-business-website-in-10-minutes-with-hugo-and-a-npm-package-9cda07d9ed92 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-colab-with-tpu-98e0b4230d9c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-train-a-bert-model-from-scratch-72cfce554fc6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/how-to-build-a-successful-saas-online-business-in-2022-7452a6fa984 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@The-Quant-Trading-Room/quantum-monte-carlo-simulation-the-future-of-options-pricing-574543edd471 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-infinite-universe/the-stick-figure-universe-of-information-theory-and-why-reality-is-so-much-more-621d15ec33a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-convert-sql-query-results-to-a-pandas-dataframe-a50f0d920384 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/new-ai-programming-language-mojo-35-000-times-faster-than-python-c7a03507715e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jeremyarancio/fine-tune-an-llm-on-your-personal-data-create-a-the-lord-of-the-rings-storyteller-6826dd614fa9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/cloud-native-the-gathering/go-kit-vs-micro-vs-gizmo-comparison-what-the-internet-is-saying-5b396058c5b2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/convert-currencies-automatically-with-python-python-in-audit-2-6c574dbae44 - 2023-10-06 - monthly - 1.0 - - - - https://caseorganic.medium.com/what-it-means-to-design-technology-thats-pass-through-e8f89f76c46 - 2023-10-06 - monthly - 1.0 - - - - https://felsull.medium.com/how-to-use-brand-building-techniques-to-find-your-voice-as-a-writer-330769db92 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/non-negative-matrix-factorization-nmf-for-dimensionality-reduction-in-image-data-8450f4cae8fa - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/10-best-practices-for-naming-rest-api-endpoints-442ae592a3a0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/grief-book-club/coraline-and-all-the-art-we-stand-to-lose-b8121161d5cd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/i-met-a-quiet-millionaire-who-operates-a-2-5m-tiny-business-while-working-2-3-hours-a-day-8776fe7f1d51 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/awesome-cloud/aws-serverless-services-and-serverless-computing-in-aws-a1298ace0e3c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@stringmeteor/using-ffmpeg-for-archiving-duties-8a6aa9168867 - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/in-depth-tokenization-methods-of-14-nlp-libraries-with-python-example-297ecdd14c1 - 2023-10-06 - monthly - 1.0 - - - - https://www.cantorsparadise.com/it-took-me-10-years-to-understand-entropy-here-is-what-i-learned-b2d51e8ccd4c - 2023-10-06 - monthly - 1.0 - - - - https://aurelien-pelissier.medium.com/on-the-conservation-of-information-and-the-second-law-of-thermodynamics-f22c0645d8ec - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mobile-app-development-publication/keep-your-kotlin-flow-alive-and-listening-with-callbackflow-c95e5dd545a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/intuition/understanding-pointers-in-c-programming-language-415480510a4a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/tokenization-for-natural-language-processing-a179a891bad4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/the-difference-between-%CE%B4-and-in-physics-and-mathemastics-a5c18e26119e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@NovelNestBooks/25-ridiculously-enjoyable-mathematics-books-i-cant-stop-recommending-aspiring-mathematicians-ec2dea859731 - 2023-10-06 - monthly - 1.0 - - - - https://frisellagiuseppe.medium.com/how-entanglement-creates-thermodynamics-84e474d0dc06 - 2023-10-06 - monthly - 1.0 - - - - https://keith-mcnulty.medium.com/how-to-break-a-math-problem-down-from-first-principles-ad5daafcd8e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/invisible-illness/5-counterintuitive-decluttering-hacks-for-people-with-adhd-e25cce929773 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/5-big-mistakes-to-avoid-around-someone-with-adhd-85b115a2b307 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@saurav.agg19/ransom-note-problem-in-java-3eb05fc24dd8 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-detect-outliers-in-a-data-science-project-17f39653fb17 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-we-optimized-postgresql-queries-100x-ff52555eabe - 2023-10-06 - monthly - 1.0 - - - - https://nodeteam.medium.com/how-to-optimize-postgresql-queries-226e6ff15f72 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/antigua-mobile/easy-push-notifications-with-flutter-and-firebase-cloud-messaging-d96084f5954f - 2023-10-06 - monthly - 1.0 - - - - https://themakingofamillionaire.com/the-5-rule-2a0af60d345c - 2023-10-06 - monthly - 1.0 - - - - https://pyqml.medium.com/the-unvarnished-truth-about-what-quantum-computing-really-is-526e517df5a2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/data-science-at-microsoft/onboarding-to-a-data-science-team-2b735dae464 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-share-your-jupyter-notebook-in-3-lines-of-code-with-ngrok-bfe1495a9c0c - 2023-10-06 - monthly - 1.0 - - - - https://annamercury.medium.com/the-fundamental-flaw-in-economic-dbb9837d1487 - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/one-research-backed-method-to-deal-with-uncertainty-d30859d3bee1 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/catch-up-on-large-language-models-8daf784f46f8 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/interpreting-acf-and-pacf-plots-for-time-series-forecasting-af0d6db4061c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/snowflake/snowflake-swap-with-the-common-misconception-1cd99545fe6a - 2023-10-06 - monthly - 1.0 - - - - https://graymiller.medium.com/the-reality-of-neurodivergence-knees-dont-lie-a3c856fba899 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/webapp-nginx-and-ssl-in-docker-compose-6d02bdbe8fa0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/erotic-fantasies/making-moms-boyfriend-mine-51624fba206f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/high-and-horny-magazine/i-smoked-his-joint-and-fucked-him-with-my-tits-dc82d07c4aa4 - 2023-10-06 - monthly - 1.0 - - - - https://beingpax.medium.com/new-obsidian-showcases-dashboards-kanban-habit-tracking-more-5ea2cac835e4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@avra42/how-to-build-a-chatbot-with-chatgpt-api-and-a-conversational-memory-in-python-8d856cda4542 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/erotic-fantasies/sharing-moms-boyfriend-at-the-sleep-over-201d55f92fd9 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/tricks-for-datapane-embedding-with-medium-9b47d1d319e0 - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/10-python-decorators-to-take-your-code-to-the-next-level-887eac41e2f4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/wealthy-bytes/visualizing-free-stock-data-for-algorithmic-trading-with-python-and-matplotlib-dca1abbd286c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/aimonks/a-guide-to-integrating-lunarvim-github-copilot-61d92f764913 - 2023-10-06 - monthly - 1.0 - - - - https://georgejziogas.medium.com/2024-election-controversy-will-history-repeat-with-another-imprisoned-candidate-3ac025e9399f - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/tenor-api-gifs-with-swifts-uicollectionviewcells-objective-c-avfoundation-736c6e14e423 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/working-with-the-3d-camera-on-the-samsung-s10-5g-4782336783c - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/3-best-often-better-alternatives-to-histograms-b588f3850ce8 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdev.com/google-launches-new-json-quantitive-like-operator-functions-for-bigquery-554c7d015075 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/working-with-apis-in-data-science-explore-bit-rent-theory-in-singapores-hdb-resale-market-d7760fdfc601 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/creating-beautiful-stand-alone-interactive-d3-charts-with-python-804117cb95a7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ooemma83/clear-explanations-of-ar-ma-arma-and-arima-in-times-series-analysis-9a72ff569dee - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/sum-a-b-vs-sum-a-sum-b-31fb094b786 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@WriteupsTHM_HTB_CTF/identity-and-access-management-tryhackme-f3a64d5109bf - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@rubentak/give-openai-models-with-internet-access-using-langchain-7d5849f33e03 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/demystifying-jwt-a-guide-for-front-end-developers-ead6574531c3 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/introduction-to-data-visualization-in-javascript-with-d3-js-build-charts-like-medium-stats-f856ac5faf3d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/i-tried-guidance-a-language-to-control-llms-and-i-am-impressed-cca3626a5dea - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/proper-validation-of-a-time-series-model-5c1b54f43e60 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@aravind.sundaresan/getting-started-with-d3-js-for-data-visualization-5870efbd133b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/fuzzing-tests-in-go-96eb08b7694d - 2023-10-06 - monthly - 1.0 - - - - https://jskim1991.medium.com/improving-performance-of-react-app-using-nginx-a7460db423d4 - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/revitalizing-your-authentication-a-guide-to-implementing-refresh-tokens-in-javascript-712dc273a136 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/a-complete-guide-to-amazon-redshift-and-power-bi-67d387614ffa - 2023-10-06 - monthly - 1.0 - - - - https://blog.stackademic.com/building-scalable-web-applications-with-php-laravel-symfony-and-codeigniter-26150bf7959d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/rome-magazine/steve-jobs-is-not-a-genius-heres-why-d4187b234920 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/yolo-nas-how-to-achieve-the-best-performance-on-object-detection-tasks-6b95347908d4 - 2023-10-06 - monthly - 1.0 - - - - https://ai.plainenglish.io/start-using-better-labels-for-financial-machine-learning-6eeac691e660 - 2023-10-06 - monthly - 1.0 - - - - https://miscellaneplans.medium.com/whats-in-my-bag-bellroy-mobile-office-and-edc-24d6a6930f2b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/trends-in-obsidian-as-determined-by-15-most-downloaded-plugins-4b1e0c973094 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@petermilovcik/get-more-out-of-obsidian-the-6-note-types-to-elevate-your-pkm-e713dbd02838 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/martin-fowler-was-right-microservices-suck-573bbf09a0fd - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/micro-frontends-using-single-spa-and-module-federation-81ec27d03aee - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/convolutional-neural-networks-22764af1c42a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/aiguys/paper-review-convnext-or-convnets-for-2020s-21455e665b68 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lessons-from-history/why-mongolians-love-genghis-khan-47644b1dafeb - 2023-10-06 - monthly - 1.0 - - - - https://gmusumeci.medium.com/terraform-variable-validation-examples-9acb475bb8eb - 2023-10-06 - monthly - 1.0 - - - - https://proandroiddev.com/better-dependencies-management-using-buildsrc-kotlin-dsl-eda31cdb81bf - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/advanced-candlesticks-for-machine-learning-ii-volume-and-dollar-bars-6cda27e3201d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@WriteupsTHM_HTB_CTF/threat-modelling-tryhackme-a775b6fe3862 - 2023-10-06 - monthly - 1.0 - - - - https://ai.plainenglish.io/open-interpreter-the-ultimate-guide-to-running-chatgpt-code-locally-b27a73d852ed - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/14-ways-to-optimize-bigquery-sql-for-ferrari-speed-at-honda-cost-632ec705979 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mobile-app-development-publication/recyclerview-with-compose-view-is-not-performant-97c74df4b77f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/bigquery-optimization-strategies-3-table-flattening-373d34c08cea - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/quick-start-with-calayer-and-cabasicanimation-e3ff17ea6f11 - 2023-10-06 - monthly - 1.0 - - - - https://sm4rty.medium.com/free-350-tryhackme-rooms-f3b7b2954b8d - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/container-queries-why-its-time-to-consider-them-in-figma-and-how-to-implement-them-8e4e9349b8e4 - 2023-10-06 - monthly - 1.0 - - - - https://stevenpcurtis.medium.com/calayers-a-guide-for-swift-731581ea82d3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-build-efficient-and-perfomant-data-structures-in-bigquery-7981203b8a62 - 2023-10-06 - monthly - 1.0 - - - - https://harris.medium.com/what-to-do-when-he-doesnt-text-back-98949d70d06d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mind-cafe/a-lesson-on-knowing-your-worth-971e65311a03 - 2023-10-06 - monthly - 1.0 - - - - https://ajaksecurity.medium.com/how-to-become-a-successful-bug-bounty-hunter-in-2023-f3c1499959da - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/thinking-about-fine-tuning-an-llm-heres-3-considerations-before-you-get-started-c1f483f293 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-vectorize-text-in-dataframes-for-nlp-tasks-3-simple-techniques-82925a5600db - 2023-10-06 - monthly - 1.0 - - - - https://iamalexmathers.medium.com/if-youre-worried-about-money-read-this-for-quick-relief-b82543ff493a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/the-smartest-way-to-write-content-that-gets-you-noticed-63e43fe193b9 - 2023-10-06 - monthly - 1.0 - - - - https://venture.circuit.ooo/crushing-your-1st-blog-post-4063bbee6243 - 2023-10-06 - monthly - 1.0 - - - - https://aruva.medium.com/using-chatgpt-to-build-system-diagrams-part-i-69efc7603926 - 2023-10-06 - monthly - 1.0 - - - - https://tiangolo.medium.com/the-future-of-fastapi-and-pydantic-is-bright-2d1785a603a9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@estebanthi/how-to-augment-your-obsidian-worflow-71cff272f1e0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/improve-your-data-models-with-pydantic-f9f10ca66f26 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-speedup-data-processing-with-numpy-vectorization-12acac71cfca - 2023-10-06 - monthly - 1.0 - - - - https://huryn.medium.com/continuous-product-discovery-101-examples-notion-template-e403cbd0b4b3 - 2023-10-06 - monthly - 1.0 - - - - https://productcoalition.com/sorry-teresa-im-turning-your-product-tree-upside-down-f9b87fa77a75 - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/working-with-sessions-in-next-js-64e8ead25b60 - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/opportunity-solution-trees-everything-you-need-to-know-308f3d987d0f - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/cracking-the-google-coding-interview-3b8dd29b0d6a - 2023-10-06 - monthly - 1.0 - - - - https://alexanderlyadov.medium.com/%D1%83%D1%82%D0%B8%D0%BD%D1%8B%D0%B9-%D1%82%D0%B5%D1%81%D1%82-247fe0513559 - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/building-a-restful-api-with-fastapi-secure-signup-and-login-functionality-included-45cdbcb36106 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/47billion/creating-a-bridge-in-flutter-between-dart-and-native-code-in-java-or-objectivec-5f80fd0cd713 - 2023-10-06 - monthly - 1.0 - - - - https://maivankhanh.medium.com/i-tried-using-chatgpt-to-generate-diagrams-graphs-charts-with-mermaid-js-org-7019f6214ca5 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/fine-tuning-bert-for-text-classification-54e7df642894 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/nuances-of-programming/%D1%83%D1%82%D0%B8%D0%BD%D0%B0%D1%8F-%D1%82%D0%B8%D0%BF%D0%B8%D0%B7%D0%B0%D1%86%D0%B8%D1%8F-%D0%B2-python-3-%D0%BF%D1%80%D0%B8%D0%BC%D0%B5%D1%80%D0%B0-3b5f02de2d14 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@gareth.stretton/obsidian-create-your-own-web-clipper-add83c7662d0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/human-in-a-machine-world/mae-and-rmse-which-metric-is-better-e60ac3bde13d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/plumbersofdatascience/how-data-engineers-can-use-sql-to-estimate-bigquery-storage-costs-cbcdfca18899 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/nuances-of-programming/%D0%B7%D0%BD%D0%B0%D0%BA%D0%BE%D0%BC%D1%81%D1%82%D0%B2%D0%BE-%D1%81-anaconda-%D1%87%D1%82%D0%BE-%D1%8D%D1%82%D0%BE-%D1%82%D0%B0%D0%BA%D0%BE%D0%B5-%D0%B8-%D0%BA%D0%B0%D0%BA-%D1%83%D1%81%D1%82%D0%B0%D0%BD%D0%BE%D0%B2%D0%B8%D1%82%D1%8C-2c19b3e8226 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@TechSavvyScribe/using-async-await-in-swiftui-smooth-ui-updates-with-asynchronous-data-fetching-66295740ec6e - 2023-10-06 - monthly - 1.0 - - - - https://theosintion.medium.com/browsers-for-privacy-opsec-and-osint-b4157382f218 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/dockerizing-a-react-application-with-multi-stage-docker-build-4a5c6ca68166 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/8-micro-tips-for-remarkably-better-typography-986c8c4f6d85 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/private-gpt-fine-tune-llm-on-enterprise-data-7e663d808e6a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@SaiParvathaneni/short-reads-comparing-apache-kafka-aws-kinesis-and-azure-event-hubs-8e97270af86 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@susi.guth/the-digital-product-passport-and-its-technical-implementation-efdd09a4ed75 - 2023-10-06 - monthly - 1.0 - - - - https://ferie.medium.com/what-is-the-the-server-side-rendering-and-how-it-works-aedffe41f8a6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/spherity/accessing-digital-product-passports-with-decentralized-identifiers-dids-175ca455cee3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@sahityamaruvada/setting-up-aws-network-load-balancer-with-terraform-0-12-b87e75992949 - 2023-10-06 - monthly - 1.0 - - - - https://machine-learning-made-simple.medium.com/the-biggest-mistake-youre-probably-making-for-your-faang-maang-interview-prep-39af2cfc2556 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/architecting-for-the-ilities-6fae9d00bf6b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/spectral-clustering-aba2640c0d5b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lost-but-coding/fixing-orphaned-unreachable-semantic-nodes-in-flutter-for-voiceover-and-talkback-dae1c9cafe53 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/intuition/the-intuition-behind-the-three-laws-of-thermodynamics-84621a4d4f62 - 2023-10-06 - monthly - 1.0 - - - - https://iamalexmathers.medium.com/seven-habits-of-the-most-energised-people-i-know-3052e04723d1 - 2023-10-06 - monthly - 1.0 - - - - https://blog.det.life/exploring-the-superiority-of-window-expressions-over-group-by-in-apache-spark-71a8da0cec74 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/what-is-project-lombok-and-how-to-use-it-with-spring-boot-d6034f865541 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/are-you-making-these-sql-join-mistakes-920a9f7678ac - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@mares.viktor/unusual-403-bypass-to-a-full-website-takeover-external-pentest-4970c788c6bf - 2023-10-06 - monthly - 1.0 - - - - https://cryptozoa.com/in-the-blue-corner-em-unlimited-nfts-in-the-red-corner-em-futures-b4aa35e2a282 - 2023-10-06 - monthly - 1.0 - - - - https://blog.dipien.com/stop-generating-the-buildconfig-on-your-android-modules-7d82dd7f20f1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/sarima-vs-prophet-forecasting-time-series-b121e1e2bd37 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@bnjmn_marie/fine-tune-falcon-7b-on-your-gpu-with-trl-and-qlora-4490fadc3fbb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@MellissaCBurkett/how-i-make-1000-every-week-day-trading-futures-strategy-indicator-fc972a8a47ca - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@martin-thissen/how-to-fine-tune-the-alpaca-model-for-any-language-chatgpt-alternative-370f63753f94 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mind-cafe/i-read-over-100-self-improvement-books-to-learn-these-10-life-lessons-b813da52c606 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/front-end-weekly/es6-set-vs-array-what-and-when-efc055655e1a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/front-end-weekly/es6-map-vs-object-what-and-when-b80621932373 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bouncin-and-behavin-blogs/i-learned-something-about-myself-at-pride-2023-yesterday-7d398e067030 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/accelerated-intelligence/so-passionate-you-never-stop-improving-the-secret-behind-the-success-of-asimov-jobs-seinfeld-f5b715a9cea1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-telegraph-engineering/an-insiders-story-of-the-telegraph-s-online-evolution-68cde170e438 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/age-of-awareness/i-journaled-every-day-for-90-days-heres-what-i-learned-a444aea689c6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/data-science-365/acquire-understand-and-prepare-the-mnist-dataset-3d71a84e07e7 - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/6-pandas-mistakes-that-silently-tell-you-are-a-rookie-f075c91595e9 - 2023-10-06 - monthly - 1.0 - - - - https://danoncoding.com/tricky-kubernetes-memory-management-for-java-applications-d2f88dd4e9f6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/investing-is-the-arm-ipo-the-market-top-bf6647858252 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-practice-documentation-as-an-aspiring-data-scientist-1de9c4f2f843 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@zeeshanJ./get-paid-4-for-every-tiktok-video-watched-make-money-online-step-by-step-guide-b86e02593cf4 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/stop-using-csvs-for-storage-here-are-the-top-5-alternatives-e3a7c9018de0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/medialesson/datetime-vs-datetimeoffset-utcnow-vs-now-a9eaab011e44 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/csharp-indonesia/linq-entity-framework-sql-cheat-sheet-1b3f087f673e - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/ultimate-net-project-setup-with-clean-architecture-and-domain-driven-design-3bf9e8173420 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@shubhadeepchat/rate-limiting-using-net-core-6-0-and-nuget-package-26f272408392 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/everything-you-need-to-know-about-albert-roberta-and-distilbert-11a74334b2da - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@AmandaMichelle12/python-automation-can-help-you-make-1-000-per-day-54f46dee6b7a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/paths-in-python-38197dd618c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/bert-roberta-distilbert-xlnet-which-one-to-use-3d5ab82ba5f8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/awesome-azure/azure-difference-between-azure-blob-storage-and-azure-data-lake-storage-comparison-azure-blob-vs-adls-gen2-81af5ef2a6e1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@Stan_DS/reading-multiple-pdfs-and-identifying-sources-using-langchain-chromedb-and-openai-api-4e5a5ca47c42 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/solid-principles-of-oop-c24bd6ccde77 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/data-layer-using-the-repository-pattern-e32b19b04466 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/unlock-the-full-potential-of-react-with-the-compound-components-pattern-495a1bdb8b8f - 2023-10-06 - monthly - 1.0 - - - - https://shiva-verma.medium.com/generating-human-faces-using-adversarial-network-960863bc1deb - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/using-conditional-deep-convolutional-gans-to-generate-custom-faces-from-text-descriptions-e18cc7b8821 - 2023-10-06 - monthly - 1.0 - - - - https://code.likeagirl.io/on-feeling-stupid-as-an-early-career-software-engineer-eda5add414e1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@philippetousignant/comparing-forecast-accuracy-in-python-diebold-mariano-test-ad109026f6ab - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/deploying-a-docker-container-with-ecs-and-fargate-7b0cbc9cd608 - 2023-10-06 - monthly - 1.0 - - - - https://publication.osintambition.org/how-to-find-online-cameras-with-netlas-io-c68cdf5f327f - 2023-10-06 - monthly - 1.0 - - - - https://onezero.medium.com/the-internet-heist-part-i-3395769891b0 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-evaluate-representations-886ce5ef7a66 - 2023-10-06 - monthly - 1.0 - - - - https://judedoyle.medium.com/all-our-girls-c42703630e03 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/understanding-random-forests-hyperparameters-with-images-9b53fce32cb3 - 2023-10-06 - monthly - 1.0 - - - - https://judedoyle.medium.com/a-vindication-of-the-rights-of-ken-58b72191e083 - 2023-10-06 - monthly - 1.0 - - - - https://frisellagiuseppe.medium.com/the-long-term-trading-strategy-that-could-actually-make-you-rich-30ae55f665e5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/this-obsidian-weekly-template-can-completely-replace-your-daily-notes-cff259116c8e - 2023-10-06 - monthly - 1.0 - - - - https://judedoyle.medium.com/i-regret-to-inform-you-that-barbie-is-a-childrens-movie-d684a71368d3 - 2023-10-06 - monthly - 1.0 - - - - https://beingpax.medium.com/useful-obsidian-templater-functions-you-need-to-know-about-b24a1e3bcfec - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/the-key-points-of-implementing-convolutional-neural-networks-from-research-papers-f20462d1211a - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/converting-sql-query-results-into-objects-backend-vs-frontend-ec51109fe490 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/write-right-write/the-5-things-nobody-tells-you-about-publishing-on-medium-that-you-need-to-know-right-now-13cb6b72a9f1 - 2023-10-06 - monthly - 1.0 - - - - https://bretcameron.medium.com/how-to-use-the-google-drive-api-with-javascript-57a6cc9e5262 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/kernel-methods-a-simple-introduction-4a26dcbe4ebd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mobile-app-development-publication/comparing-stateflow-sharedflow-and-callbackflow-2f0d03d48a43 - 2023-10-06 - monthly - 1.0 - - - - https://onezero.medium.com/the-internet-heist-part-ii-cb2add31a4fb - 2023-10-06 - monthly - 1.0 - - - - https://jamesmsama.medium.com/most-men-wont-tell-you-these-12-relationship-needs-but-i-will-f7b1838843ea - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/extract-tables-from-pdf-file-in-a-single-line-of-python-code-5b572cd9fbe5 - 2023-10-06 - monthly - 1.0 - - - - https://chesterbeard.medium.com/nextjs-vs-vue-512c2c547d69 - 2023-10-06 - monthly - 1.0 - - - - https://ngwaifoong92.medium.com/how-to-fine-tune-stable-diffusion-using-lora-85690292c6a8 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/from-causal-trees-to-forests-43c4536f1481 - 2023-10-06 - monthly - 1.0 - - - - https://judedoyle.medium.com/welcome-to-the-world-of-the-artificial-womb-808c0b3ec359 - 2023-10-06 - monthly - 1.0 - - - - https://judedoyle.medium.com/men-can-be-single-without-murdering-anybody-8e8d7274d386 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/practical-guide-for-visualizing-cnns-using-saliency-maps-4d1c2e13aeca - 2023-10-06 - monthly - 1.0 - - - - https://onezero.medium.com/how-to-produce-a-great-livestreamed-event-on-any-budget-8d860c328e5d - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/how-to-trap-focus-inside-modal-to-make-it-ada-compliant-6a50f9a70700 - 2023-10-06 - monthly - 1.0 - - - - https://blog.bitsrc.io/how-to-use-indexeddb-a-nosql-db-on-the-browser-f845da3caf35 - 2023-10-06 - monthly - 1.0 - - - - https://blog.bitsrc.io/sessionstorage-and-localstorage-a-ux-security-comparison-a05c486413e0 - 2023-10-06 - monthly - 1.0 - - - - https://adriandrew.medium.com/this-is-why-people-arent-reading-your-articles-909176b852a8 - 2023-10-06 - monthly - 1.0 - - - - https://edward-cernera.medium.com/deploying-a-react-wordpress-website-with-docker-compose-93051b7cfbae - 2023-10-06 - monthly - 1.0 - - - - https://bettermarketing.pub/if-you-believe-aggressive-marketing-doesnt-work-you-re-unfortunately-wrong-b96a87d458c3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-ai-publishing-experiment/could-ai-change-the-course-of-history-by-altering-the-past-dc4bcc9db427 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bouncin-and-behavin-blogs/grandmas-mango-tree-and-the-secret-to-its-sweet-fruit-2824f7e57f49 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/2-easy-ways-to-read-google-sheets-data-using-python-9e7ef366c775 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-mystery-box/the-flannan-isles-lighthouse-disappearances-2fa314f9b4cb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/crimebeat/the-mysterious-ghost-ship-that-killed-her-crew-and-sunk-without-a-trace-da7fea3ef0dc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@bitpixi/being-a-product-designer-with-adhd-7bde8aaa3e84 - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/neovim-for-beginners-code-folding-7574925412ea - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tszumowski/how-to-inject-environment-variables-into-kubernetes-pods-after-deployment-489306fff1a8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/spice-up/6-hot-sexy-steamy-paragraphs-from-bestselling-erotic-novels-c02658b22482 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/streamwriter/api-gateway-aspnet-core-a46ef259dc54 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@thomasjay200/stop-using-integer-ids-in-your-database-5e5126a25dbe - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/full-stack-next-js-notion-clone-clerk-prisma-planetscale-tiptap-shadcn-ui-5cae5ad7bfc7 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/numpy-typecodes-cheatsheet-1c4cd8fd2318 - 2023-10-06 - monthly - 1.0 - - - - https://rootisgod.com/5-essential-tools-to-run-your-own-homelab-a08ad48045b1 - 2023-10-06 - monthly - 1.0 - - - - https://jerameel.medium.com/moving-away-from-raspberry-pi-as-my-home-server-3dc2bfe9a2c0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@pushkarmandot/https-medium-com-pushkarmandot-what-is-lightgbm-how-to-implement-it-how-to-fine-tune-the-parameters-60347819b7fc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coinmonks/solidity-proxies-4ca6b0dcbdeb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@cannon_circuit/why-are-javascript-pros-saying-goodbye-to-typescript-8c4bc8ec82a1 - 2023-10-06 - monthly - 1.0 - - - - https://blog.stackademic.com/stop-using-npm-to-install-node-modules-8f1bd7be9918 - 2023-10-06 - monthly - 1.0 - - - - https://benenewton.medium.com/how-i-automatically-import-my-meetings-into-my-daily-note-template-3d9537b17dea - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/building-a-stable-data-warehouse-158c206ded6 - 2023-10-06 - monthly - 1.0 - - - - https://forge.medium.com/mastering-the-art-of-ambling-into-minimalism-144932d2135b - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/how-to-find-out-if-someone-really-knows-angular-4bd335f8d180 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lessons-from-history/scared-to-death-a-haunting-discovery-aboard-the-ss-ourang-medan-21592352ae79 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/s/story/the-fan-who-sued-taylor-swift-6c352e325f0d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/serving-tensorrt-models-with-nvidia-triton-inference-server-5b68cc141d19 - 2023-10-06 - monthly - 1.0 - - - - https://sheril.medium.com/how-i-got-into-google-bce930faa877 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/inspired-writer/how-to-deal-with-your-mistakes-at-work-without-losing-your-mind-52e9600267bd - 2023-10-06 - monthly - 1.0 - - - - https://forge.medium.com/to-calm-down-try-calming-up-instead-86ebdceb7c1c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@Aaron0928/30-year-old-code-killed-microsoft-rewrites-windows-kernel-with-180-000-lines-of-rust-f891c95959f2 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/the-best-extensions-tips-and-themes-for-vs-code-7d0724590af - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/vscode-tips-tricks-98c6e2258626 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdev.com/sql-exercises-with-questions-and-solutions-ba0dfdd7bd3e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/running-jupyter-notebook-on-visual-studio-code-4526fb27dc0b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/awesome-cloud/aws-difference-between-application-load-balancer-and-network-load-balancer-cb8b6cd296a4 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/micro-in-action-part6-service-discovery-f988988e5936 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/micro-in-action-getting-started-a79916ae3cac - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/micro-in-action-part-2-71230f01d6fb - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/micro-in-action-part-3-calling-a-service-55d865928f11 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/micro-in-action-part4-pub-sub-564f3b054ecd - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/polling-in-javascript-ab2d6378705a - 2023-10-06 - monthly - 1.0 - - - - https://jeffaxup.medium.com/investment-part-3-leveraged-etfs-f9bdeea7f5e4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/beingwell/give-me-two-minutes-and-ill-lower-your-blood-sugar-8da3577dd228 - 2023-10-06 - monthly - 1.0 - - - - https://rajanagori.medium.com/why-localhost-and-burpsuite-are-not-best-friends-169e7ef1752c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/rahasak/become-root-inside-vim-18044f5a3837 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@sherlock297/install-burp-suite-pro-on-kali-linux-5bef02afb8c3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/all-eyes-on-apple-1-big-lesson-learned-77c0707015fa - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/notonlycss/the-difference-between-computed-and-methods-in-vue-js-9cb05c59ed98 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jmn8718/setup-efs-with-ecs-fargate-8017a6dca5ef - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/airbnb-engineering/airbnbs-approach-to-access-management-at-scale-cfa66c32f03c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/airbnb-engineering/himeji-a-scalable-centralized-system-for-authorization-at-airbnb-341664924574 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/let-us-extract-some-topics-from-text-data-part-v-top2vec-f50416cac4a - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/the-fastest-growing-and-fastest-shrinking-programming-languages-644949cd1de6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tsecretdeveloper/why-software-developers-are-silent-in-meetings-9b38825fea77 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@abdelilah.moulida/4-useful-intermediate-sql-queries-for-data-science-fa43cba29dfb - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/jupyter-already-has-a-perfect-text-editor-this-is-how-you-can-configure-it-4d3eb37878f1 - 2023-10-06 - monthly - 1.0 - - - - https://shutupandachieve.medium.com/no-hobbies-or-interests-heres-what-you-should-do-dfc8c8d8cc6f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/email-attachment-ingestion-fc4994c42819 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/time-series-forecasting-based-on-the-trend-and-seasonal-components-26b92866e548 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@sdw-online/data-pipelines-with-python-and-sql-part-2-80ac09ac1eb7 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/demystifying-kotlins-channel-flows-b9007e1f773b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/basic-forecasting-techniques-ef4295248e46 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/excel-automation-using-python-de70cf253a1a - 2023-10-06 - monthly - 1.0 - - - - https://ljmocic.medium.com/make-telegram-bot-for-notifying-about-new-rss-feed-items-4cfbcc37f4fd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@siglimumuni/a-complete-guide-to-automating-excel-with-python-5d2a62cb2902 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/excel-automation-tools-for-user-friendly-reports-with-xlsxwriter-557c2332905c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/how-much-slower-is-the-ssd-in-basic-m2-macbook-air-compared-to-m1-air-a514ad552c19 - 2023-10-06 - monthly - 1.0 - - - - https://johnsmart.medium.com/your-personal-sim-a07d78ffdd40 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-to-give-feedback-to-your-manager-3f0175fbf1f1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/5-things-android-users-wont-understand-until-they-use-an-iphone-392da6f5719f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bouncin-and-behavin-blogs/mastering-5-simple-steps-of-delegation-29d64287ed39 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/long-covid-connection/were-starting-to-understand-more-of-what-causes-long-covid-brain-fog-e76262084417 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/methods-for-dealing-with-imbalanced-data-5b761be45a18 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/layered-vision/3d-printed-objects-that-make-life-easier-part-2-3abdeed73b62 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/layered-vision/how-to-make-money-with-3d-printing-7d9eaae67e23 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/layered-vision/a-beginners-guide-to-3d-printing-150676fd37d3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/grabngoinfo/one-class-svm-for-anomaly-detection-6c97fdd6d8af - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/today-i-solved/how-to-deploy-next-js-on-aws-ec2-with-ssl-https-7980ec6fe8d3 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/golang-vs-rust-for-web-api-development-projects-a-quick-comparison-fcc2ae2d0f6d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/user-authentication-with-react-700e5cb331e4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/obsidian-task-management-build-and-style-your-queries-90cb1a6fa115 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-no%C3%B6sphere/why-women-dont-ask-for-better-pay-is-the-wrong-question-to-ask-61d92adc982 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/3-advance-techniques-to-effortlessly-import-and-execute-your-python-modules-ccdcba017b0c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/importing-python-functions-from-other-scripts-8769ca65a3da - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/womenintechnology/how-to-use-the-anitab-career-center-and-resume-database-37551edb1379 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-candid-lollipop/beware-the-wrath-of-upper-management-8b72c2245dd0 - 2023-10-06 - monthly - 1.0 - - - - https://benlobaugh.medium.com/build-highly-performant-wordpress-sites-with-minio-and-wp-offload-media-dadc7bb25371 - 2023-10-06 - monthly - 1.0 - - - - https://tridipthrizu.medium.com/css-flexbox-101-f0ca0e40cf83 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/top-9-keyboard-shortcuts-in-vscode-for-data-scientists-468691b65ebe - 2023-10-06 - monthly - 1.0 - - - - https://tomaszs2.medium.com/5-awesome-python-projects-make-deep-fakes-compose-videos-and-develop-frontends-vol-6-83c97e25dcf5 - 2023-10-06 - monthly - 1.0 - - - - https://tomaszs2.medium.com/5-python-projects-people-dont-know-about-ep-3-7124a28239a3 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/4-tools-to-add-to-your-python-project-before-shipping-to-production-c324f2fb8444 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/advanced-python-consider-these-10-elements-when-you-define-python-functions-61c0be8a10ed - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/asecuritysite-when-bob-met-alice/could-rsa-2048-be-cracked-by-2025-49f043c02d50 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codingthesmartway-com-blog/superagi-a-dev-first-open-source-autonomous-ai-agent-framework-b4e60aea5b0e - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/five-python-wrappers-that-can-reduce-your-code-by-half-af775feb1d5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bitgrit-data-science-publication/12-python-features-every-data-scientist-should-know-1d233dbaab0c - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/15-levels-of-writing-python-functions-77f48c3a4f8b - 2023-10-06 - monthly - 1.0 - - - - https://ajaksecurity.medium.com/best-cybersecurity-certifications-to-do-in-2023-my-personal-opinion-3c56724cf3b3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/web-scraping-basics-82f8b5acd45c - 2023-10-06 - monthly - 1.0 - - - - https://matt-croak.medium.com/just-because-you-can-afford-the-down-payment-doesnt-mean-you-should-buy-a-house-part-ii-cf50d87870ed - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/two-ways-to-download-and-access-llama-2-locally-8a432ed232a4 - 2023-10-06 - monthly - 1.0 - - - - https://zhimin-wen.medium.com/exploring-llama2-on-cpu-only-vm-836866d832bd - 2023-10-06 - monthly - 1.0 - - - - https://prashant-verma.medium.com/unleash-the-power-of-llama2-on-your-pc-ubuntu-22-04-a-step-by-step-installation-guide-17ead65457cd - 2023-10-06 - monthly - 1.0 - - - - https://ali.medium.com/the-lifelong-learners-toolkit-50-useful-websites-for-continuous-learning-d7487e6509ef - 2023-10-06 - monthly - 1.0 - - - - https://joseph-mellor1999.medium.com/eigenvalues-and-eigenvectors-2ad8a1fd107 - 2023-10-06 - monthly - 1.0 - - - - https://khadkechetan.medium.com/information-extraction-with-llm-chetan-kkhadke-cc41674b380 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bruces-blog/the-cheapskates-guide-to-fine-tuning-llama-2-and-run-on-your-laptop-5568a098587a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/mlops-in-practice-de-constructing-an-ml-solution-architecture-into-10-components-c55c88d8fc7a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@davidroliver/review-your-documentation-with-gpt4all-and-llama-2-llm-without-coding-or-an-internet-connection-673ce7ecf09a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/microservices-in-practice-developing-instagram-clone-auth-service-a526553a7226 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/understanding-the-outputs-of-multi-layer-bi-directional-lstms-13ad99a80dd3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/using-browser-cookies-and-voyager-api-to-scrape-linkedin-via-python-25e4ae98d2a8 - 2023-10-06 - monthly - 1.0 - - - - https://hudsonrennie.medium.com/mike-mentzers-exercise-philosophies-have-effectively-changed-my-body-brain-c464d90c21b3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tokoin/unstoppable-domains-everything-you-should-know-29fa61e1b170 - 2023-10-06 - monthly - 1.0 - - - - https://onezero.medium.com/facebook-shuts-down-massive-stop-the-steal-group-15daffe812d1 - 2023-10-06 - monthly - 1.0 - - - - https://alimustoofaa.medium.com/how-to-load-model-yolov8-tensorrt-6c03de059622 - 2023-10-06 - monthly - 1.0 - - - - https://medium.aifastcash.com/10-free-ai-tools-that-feels-illegal-to-know-a698584db925 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@alexandre.cuva/building-web-apps-with-4dd818a6e158 - 2023-10-06 - monthly - 1.0 - - - - https://kresec.medium.com/introduction-how-to-use-vulnshot-com-bca87223fab9 - 2023-10-06 - monthly - 1.0 - - - - https://denisetodd.medium.com/obsidian-dataview-for-beginners-a-checklist-to-help-fix-your-dataview-queries-11acc57f1e48 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/4-techniques-to-handle-numpy-arrays-5a0abb0cfda3 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/perfect-express-architecture-ba28c2bfc8b3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/4-habits-that-absolutely-make-your-average-day-happier-5b231d49c9ed - 2023-10-06 - monthly - 1.0 - - - - https://entreprenal.com/i-analysed-the-pitch-deck-elizabeth-holmes-used-to-raise-1-8-7df1ecc2ee7b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/nice-math-problems/quick-oxford-admissions-question-summing-sine-powers-b1ebab6a7051 - 2023-10-06 - monthly - 1.0 - - - - https://beingpax.medium.com/how-to-create-a-bookshelf-to-track-books-in-obsidian-f5130555be44 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/impressive-github-profile-readme-606e3b7b075d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@NovelNestBooks/10-recommended-books-by-andrew-huberman-im-kicking-myself-for-not-reading-sooner-61282d081907 - 2023-10-06 - monthly - 1.0 - - - - https://thegrayarea.tech/no-lust-in-wonderlust-9caf427915f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-deploy-dbt-to-production-using-github-action-778bf6a1dff6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/processing-large-s3-files-with-aws-lambda-2c5840ae5c91 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/raylacerda/oracle-goldengate-bda-x-microsoft-azure-datalake-gen2-768067b23119 - 2023-10-06 - monthly - 1.0 - - - - https://blog.expo.dev/how-to-run-background-tasks-in-react-native-e1619acef48f - 2023-10-06 - monthly - 1.0 - - - - https://vishwajeet-pol.medium.com/databricks-autoloader-with-spark-structured-streaming-using-delta-51d0babb5365 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/r-evolution/random-forest-classification-using-machine-learning-for-stroke-prediction-65702b2473c4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@uchehenryigbokwe/import-a-bacpac-file-to-create-a-new-database-using-docker-360a14733da1 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/the-best-mysql-backup-plan-based-on-20-years-of-experience-da8f9e58e2a - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/my-first-30-days-writing-technical-articles-on-medium-cb0a6c9bec3d - 2023-10-06 - monthly - 1.0 - - - - https://k3no.medium.com/tech-writing-for-medium-368dc24bf901 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/2022-052-a-poor-mans-web-worker-279d17a13018 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/what-are-stable-diffusion-models-and-why-are-they-a-step-forward-for-image-generation-aa1182801d46 - 2023-10-06 - monthly - 1.0 - - - - https://darraghoriordan.medium.com/postgresql-and-typeorm-advanced-querying-e5d8e4c950d6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@techisbeautiful/an-overview-of-the-features-of-spring-batch-for-batch-processing-jobs-e2ca8f83f84 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/i-just-turned-25-here-are-some-advice-id-give-to-people-in-their-early-20s-67b3754b3cc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ibrahimzilzal/top-5-ai-tools-that-are-better-than-chatgpt-but-nobody-is-using-them-d1485ee19fc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/aimonks/13-new-ai-websites-to-get-more-done-and-reduce-work-hours-1a13013d4cca - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/steve-jobs-spoke-to-stanford-grads-not-you-efdc1fa1a22d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@thenathanchen/how-to-appear-smart-in-zoom-meetings-a-tactical-guide-b1b356036ddd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@mparekh/ai-meeting-summarizers-f0dcdc9d - 2023-10-06 - monthly - 1.0 - - - - https://blog.prototypr.io/why-there-will-be-little-junior-ux-jobs-for-a-while-a4548e48fbd6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/nerd-for-tech/common-mistakes-in-springboot-development-5d4c2b1e33cf - 2023-10-06 - monthly - 1.0 - - - - https://www.cantorsparadise.com/can-you-break-this-encryption-invented-in-1467-c13c324afde1 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/testing-with-jest-in-typescript-cc1cd0095421 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illuminations-mirror/do-you-say-please-and-thank-you-to-artificial-intelligence-b7debfd12263 - 2023-10-06 - monthly - 1.0 - - - - https://the-bilal-rizwan.medium.com/graphql-common-vulnerabilities-how-to-exploit-them-464f9fdce696 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@_michaellin/stop-building-startups-start-consulting-instead-8c3980d6a214 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-do-fuzzy-matching-in-python-pandas-dataframe-6ce3025834a6 - 2023-10-06 - monthly - 1.0 - - - - https://beingpax.medium.com/datacore-the-game-changing-successor-to-obsidians-dataview-plugin-6332563b02ea - 2023-10-06 - monthly - 1.0 - - - - https://alimustoofaa.medium.com/deploy-yolov8-onnx-1cbc02395a85 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/go-vs-java-what-is-the-best-2023-language-ef625c61d27b - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-to-deal-with-ambiguous-requirements-in-software-engineering-727914a411a7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/no-data-no-problem-how-to-collect-heavy-metal-data-from-wikipedia-and-spotify-f879762046ff - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/difference-between-saga-and-cqrs-design-patterns-in-microservices-acd1729a6b02 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-3-reasons-why-i-have-permanently-switched-from-pandas-to-polars-b41d013a787b - 2023-10-06 - monthly - 1.0 - - - - https://entrepreneurshandbook.co/i-finally-figured-out-why-investors-wont-invest-in-solo-founders-a94af7b8f495 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@AlexanderObregon/managing-distributed-transactions-with-spring-boot-and-jta-c27e8902518e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-art-of-joining-in-spark-dcbd33d693c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/top-4-open-source-note-taking-apps-f1612eeb88bf - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/how-to-build-quant-algorithmic-trading-model-in-python-12abab49abe3 - 2023-10-06 - monthly - 1.0 - - - - https://artificialcorner.com/i-used-chatgpt-at-work-for-6-months-heres-how-to-10x-your-productivity-11abe5bf0487 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@crisvelasquez/riding-the-waves-of-stock-prices-with-wavelet-transform-signals-in-python-e2e81217f9fd - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/improve-your-model-validation-with-torchmetrics-b457d3954dcd - 2023-10-06 - monthly - 1.0 - - - - https://stanislavkozlovski.medium.com/kotlin-unit-testing-classes-without-leaking-public-api-871468695447 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/monte-carlo-method-explained-8635edf2cf58 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@michaelgoitein/the-playing-to-win-framework-part-iii-the-strategy-choice-cascade-279c3b5ccea3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/create-virtual-environment-using-conda-and-add-it-to-jupyter-notebook-d319a81dfd1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@michaelgoitein/the-playing-to-win-framework-part-ii-the-strategy-process-map-efaa53434ddc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@michaelgoitein/the-playing-to-win-framework-a-global-strategy-experts-proven-method-d3d12294e959 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@noahmiller400/22-startup-ideas-from-y-combinators-co-founder-matching-platform-a6a7ca4e377b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/data-arena/automate-data-cleaning-combining-of-files-a0fbdf853524 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/adventures-in-data-science/how-good-is-your-algorithm-at-predicting-stock-prices-really-38a2d450c9eb - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/why-you-should-be-using-event-storming-2f32e5280c8c - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/why-web-ui-development-is-so-hard-a88c47f4b3c5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/c-sharp-progarmming/dapper-best-practices-c-developers-guide-to-database-management-c25439b4780b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/dotnet-hub/use-autofac-ioc-container-in-dotnet-or-aspnetcore-autofac-dependency-injection-netcore-ffad19d87163 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bug-bounty-hunter/bug-bounty-its-not-a-treasure-hunt-but-it-s-still-a-blast-aacf6468c6e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/the-comprehensive-8pt-grid-guide-aa16ff402179 - 2023-10-06 - monthly - 1.0 - - - - https://raduzaharia.medium.com/using-the-vscode-flatpak-distribution-a275d59ff1c7 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-create-a-monte-carlo-simulation-using-python-c24634a0978a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/difference-between-api-gateway-and-load-balancer-in-microservices-8c8b552a024 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/create-your-own-metropolis-hastings-markov-chain-monte-carlo-algorithm-for-bayesian-inference-with-fbabc3f01baa - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/alan-turings-9-arguments-for-the-intelligence-of-machines-68770174fe4e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/supervised-unsupervised-approach-to-topic-modelling-in-python-d03e0b9da1dc - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/feature-transformations-a-tutorial-on-pca-and-lda-1ac160088092 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/simple-comme-data/apache-airflow-docker-le-guide-7bae666ce8a6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/20-free-newsletters-that-will-drastically-improve-your-life-7fe03082a748 - 2023-10-06 - monthly - 1.0 - - - - https://bettermarketing.pub/brand-strategy-101-a6cfaf73284c - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/best-node-js-boilerplate-to-speed-up-your-project-development-a9eca7b07f90 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/slashdeploy/docker-project-boilerplates-32bde96c5a42 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/10-common-software-architectural-patterns-in-a-nutshell-a0b47a1e9013 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/build-complex-time-series-regression-pipelines-with-sktime-910bc25c96b6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swiftblade/understanding-uiviewcontrollers-viewisappearing-4ba7c853e1aa - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@hitoshi.shimomae/convert-ova-to-qcow2-and-start-it-with-utm-13fa3fc4c3db - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@leopold.cosson/lets-stop-being-gullible-you-can-t-predict-stocks-with-a-simple-lstm-2ca7e0097323 - 2023-10-06 - monthly - 1.0 - - - - https://nehalk.medium.com/56-funny-code-comments-that-people-actually-wrote-6074215ab387 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/making-chatbots-accessible-958185d5b530 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/everything-a-software-engineer-should-know-about-the-m2-pro-macbook-pro-677fa424a4c6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/startup-da-real/desenvolvendo-disciplina-o-que-significa-e-como-fazer-e1582c99bef5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/is-hashicorp-certified-terraform-associate-002-hard-to-pass-lets-find-out-f6ef6f9dcc11 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mobile-app-development-publication/kotlins-channel-flow-with-rendezvous-is-not-the-same-as-kotlin-flow-dfb5cff235d5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mobile-app-development-publication/exploring-composes-remember-and-recomposition-step-by-step-7594e79ba140 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@winglian/inference-any-llm-with-serverless-in-15-minutes-69eeb548a41d - 2023-10-06 - monthly - 1.0 - - - - https://mlsdev.medium.com/how-to-build-an-ecommerce-website-from-scratch-start-selling-products-worldwide-a55256673878 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/react-courses/integrate-a-donut-chart-with-polylines-and-labels-utilizing-d3js-reactjs-and-typescript-2d23b8ffb108 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@WriteupsTHM_HTB_CTF/vulnerability-management-tryhackme-99eb9596e822 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/4-great-ish-reasons-to-move-the-mac-dock-to-the-side-6866a1c3dee7 - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/airflow-vs-prefect-vs-kestra-what-is-the-best-data-orchestration-platform-in-2023-899d849743cc - 2023-10-06 - monthly - 1.0 - - - - https://logankilpatrick.medium.com/what-is-langchain-and-why-should-i-care-as-a-developer-b2d952c42b28 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@makemoneyblog/earn-money-receiving-sms-5-per-sms-d13fbdcb5f18 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/hashcat-cheat-sheet-511ce5dd7857 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jarimh1984/installing-oobabooga-and-oobabooga-api-to-runpod-cloud-step-by-step-tutorial-47457974dfa5 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-use-large-language-models-llm-in-your-own-domains-b4dff2d08464 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/how-i-analysed-over-1-400-articles-in-6-months-using-apple-notes-f1cd9047c6c4 - 2023-10-06 - monthly - 1.0 - - - - https://willjmurphy.medium.com/turn-apple-notes-into-a-free-ai-powered-personal-filing-system-7c17f24dc809 - 2023-10-06 - monthly - 1.0 - - - - https://writingcooperative.com/zettelkasten-how-one-german-scholar-was-so-freakishly-productive-997e4e0ca125 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/falcon-180b-the-new-future-of-llms-better-performance-then-chatgpt-3-5-623e9635caaa - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/how-i-structure-my-node-js-rest-apis-4e8904ccd2fb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@abraaorl/the-great-integration-debate-make-pipedream-zapier-or-pabbly-3c6edd9e99b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/seven-7-essential-data-structures-for-a-coding-interview-and-associated-common-questions-72ceb644290 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/building-command-line-interfaces-using-go-ce6a75d60bf5 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/my-boss-front-end-development-will-be-replaced-100-by-ai-354d79c79b5b - 2023-10-06 - monthly - 1.0 - - - - https://artificialcorner.com/ive-tried-almost-all-chatgpt-plugins-here-are-the-best-ebf5019bfb37 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/predict/dont-fall-for-apple-s-greenwashing-66fa63a8d161 - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/neovim-for-beginners-flutter-25a145418a4e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/beyond-engineering/what-are-eigenvalues-and-eigenvectors-anyway-2db4a7aa5d74 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/starts-with-a-bang/gravity-doesnt-happen-instantly-9bb71e9c19c1 - 2023-10-06 - monthly - 1.0 - - - - https://www.cantorsparadise.com/fields-and-symmetry-5dfdcb529947 - 2023-10-06 - monthly - 1.0 - - - - https://blog.curiosity.ai/10-hottest-new-apps-to-explore-the-future-of-tech-as-it-happens-c46eeb42b1d2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@martin-thissen/llama-alpaca-fine-tuning-code-generation-ram-requirements-and-more-answers-to-your-questions-b7e20b28e9e1 - 2023-10-06 - monthly - 1.0 - - - - https://sungkim11.medium.com/list-of-open-sourced-fine-tuned-large-language-models-llm-8d95a2e0dc76 - 2023-10-06 - monthly - 1.0 - - - - https://valdarixgames.medium.com/adding-post-processing-to-unity-6254a5c75427 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/how-to-add-to-an-array-in-react-state-3d08ddb2e1dc - 2023-10-06 - monthly - 1.0 - - - - https://humanparts.medium.com/i-am-a-meme-now-and-so-are-you-3bae8ecf9971 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/programmers-journey/comparing-falcon-180b-to-gpt4-c9f744f1df5 - 2023-10-06 - monthly - 1.0 - - - - https://ahmadrezashamimi.medium.com/kombai-automating-the-journey-from-design-to-code-36f7b2d8e4ed - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@lukaskrimphove/ive-switched-from-bullet-journaling-to-using-obsidian-my-conclusion-after-six-months-10f3f7fd55a0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@WriteupsTHM_HTB_CTF/risk-management-tryhackme-aaaf7a751031 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/discourse/the-myth-of-the-most-liberal-candidate-in-history-and-why-it-persists-7bdcea4f6334 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@WriteupsTHM_HTB_CTF/secure-network-architecture-tryhackme-c9a47149b1d8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@WriteupsTHM_HTB_CTF/linux-system-hardening-tryhackme-919712bdba9f - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/1-hour-exclusive-interview-with-the-developer-who-raised-11m-to-automate-software-testing-8f87f4e3305d - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/top-10-ai-based-apps-you-dont-know-for-productivity-b4b674a73f8b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@cannon_circuit/9-visual-studio-code-tricks-that-will-revolutionize-your-coding-game-71a445dca9d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/l1-and-l2-regularization-methods-ce25e7fc831c - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/making-interactive-nfts-4a50a8f8feb3 - 2023-10-06 - monthly - 1.0 - - - - https://peterhaas-me.medium.com/how-to-deploy-your-plotly-dash-application-for-free-on-pythonanywhere-9cae129f230d - 2023-10-06 - monthly - 1.0 - - - - https://lukebelmar.medium.com/wealth-is-a-mindset-d24f284cc0a3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/predicting-the-price-of-the-beyond-meat-stock-using-random-forest-in-python-ebeae6aa9d49 - 2023-10-06 - monthly - 1.0 - - - - https://piggsboson.medium.com/james-maxwell-and-how-his-equations-shaped-the-modern-world-8e3e9f6b46c1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/binary-neural-networks-a-game-changer-in-machine-learning-6ae0013d3dcb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/physics-and-machine-learning/misconceptions-about-least-square-regression-1131841d240f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@deep.space/what-is-the-speed-of-an-electric-current-ba6bdd40f55b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/intuition/the-most-beautiful-sum-in-mathematics-b1fa4f116ec6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@marylynnreed/what-is-abstract-algebra-d4203ae79364 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/multiple-series-forecast-them-together-with-any-sklearn-model-96319d46269 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/eligibility-traces-in-reinforcement-learning-a6b458c019d6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@alexeynovikov_89393/stop-using-exceptions-in-java-456f7db46ea4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/gpt-4-reaches-the-level-of-a-chess-playing-engine-and-the-implications-are-huge-36030016a2fe - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/machine-learning-for-building-recommender-system-in-python-9e4922dd7e97 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/rules-of-flow-for-product-management-airbnb-case-study-61ec04342b0d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coders-camp/4-recommendation-system-projects-with-python-5934de32ba7d - 2023-10-06 - monthly - 1.0 - - - - https://blog.stackademic.com/5-advanced-javascript-things-you-dont-know-part-1-366cad680174 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/python-lists-the-definitive-guide-for-working-with-ordered-collections-of-data-53b06a194826 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/tech-talk-with-chatgpt/the-python-books-every-programmer-should-read-deef2c12f230 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/dotnet-hub/top-dotnet-asp-net-core-open-source-projects-most-popular-aspnetcore-best-github-repos-6261569bdb06 - 2023-10-06 - monthly - 1.0 - - - - https://clivethompson.medium.com/the-curious-power-of-memorizing-poems-1b028a77a9f6 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/reading-h5-files-faster-with-pytorch-datasets-3ff86938cc - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/spatial-design-8-principles-and-guidelines-for-immersive-experiences-1c9160065a44 - 2023-10-06 - monthly - 1.0 - - - - https://blog.bitsrc.io/vite-js-configuration-for-react-applications-ba3ae18a19ec - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@itsmeakshat/the-spatial-frontier-unlocking-experiences-with-spatial-design-in-ux-97daa8d8118b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/firebase-auth-with-react-and-typescript-abeebcd7940a - 2023-10-06 - monthly - 1.0 - - - - https://thealexguides.medium.com/my-plan-to-make-1-million-before-2024-7ad6d0a3d86e - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/can-we-truly-create-value-2155d5eb6507 - 2023-10-06 - monthly - 1.0 - - - - https://myerotica.com/babysitter-and-the-silverfox-daddy-caf0313688aa - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/15-essential-steps-to-build-reliable-data-pipelines-58847cb5d92f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/machine-learning-illustrated-incremental-machine-learning-4d73747dc60c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@SaiParvathaneni/essential-aws-services-for-data-engineers-explained-like-youre-15-888f7625657a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/variational-autoencoder-55b288f2e2e0 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/fine-tuning-your-embedding-model-to-maximize-relevance-retrieval-in-rag-pipeline-2ea3fa231149 - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/simple-ways-to-manage-organisational-complexity-e4a893ffea12 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/u-net-explained-understanding-its-image-segmentation-architecture-56e4842e313a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@alexeynovikov_89393/3-most-annoying-things-i-faced-using-go-9c0eda65a427 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@afcastano/monads-for-java-developers-part-2-the-result-and-log-monads-a9ecc0f231bb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/martin-adams-notebook/the-struggle-with-one-literature-note-per-idea-b268df83ba14 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/efficient-frontier-in-python-detailed-tutorial-84a304f03e79 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-to-update-your-status-during-stand-up-like-a-senior-engineer-f05f3c7f91e4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/taking-notes/notetaking-in-2023-part-two-7b7ded88d4f4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/workings/mentions-two-obsidian-plugins-e02ca96316ab - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/15-youtube-channels-that-will-teach-you-everything-you-need-to-know-about-ai-be44ad6d6580 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@shubhadeepchat/solid-principle-simplified-b18b73b3e440 - 2023-10-06 - monthly - 1.0 - - - - https://semaphoreci.medium.com/microservices-best-practices-eacd67b40680 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/produclivity/ptpl-063-your-obsidian-graph-is-not-your-compass-98e5c1220fb8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/obsidian-plugins-review-25-ac28a7bc3c49 - 2023-10-06 - monthly - 1.0 - - - - https://themakingofamillionaire.com/stop-working-hard-start-exploiting-these-unfair-advantages-instead-ca08ca3a214 - 2023-10-06 - monthly - 1.0 - - - - https://bhatiaaman19.medium.com/10-life-changing-books-every-developer-should-read-7039c2844437 - 2023-10-06 - monthly - 1.0 - - - - https://bhatiaaman19.medium.com/10-life-changing-books-every-developer-should-read-4956aa97607f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/android-tech-stack/combining-kotlin-flows-merge-zip-b6d30d84daa - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/fusing-building-a-second-brain-and-zettelkasten-in-obsidian-882410518554 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/learn-how-to-combine-kotlin-flows-317849a71d3e - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/topic-modeling-with-latent-dirichlet-allocation-lda-in-python-81d9bd478bf9 - 2023-10-06 - monthly - 1.0 - - - - https://boobo94.medium.com/web-service-architecture-for-golang-developers-a4147b8141ff - 2023-10-06 - monthly - 1.0 - - - - https://boobo94.medium.com/linode-object-storage-usage-in-nodejs-11e6dd14d2d0 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/topic-modelling-f51e5ebfb40a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@hmurari/converting-a-python-flask-app-into-a-fastapi-app-e09f8cd3da58 - 2023-10-06 - monthly - 1.0 - - - - https://devonprice.medium.com/being-socially-motivated-is-not-a-disorder-a5759bbece0a - 2023-10-06 - monthly - 1.0 - - - - https://iorilan.medium.com/from-code-to-instrction-execution-understand-in-10-minutes-9b4cafc74fd6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@steinsfu/diffusion-model-clearly-explained-cd331bd41166 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-ignore-jupyter-notebook-from-github-language-stats-6ec7004b885a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/4-ways-of-question-answering-in-langchain-188c6707cc5a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/five-free-and-reliable-weather-data-sources-20b9ea6afac9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@dmitrijkumancev571/7-open-source-libraries-you-must-know-in-2023-8413c2243544 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-forecast-time-series-with-multiple-seasonalities-23c77152347e - 2023-10-06 - monthly - 1.0 - - - - https://meet-martin.medium.com/using-javascript-es6-import-export-modules-in-chrome-extensions-f63a3a0d2736 - 2023-10-06 - monthly - 1.0 - - - - https://jh3y.medium.com/how-to-fix-dom-elements-on-scroll-7d4922d9c51f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/multi-seasonal-time-series-decomposition-using-mstl-in-python-136630e67530 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/vitrox-publication/adversarial-auto-encoder-aae-a3fc86f71758 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/7-reasons-why-you-should-use-jupyterlab-for-data-science-7c2a3db8755a - 2023-10-06 - monthly - 1.0 - - - - https://iorilan.medium.com/they-asked-me-this-question-whats-the-difference-between-mutex-and-semaphore-during-an-interview-d862bb053f86 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/the-amazing-redis-620a621f3b2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/alpha-beta-blog/americas-economic-resilience-c31948d3d3f4 - 2023-10-06 - monthly - 1.0 - - - - https://tonester524.medium.com/my-top-articles-updated-every-now-and-then-f7b8fef03270 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/alpha-beta-blog/stock-prices-are-dropping-fast-what-happened-56b6313c6aeb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/alpha-beta-blog/the-world-in-2s-mortgage-rates-and-home-prices-7c406ff9bee8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/choose-the-correct-data-type-when-caching-data-in-redis-c415bd0569d1 - 2023-10-06 - monthly - 1.0 - - - - https://jlgjosue.medium.com/alternatives-to-airflow-exist-bb2739a93b33 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/mastering-localstorage-in-javascript-simplified-data-persistence-f5659963e4bc - 2023-10-06 - monthly - 1.0 - - - - https://faun.pub/redis-high-availability-with-sentinel-on-kubernetes-k8s-a1d67842e0ce - 2023-10-06 - monthly - 1.0 - - - - https://blog.developerpurpose.com/i-cant-get-any-interviews-what-top-developers-are-doing-different-aa99b3e6d6e7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-handbook-of-coding-in-finance/predict-stock-movement-using-logistic-regression-in-python-8e7ddfa60b33 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tr1n1ty8/tryhackme-intro-to-logs-walkthrough-72a58d9a635b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/gradient-growth/mastering-the-ict-judas-swing-your-ultimate-guide-to-profitable-forex-trading-7ba4fb8254dd - 2023-10-06 - monthly - 1.0 - - - - https://taimurcloud123.medium.com/no-cyber-security-experience-no-problem-da1452fbe564 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@amimahloof/how-to-package-a-python-project-with-all-of-its-dependencies-for-offline-install-7eb240b27418 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/how-to-create-executable-of-your-python-application-from-linux-windows-mac-bcbcdd4603d4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/how-to-create-a-gui-cli-standalone-app-in-python-with-gooey-and-pyinstaller-1a21d0914124 - 2023-10-06 - monthly - 1.0 - - - - https://danajwright.medium.com/to-submit-or-not-to-submit-7d5de54dae7f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/amazon-declares-war-on-etl-9bf434bcf49e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/amateur-book-reviews/6-sci-fi-books-exploring-sentient-artificial-intelligence-b04648401f32 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdev.com/data-mesh-to-mesh-or-not-to-mesh-77e78dd49302 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@karankakwani/build-and-run-llama2-llm-locally-a3b393c1570e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technofunnel/data-categorization-using-scikit-onehotencoder-python-f7686ef43650 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/9-mac-homebrew-tools-youve-never-thought-you-needed-96ff07291592 - 2023-10-06 - monthly - 1.0 - - - - https://blog.bitsrc.io/advanced-typescript-techniques-for-managing-async-data-in-next-js-55146e0c78a3 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/top-10-homebrew-tools-you-didnt-know-you-needed-in-2020-5007fb2cf561 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/aiguys/pooling-layers-in-neural-nets-and-their-variants-f6129fc4628b - 2023-10-06 - monthly - 1.0 - - - - https://thegodoftrading.medium.com/i-told-a-guy-how-to-make-100-day-trading-options-and-i-doubt-he-believes-me-5-12-2023-update-d78a4c2d8d52 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tarek.tm/understanding-the-concept-of-weight-sharing-in-cnn-and-rnn-f48bd3f76d35 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/full-jwt-based-auth-implementation-for-your-react-apps-using-a-graphql-api-a8b83ad285f5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ryanchenkie_40935/react-authentication-how-to-store-jwt-in-a-cookie-346519310e81 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@allaei/outsmart-google-and-facebook-game-theory-tactics-for-the-ad-war-e1c1b5b44b14 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/3-easy-methods-for-improving-your-large-language-model-68670fde9ffa - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/fetching-data-from-a-graphql-api-in-react-ad003edc4e7b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@sushinpv/nextjs-application-architecture-for-best-performance-8f1d22e33ba1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/c-sharp-progarmming/configure-annotations-in-swagger-documentation-for-asp-net-core-api-8215596907c7 - 2023-10-06 - monthly - 1.0 - - - - https://www.cantorsparadise.com/imo-hall-of-fame-where-are-they-now-7e0be918cb0d - 2023-10-06 - monthly - 1.0 - - - - https://wityan.medium.com/next-js-project-structure-1531610bed71 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/quitting-whatsapp-build-your-own-messaging-android-application-d0b54483b9bd - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/meta-policy-gradients-a-survey-78dc742d395d - 2023-10-06 - monthly - 1.0 - - - - https://roguepsych.medium.com/what-is-the-british-class-system-63ee7731b33f - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/ux-case-study-spatial-design-7dcacd7f0b80 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/improve-your-workflow-by-swearing-3d6855052cf4 - 2023-10-06 - monthly - 1.0 - - - - https://kevinkreuzer.medium.com/how-to-write-component-harnesses-in-angular-8dbcccf2bf0e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@biscotty666/obsidian-stop-wasting-time-with-directories-and-filenames-7808a89e1604 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@Daniel_Prindii/my-omnivore-and-obsidian-read-it-later-system-ce29ff8da74c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@v_45591/obsidian-101-c21f6e1a1f15 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@alexandraphelan/an-updated-academic-workflow-zotero-obsidian-cffef080addd - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/read-excel-files-with-python-1000x-faster-407d07ad0ed8 - 2023-10-06 - monthly - 1.0 - - - - https://kevinkreuzer.medium.com/test-your-components-using-angular-materials-component-harnesses-f9c1deebdf5d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@hansahettiarachchi/unleashing-the-potential-of-embedding-model-e5-revolutionizing-natural-language-comprehension-3f1516489048 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-gentle-introduction-to-open-source-large-language-models-3643f5ca774 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/continuous-learning-a-data-scientists-odyssey-8d3006c2ce01 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-quant-journey/a-gentle-introduction-to-geometric-brownian-motion-in-finance-68c37ba6f828 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/bert-for-measuring-text-similarity-eec91c6bf9e1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@igniobydigitate/a-beginners-guide-to-measuring-sentence-similarity-f3c78b9da0bc - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/walking-through-support-vector-regression-and-lstms-with-stock-price-prediction-45e11b620650 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@gulsum.budakoglu/calculating-sentence-similarity-using-bert-model-8c0e796e25d4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/three-years-later-ive-analysed-over-2-500-articles-using-apple-notes-here-s-what-s-i-ve-learned-cdc3cc7a342b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bytehide/fluent-validation-in-net-core-advantages-and-disadvantages-a057eed168b2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bytehide/dispose-or-finalize-in-c-discover-which-to-use-f2b0d9c8e2d9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@JAlblas/tryhackme-burp-suite-repeater-walkthrough-9729c2ace4f7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/asecuritysite-when-bob-met-alice/losing-the-keys-to-the-castle-azure-key-breach-should-worry-every-organisation-4eda743d9406 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/databutton/getting-started-with-langchain-a-powerful-tool-for-working-with-large-language-models-286419ba0842 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@WriteupsTHM_HTB_CTF/intro-to-pipeline-automation-tryhackme-a99896586af7 - 2023-10-06 - monthly - 1.0 - - - - https://debugger.medium.com/why-is-apples-m1-chip-so-fast-3262b158cba2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/aiguys/retnet-transformer-killer-is-here-1dc7f50d1205 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/creating-an-editable-resizable-text-label-in-konva-with-react-8ab3a6b11dfb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/aiguys/how-python-3-11-is-becoming-faster-b2455c1bc555 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/aiguys/graphs-to-graph-neural-networks-from-fundamentals-to-applications-part-1a-graph-theory-ecebb9eb8313 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/creating-a-rust-web-app-with-rocket-and-diesel-58f5f6cacd27 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/local-development-set-up-of-postgresql-with-docker-c022632f13ea - 2023-10-06 - monthly - 1.0 - - - - https://kanchan-pal.medium.com/flipkart-interview-android-sde-3-6f649c2292de - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/queertheory/the-sexuality-of-elvis-presley-e69efc40e0d3 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/the-inevitable-decline-of-typescript-has-begun-22e4899d0ae1 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-containerize-models-trained-in-spark-f7ed9265f5c9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/produclivity/bye-bye-notion-my-obsidian-dashboard-is-humming-a67921b08f17 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/making-a-rts-game-4-selecting-units-unity-c-1c823b6823a5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-creative-journey/the-secret-to-disneys-storytelling-formula-3a2a2a8bb322 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/an-easy-way-to-replace-values-in-a-pandas-dataframe-2826bd34e59a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/deep-learning-101-the-theory-c23a95d1d5cd - 2023-10-06 - monthly - 1.0 - - - - https://intriguework.medium.com/my-favorite-make-money-online-creators-on-medium-right-now-babd0df6d3ef - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@niljusteengarcia/the-ethical-dilemma-examining-the-dissent-to-euthanasia-legalization-c69063c5ea1c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/crows-feet/how-many-of-us-will-eventually-get-tired-of-being-alive-791f5c3c7d16 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/flutter/whats-new-in-flutter-3-13-479d9b11df4d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/pythoniq/download-many-youtube-videos-using-python-and-youtube-dl-2f6baaac2644 - 2023-10-06 - monthly - 1.0 - - - - https://aninjusticemag.com/black-babies-cost-less-to-adopt-b8836e71607e - 2023-10-06 - monthly - 1.0 - - - - https://onezero.medium.com/the-social-media-managers-are-not-ok-74bc3d748149 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/slackjaw/i-became-my-boyfriends-emotional-support-dog-and-you-should-too-46a36c7dd89d - 2023-10-06 - monthly - 1.0 - - - - https://momentum.medium.com/the-10-signs-of-the-least-racist-person-in-the-room-2e3b5481c8bc - 2023-10-06 - monthly - 1.0 - - - - https://barackobama.medium.com/my-statement-congratulating-president-elect-joe-biden-and-vice-president-elect-kamala-harris-82c253659801 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mind-cafe/adopting-an-experience-mindset-over-a-checklist-mindset-7c79ac32b115 - 2023-10-06 - monthly - 1.0 - - - - https://martabrzosko.medium.com/why-i-stopped-calling-people-my-best-friends-d52420d11aa5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tiffsanya/dont-wish-your-life-was-easier-instead-focus-on-becoming-stronger-649efc71297a - 2023-10-06 - monthly - 1.0 - - - - https://elemental.medium.com/new-science-suggests-how-to-shorten-quarantine-7cad61243428 - 2023-10-06 - monthly - 1.0 - - - - https://elemental.medium.com/genetics-could-explain-why-some-people-with-covid-19-get-sicker-than-others-d8b28aa915b1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/better-humans/how-i-learned-1-607-chinese-characters-in-18-months-8a729d1603f2 - 2023-10-06 - monthly - 1.0 - - - - https://amanranjanverma.medium.com/run-flask-app-on-gcp-compute-engine-vm-instance-de4aea60a6fe - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-to-build-your-own-custom-chatgpt-with-custom-knowledge-base-4e61ad82427e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/love-emma/how-to-get-into-middle-space-68f745d7b4ed - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@WriteupsTHM_HTB_CTF/network-security-protocols-tryhackme-480a878c6441 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@kadishay/build-a-custom-trained-chat-gpt-in-5-minutes-4104f91fd66a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@eldatero/master-the-perfect-chatgpt-prompt-formula-c776adae8f19 - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/how-to-overcome-gpt-token-limit-721c30a18d55 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/love-emma/get-easier-stronger-orgasms-with-this-one-weird-trick-14e4937e275e - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/super-quick-building-your-own-custom-llama-on-company-information-5d7af78d1999 - 2023-10-06 - monthly - 1.0 - - - - https://fernandoabolafio.medium.com/data-fetching-in-nextjs-with-high-order-functions-f8b52ec7e1d6 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/i-asked-chatgpt-how-to-become-a-millionaire-as-a-developer-9fc1228494e7 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/tabula-rasa-why-do-tree-based-algorithms-outperform-neural-networks-db641862859b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/custom-object-detection-using-tensorflow-from-scratch-e61da2e10087 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@monthmotivation/4-apps-i-used-to-earn-100-day-with-0-effort-12fd2066799b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/binarized-neural-networks-an-overview-d065dc3c94ca - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@joonasvenlinen/desktop-application-automation-with-robot-framework-6dc39193a0c7 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/image-processing-image-scaling-algorithms-ae29aaa6b36c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/starts-with-a-bang/ask-ethan-if-the-universe-is-expanding-why-arent-we-71b46b5e9974 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/10-free-courses-from-harvard-university-that-will-change-your-perspective-c69ccc8c9300 - 2023-10-06 - monthly - 1.0 - - - - https://thisisananya.medium.com/5-mind-blowing-habits-that-robin-sharma-taught-me-that-changed-my-life-ec6575584e61 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/moments-of-passion/heres-what-i-learned-being-in-a-hotwife-relationship-bf74cfc4f083 - 2023-10-06 - monthly - 1.0 - - - - https://tesscongo.medium.com/browser-extensions-for-the-adhd-brain-74cc3564404 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-extract-data-from-the-twitter-api-using-python-b6fbd7129a33 - 2023-10-06 - monthly - 1.0 - - - - https://iorilan.medium.com/this-is-the-reason-i-join-leetcode-weekly-contest-a774f26e90a4 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/is-there-a-horizontal-scrollbar-on-your-website-10-ways-to-prevent-it-39b3a5e81cf - 2023-10-06 - monthly - 1.0 - - - - https://iorilan.medium.com/after-solved-1000-leetcode-medium-level-i-found-these-patterns-dynamic-programming-205226223f4e - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/14-ui-ux-design-secrets-that-will-make-your-mobile-games-irresistible-fe23b7a302f - 2023-10-06 - monthly - 1.0 - - - - https://devops4solutions.medium.com/setup-ssh-key-and-initial-user-using-ansible-playbook-61eabbb0dba4 - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/wanna-code-like-a-google-engineer-lets-dive-into-advanced-python-together-93f1e08b6d2f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/how-i-organized-my-iphone-apps-for-maximum-productivity-19bffcaa7761 - 2023-10-06 - monthly - 1.0 - - - - https://amir-tech.medium.com/i-made-a-django-scraping-app-and-its-paying-my-college-tuition-fees-7609134b4b44 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@abdelilah.moulida/7-exciting-sql-project-ideas-for-beginners-2023-ea97c3bfce37 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/better-humans/set-up-a-minimalistic-iphone-and-use-it-with-purpose-86b2cb7bedad - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/my-minimal-iphone-setup-a1d5e41ed2c4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/visualizing-my-logs-4edb6aae4518 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/top-10-must-have-apple-apps-september-2023-1d55df11da5f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/why-a-titanium-iphone-15-is-a-bigger-deal-than-you-think-6ccb7fbdfd60 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/in-fitness-and-in-health/the-7-simple-habits-that-help-me-maintain-a-low-body-fat-while-traveling-141005477d2b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/ai-papers-to-read-in-2022-c6edd4302247 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/how-to-setup-playwright-end-to-end-test-automation-framework-f09478d18267 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/neodotlife/crispr-crops-are-here-de101213f1d1 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/fine-tune-your-llm-without-maxing-out-your-gpu-db2278603d78 - 2023-10-06 - monthly - 1.0 - - - - https://mariacatt42.medium.com/what-to-do-with-chloe-cole-c4e887e9ced7 - 2023-10-06 - monthly - 1.0 - - - - https://tomanagle.medium.com/building-event-driven-microservices-with-node-js-kafka-4da87ec516d9 - 2023-10-06 - monthly - 1.0 - - - - https://aws.plainenglish.io/how-earning-12-aws-certifications-skyrocketed-my-career-growth-an-amazonians-perspective-262cbda9560a - 2023-10-06 - monthly - 1.0 - - - - https://mariacatt42.medium.com/a-thought-experiment-for-rogd-parents-711ac57036bf - 2023-10-06 - monthly - 1.0 - - - - https://krisgage.medium.com/read-this-if-youre-not-sure-you-want-kids-c24c7895ebd5 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/ai-papers-to-read-in-2020-ac0e4e91d915 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/ten-more-ai-papers-to-read-in-2020-8c6fb4650a9b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-i-stay-updated-on-the-latest-ai-research-b81203155551 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/build-a-full-stack-reminderapp-with-react-nextjs-typescript-serveraction-zod-hook-form-prisma-4ac0f4cab053 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/straightforward-simple-dependency-inversion-vs-dependency-injection-7d8c0d0ed28e - 2023-10-06 - monthly - 1.0 - - - - https://secularshepherdess.medium.com/13-months-of-an-evolving-personal-knowledge-management-project-9e3d9e513e8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/pkm-playbook/how-i-use-obsidian-to-take-notes-on-training-courses-37b8d0f402d3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@biscotty666/obsidian-searching-in-line-fields-with-regular-expressions-fd7a605dd70 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/hashicorps-open-source-exodus-redefining-devops-in-a-closed-source-era-f0de419efbaa - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@sulistef/obsidian-properties-how-to-set-up-a-template-with-dynamic-dates-579522749eb3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@codemaclife/reflect-note-app-a-mini-review-30f75e5495a3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/obsidian-showcases-dashboards-daily-notes-custom-css-more-f5ad89fb2acc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/litslink/flutter-android-studio-create-and-run-first-project-9cf9237d4b82 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/pkm-playbook/a-simple-process-to-make-your-pkm-more-personal-732a8958b19d - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/finding-an-audience-for-your-side-business-66ecd59d9c9c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/lstm-text-classification-using-pytorch-2c6c657f8fc0 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-5-clustering-algorithms-data-scientists-need-to-know-a36d136ef68 - 2023-10-06 - monthly - 1.0 - - - - https://danielbuilescu.com/10-python-projects-you-can-start-today-and-monetize-tomorrow-e141c93f9dbc - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/price-recommendation-system-modeling-using-pycaret-and-deep-learning-fd05f9f80900 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/price-recommendation-for-online-sellers-using-machine-learning-8d882268b1aa - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/spidernitt/flash-memory-5477ded015d1 - 2023-10-06 - monthly - 1.0 - - - - https://dmfrpro.medium.com/linux-fix-bug-12309-1798d7cf57c2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/generate-vision/the-paperoftheweek-is-deep-predictive-coding-networks-for-video-prediction-and-unsupervised-fa35d2b8535c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@bre/the-cult-of-done-manifesto-724ca1c2ff13 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/the-ultimate-markdown-guide-for-jupyter-notebook-d5e5abf728fd - 2023-10-06 - monthly - 1.0 - - - - https://matteocroce.medium.com/windows-as-qemu-guest-a115a56043b6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/the-new-buzzword-in-data-engineering-zero-etl-f9a78add95e1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/aimonks/best-productivity-tools-3d1d20bf23f8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@bnjmn_marie/reinforced-self-training-rest-for-llms-3be63fbe044d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-embed-a-spark-ml-model-as-a-kafka-real-time-streaming-application-for-production-deployment-933aecb79f3f - 2023-10-06 - monthly - 1.0 - - - - https://jmstipanowich.medium.com/how-to-easily-decompose-a-time-series-and-check-its-stationarity-using-statsmodels-e69f6f688df8 - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/fit-your-llm-in-a-single-gpu-with-gradient-checkpointing-lora-and-quantization-96b5b1bb723e - 2023-10-06 - monthly - 1.0 - - - - https://kenanbek.medium.com/configure-docker-compose-startup-order-for-django-rest-framework-and-celery-rabbitmq-redis-127f7a482626 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/stop-using-if-else-statements-f4d2323e6e4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@SeattleDataGuy/why-is-polars-all-the-rage-c9216894894d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/build-a-text-recommendation-system-with-python-e8b95d9f251c - 2023-10-06 - monthly - 1.0 - - - - https://russelllim22.medium.com/at-age-67-yitang-zhang-drops-another-number-theory-bombshell-d1f832437b12 - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/part-2-stop-using-if-else-statements-ae4b0bec5bad - 2023-10-06 - monthly - 1.0 - - - - https://samdecrock.medium.com/cracking-mifare-classic-nfc-cards-using-the-hardnested-attack-506aab3ea305 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/beginners-guide-to-diffusion-models-8c3435ccb4ae - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-keep-windows-from-sleeping-570d2042b338 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/building-a-knowledge-graph-for-job-search-using-bert-transformer-8677c8b3a2e7 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/choosing-the-right-gpu-for-deep-learning-on-aws-d69c157d8c86 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/nlp-part-3-exploratory-data-analysis-of-text-data-1caa8ab3f79d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/streaming-docker-containers-to-your-browser-75ae9d6e27f8 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-train-a-joint-entities-and-relation-extraction-classifier-using-bert-transformer-with-spacy-49eb08d91b5c - 2023-10-06 - monthly - 1.0 - - - - https://jordinjames.medium.com/saving-dad-from-driving-off-a-bridge-emotional-incest-at-its-finest-62641302bfcb - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-fine-tune-bert-transformer-with-spacy-3-6a90bfe57647 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/find-the-difference-in-python-68bbd000e513 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/3-easy-hacks-to-view-locked-member-only-articles-92020579c5f2 - 2023-10-06 - monthly - 1.0 - - - - https://capjmk.medium.com/how-to-use-debian-12-bookworm-for-monero-mining-d766876b2aa6 - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/library-of-the-week-5-segno-3f4ca09fc69 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/business-logic-vulnerabilities-291ec217e4f5 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/ios-14-checklist-for-developers-372bd6d2507e - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/interviewer-can-a-1-a-2-a-3-ever-evaluate-to-true-in-javascript-d2329e693cde - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/google-drive-push-notification-b62e2e2b3df4 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-simple-guide-to-linear-regression-using-python-7050e8c751c1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/game-dev-how-to-make-health-bars-in-unity-from-beginner-to-advanced-9a1d728d0cbf - 2023-10-06 - monthly - 1.0 - - - - https://genotechies.medium.com/flutter-and-supabase-crud-operations-tutorial-alternative-for-firebase-b0a16840f1bf - 2023-10-06 - monthly - 1.0 - - - - https://towardsdev.com/how-to-mine-xmr-in-p2pool-using-debian-12-bookworm-e5042959f266 - 2023-10-06 - monthly - 1.0 - - - - https://nureddineraslan.medium.com/building-a-real-time-chat-application-with-flutter-and-supabase-f28e0a7d46f2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/matplotlib-a-layered-data-visualization-library-870d992ff4b5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/better-humans/wrap-up-the-year-with-a-personal-annual-review-to-get-the-most-from-the-upcoming-one-7fd1ca43ed58 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/top-10-financial-apis-in-2023-54505fcd910a - 2023-10-06 - monthly - 1.0 - - - - https://artificialcorner.com/how-to-use-chatgpt-with-siri-on-your-iphone-d6e8c04c3df8 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/object-oriented-reinforcement-learning-95c284427ea - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@thisscience1/how-to-learn-quantum-mechanics-from-start-to-finish-4285f8110def - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/jenkins-for-ci-is-dead-why-do-people-hate-it-and-whats-the-alternative-8d8b6b88fdba - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/multiclass-classification-evaluation-with-roc-curves-and-roc-auc-294fd4617e3a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/how-to-create-an-auc-roc-plot-for-a-multiclass-model-9e13838dd3de - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/websocket-communication-between-two-go-programs-the-easy-way-d8c9cf40043f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@sourish.syntel/hierarchical-time-series-and-optimal-forecast-reconciliation-with-global-model-79cfa7d79b10 - 2023-10-06 - monthly - 1.0 - - - - https://entrepreneurshandbook.co/secrets-of-reddit-marketing-revealed-1666b893eac9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/a-beginners-look-at-kaggle-b868ceb2eccf - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/cloud-security-certification-path-for-2023-what-to-choose-adf2452765e9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/cyfrin/how-to-create-a-zk-smart-contract-cd948a673749 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@sttsai/jordan-peterson-is-an-atheist-after-all-1e82b1ac7250 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/python-how-to-get-live-market-data-less-than-0-1-second-lag-c85ee280ed93 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jsteinb/python-build-a-program-to-retrieve-and-graph-live-stock-market-data-311d9ca1b7d3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/6-top-ai-tools-beyond-chatgpt-that-will-blow-your-mind-productivity-enhance-artificial-intelligence-2249e9839290 - 2023-10-06 - monthly - 1.0 - - - - https://iorilan.medium.com/after-solved-1000-medium-leetcode-found-thes-patterns-backtracking-b683aa8bd8ac - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/seal-link-prediction-explained-6237919fe575 - 2023-10-06 - monthly - 1.0 - - - - https://medium.themayor.tech/bug-bounty-tips-001-e9c3ec13580c - 2023-10-06 - monthly - 1.0 - - - - https://medium.themayor.tech/bug-bounty-tips-001-17879af4509f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/sparse-matrices-why-they-matter-for-machine-learning-and-data-science-55d704d936b2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@saysky2/python-vs-c-language-e4f11cb247ee - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tsecretdeveloper/how-programmers-dress-to-impress-2048c93bfa93 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/you-should-replace-default-macos-terminal-to-iterm2-do-it-now-293e3c0460eb - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/introduction-to-pca-in-python-with-sklearn-pandas-and-matplotlib-476880f30238 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/from-encodings-to-embeddings-5b59bceef094 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/can-transformers-learn-to-strategize-862770c996ea - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/flutter-internationalization-with-easy-localization-790e46ca30e8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@alexfarmer/why-i-chose-salesforce-development-over-a-web-dev-job-ff70b52b2ae7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/is-your-morning-coffee-a-silent-addiction-the-dark-truth-about-caffeine-dependency-7950f1e5da75 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jarimh1984/installing-falcon-40b-oobabooga-oobabooga-api-to-runpod-cloud-2cf330d52521 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/text-classification-rnns-or-cnn-s-98c86a0dd361 - 2023-10-06 - monthly - 1.0 - - - - https://gmusumeci.medium.com/how-to-create-a-service-account-for-terraform-in-gcp-google-cloud-platform-f75a0cf918d1 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-to-develop-your-strategic-thinking-skills-and-stay-ahead-d52612b4254d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@snk.nitin/how-to-solve-cuda-out-of-memory-error-850bb247cfb2 - 2023-10-06 - monthly - 1.0 - - - - https://bettermarketing.pub/how-yahoo-missed-out-on-hundreds-of-billions-again-and-again-905f3bc86413 - 2023-10-06 - monthly - 1.0 - - - - https://techblog.flaviusdinu.com/devops-minimum-linux-d30db574bb8c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@andrew_johnson_4/understanding-rotary-position-embedding-a-key-concept-in-transformer-models-5275c6bda6d0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/oli-systems/building-dapps-backend-with-node-js-and-webpack-311cda224da5 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/variational-autoencoders-vaes-for-dummies-step-by-step-tutorial-69e6d1c9d8e9 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/introduction-to-rabbitmq-with-nodejs-61e2aec0c52c - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/principal-component-analysis-pca-with-python-examples-tutorial-67a917bae9aa - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/do-you-know-python-has-a-built-in-database-d553989c87bd - 2023-10-06 - monthly - 1.0 - - - - https://naokishibuya.medium.com/vae-variational-auto-encoder-2013-7373da309272 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@BetterEverything/run-python-code-at-specific-times-days-intervals-with-the-schedule-package-e8a6b290ec31 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/a-journey-with-go/go-inlining-strategy-limitation-6b6d7fc3b1be - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/a-journey-with-go/go-should-i-use-a-pointer-instead-of-a-copy-of-my-struct-44b43b104963 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/from-the-scratch/deep-learning-deep-guide-for-all-your-matrix-dimensions-and-calculations-415012de1568 - 2023-10-06 - monthly - 1.0 - - - - https://humanparts.medium.com/what-really-went-down-at-a-10-day-silent-vipassasna-meditation-retreat-taught-by-s-n-goenka-7c3ad60d027e - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/the-best-secret-of-midjourney-v5-2-its-not-zoom-out-but-create-consistent-style-d8ebdb11a0ba - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/top-10-nlp-projects-on-kaggle-to-strengthen-your-portfolio-cb28191c59dd - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/quora-insincere-questions-classification-d5a655370c47 - 2023-10-06 - monthly - 1.0 - - - - https://pkmjournal.com/first-look-at-lazy-so-notes-b52438e9f20e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/wavenet-variations-for-financial-time-series-prediction-the-simple-the-directional-relu-and-the-4860d8a97af1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/my-obsidian-setup-part-1-3a3bb8071bc7 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-build-an-elt-with-python-8f5d9d75a12e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-wavenet-works-12e2420ef386 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/my-obsidian-setup-part-2-1b82050fac0f - 2023-10-06 - monthly - 1.0 - - - - https://devblog.pytorchlightning.ai/torchmetrics-pytorch-metrics-built-to-scale-7091b1bec919 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/flutter-vs-native-vs-react-native-examining-performance-31338f081980 - 2023-10-06 - monthly - 1.0 - - - - https://beingpax.medium.com/downloadable-public-vaults-for-obsidian-4f060faa651c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@pepcoding/the-ultimate-beginners-guide-to-learn-node-js-843a56e17ef5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@WriteupsTHM_HTB_CTF/active-directory-basics-tryhackme-54effff9d710 - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/be-the-master-of-your-solar-data-e25f4afc29fb - 2023-10-06 - monthly - 1.0 - - - - https://parisnakitakejser.medium.com/sync-your-aws-codecommit-repository-to-your-github-repository-for-public-code-sharing-or-private-dacd9dd5d592 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mind-cafe/being-loved-is-different-from-being-successful-36e0743f6252 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/data-hackers/8-coisas-que-voc%C3%AA-n%C3%A3o-sabia-sobre-o-pandas-groupby-b2c9033d7034 - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/110-curated-ux-portfolios-for-inspiration-492e6156ed2b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/my-obsidian-setup-part-3-2928395c1567 - 2023-10-06 - monthly - 1.0 - - - - https://makingsenseofrails.dev/a-joyful-dive-into-best-practices-and-error-types-17ef7e2764f1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/my-obsidian-setup-part-4-plugins-529f4ff762b7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/my-obsidian-setup-part-5-more-plugins-bcbe32b963cb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/my-obsidian-setup-part-6-even-more-plugins-e96bd9a6dece - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/my-obsidian-setup-part-8-remaining-plugins-21adb768418d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/my-obsidian-setup-part9-journaling-how-to-345d72fcc4d8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/my-obsidian-setup-part-14-database-folder-plugin-932fe2e360ad - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/my-obsidian-setup-part-21-quickadd-in-depth-502330eb4b2f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/my-obsidian-setup-part-23-my-homepage-fe585e3335f9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/my-obsidian-setup-part-25-ios-widget-cf9dad7d825f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/my-obsidian-setup-part-26-db-folder-relations-65fb773ab11a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/my-obsidian-setup-part-29-home-dashboard-update-74a58cd56908 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/my-obsidian-setup-part-30-plugins-im-using-now-1-2-417b16299e09 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/my-obsidian-setup-part-30-plugins-im-using-now-2-3-4eb9654b8735 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/my-obsidian-setup-part-32-plugins-im-using-now-3-3-21a024bb74ea - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/optical-character-recognition-ocr-with-less-than-12-lines-of-code-using-python-48404218cccb - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/10-best-free-websites-to-learn-programming-939ec029009b - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/combining-api-calls-with-javascript-try-catch-ba1b7b9303a5 - 2023-10-06 - monthly - 1.0 - - - - https://writingcooperative.com/how-and-how-not-to-use-semicolons-3d071889b664 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/what-the-heck-are-vae-gans-17b86023588a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/aggregation-vs-composition-in-object-oriented-programming-3fa4fd471a9f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/calculus-for-the-beginner-building-calculus-piece-by-piece-9370f158ee89 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/how-to-write-configuration-files-in-your-machine-learning-project-47bc840acc19 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-to-unit-test-a-gorm-application-with-sqlmock-97ee73e36526 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@yatshunlee/a-simple-bash-command-saving-you-lots-of-time-to-train-multiple-deep-learning-models-in-a-row-df9938b61eb7 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/bash-for-data-scientists-data-engineers-mlops-engineers-a8e389621e2e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-machine-learning-engineers-toolkit-23def8d819e2 - 2023-10-06 - monthly - 1.0 - - - - https://blog.medium.com/what-were-reading-heritage-and-history-cd79999cd43d - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/4-graph-neural-networks-you-need-to-know-wlg-gcn-gat-gin-1bf10d29d836 - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/get-any-design-job-with-a-stellar-portfolio-presentation-by-reading-this-1b9ede9a479a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/the-one-tool-that-every-machine-learning-engineer-should-master-68aecd920b0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@nithinbharadwajd/how-to-get-data-from-telegram-using-python-1e0d5e98067f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@mirceaiosif/how-to-get-data-from-telegram-using-python-b358c53786bc - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/web-scraping-and-web-autom-db9bb00fcc4 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-to-get-data-from-telegram-82af55268a4b - 2023-10-06 - monthly - 1.0 - - - - https://shanisilver.medium.com/how-to-make-new-friends-when-youre-single-15701cd20dc7 - 2023-10-06 - monthly - 1.0 - - - - https://fatfish.medium.com/interviewer-can-a-1-a-2-a-3-ever-evaluate-to-true-in-javascript-565fc064d676 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/revolutionize-your-meeting-productivity-the-ultimate-apple-ecosystem-automation-8022e4366dc0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/apple-reminders-review-best-to-do-app-for-those-in-the-apple-ecosystem-e5d1baa5fcd9 - 2023-10-06 - monthly - 1.0 - - - - https://techwithdom.medium.com/why-i-left-the-apple-ecosystem-c4cdef6e86cf - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/productive-life/apple-reminders-in-ios-17-9767069b9c0a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/boost-personal-productivity-with-kanban-and-apple-reminders-1c5fc0b69d22 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/flags-vs-priority-levels-which-one-is-best-in-apple-reminders-100b95a1cd95 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/getting-things-done-in-apple-reminders-22057f7e42b7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/how-to-create-reusable-checklists-in-apple-reminders-e19a790221b0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/pro-tips-for-using-tags-to-organize-tasks-in-apple-reminders-f43c3b87eed4 - 2023-10-06 - monthly - 1.0 - - - - https://willjmurphy.medium.com/i-implemented-gtd-with-apple-reminders-on-ipados-15-ios-15-and-i-like-it-510dc3168c2d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@codemaclife/3-reasons-why-i-switched-from-todoist-to-apple-reminders-39b4942ddebf - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-rest-of-the-story/apples-ecosystem-is-overrated-be60bc95545c - 2023-10-06 - monthly - 1.0 - - - - https://evilgeek.medium.com/the-only-3-reasons-why-you-should-invest-in-an-apple-ecosystem-58614919a95d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/locked-in-apple-ecosystem-1641df494361 - 2023-10-06 - monthly - 1.0 - - - - https://blog.angulartraining.com/how-to-create-a-simple-modal-dialog-with-angular-277ea7f96da1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@zeeshanJ./earn-300-everyday-just-typing-names-15-per-page-3a7f519ae43d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@subhashishc/i-uncovered-what-crypto-millionaires-are-buying-the-next-1000x-altcoins-554367b37480 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/i-used-chatgpt-and-won-in-the-lottery-im-not-kidding-a0bf989a3f62 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-ai-publishing-experiment/the-easiest-way-to-make-money-with-ai-1030e6e10fcf - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/to-make-millions-be-a-good-student-of-seasons-in-the-cryptocurrency-market-968e43da06fe - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@worstonlinedater/tinder-experiments-ii-guys-unless-you-are-really-hot-you-are-probably-better-off-not-wasting-your-2ddf370a6e9a - 2023-10-06 - monthly - 1.0 - - - - https://www.cantorsparadise.com/numbers-are-really-geometric-transformations-6cf173ae619a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/my-7-most-powerful-apple-shortcuts-7dec32a445c1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/androiddevelopers/now-in-android-90-a852c6753fda - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@KaushalVasava/migrate-from-kapt-to-ksp-kapt-will-be-deprecated-soon-b347244a83f5 - 2023-10-06 - monthly - 1.0 - - - - https://blog.stackademic.com/what-happens-when-you-reach-the-age-of-35-as-a-programmer-5bb7907bce91 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/my-learning-journal/5-best-apps-to-organize-your-life-that-arent-notion-3f428042dc3c - 2023-10-06 - monthly - 1.0 - - - - https://blog.stackademic.com/solid-design-principles-with-kotlin-android-69e75a566c41 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obscure-horror/john-cummings-the-knife-swallowing-soldier-8a1d44d273bd - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/transcribe-audio-files-with-openais-whisper-e973ae348aa7 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/system-design-basics-getting-started-with-the-client-server-architecture-b02f9c9daae8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/grabngoinfo/five-ways-to-create-tables-in-databricks-cd3847cfc3aa - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/understand-git-hooks-static-analysis-for-android-development-d28225d30ec2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@zeeshanJ./earn-2-00-for-every-10-emails-you-open-how-to-make-money-online-2023-9a57aa954450 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/7-best-javascript-datetime-library-you-can-use-in-your-next-project-d407a2063ef0 - 2023-10-06 - monthly - 1.0 - - - - https://blog.bitsrc.io/how-to-handle-time-zones-in-javascript-b135a7931453 - 2023-10-06 - monthly - 1.0 - - - - https://fanfare.pub/are-movie-recaps-ruining-films-43c7c28f5bb8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@hnasr/the-postgres-replication-dilemma-72bef6cc4599 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/api-tutorial-how-to-use-bing-web-search-api-in-python-4165d5592a7e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@m-zimmermann1/why-you-will-regret-using-getx-for-flutter-2023-4bd7b710fa47 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jeantimex/how-to-configure-iterm2-and-vim-like-a-pro-on-macos-e303d25d5b5c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/how-much-does-youtube-pay-516ea8cd338d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-daily-cuppa-grande/our-drive-in-theater-is-closing-91059a306136 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/age-of-empathy/my-privilege-under-scrutiny-173f6eea9030 - 2023-10-06 - monthly - 1.0 - - - - https://writingcooperative.com/3-more-reasons-why-im-not-buying-your-self-published-book-2ffb08901a38 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/5-freelance-writing-sites-that-pay-daily-d8c7e594cfae - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/creating-a-data-science-and-machine-learning-portfolio-with-notion-25888cf19356 - 2023-10-06 - monthly - 1.0 - - - - https://alissaknight.medium.com/hacking-gsm-building-a-rogue-base-station-to-hack-cellular-devices-a938cd8262a0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/50-microservices-interview-questions-for-java-programmers-70a4a68c4349 - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/pyspark-dataframe-comparison-a-must-know-skill-for-data-scientists-engineers-afe7541f9b15 - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/3-pandas-functions-for-dataframe-merging-5ad29de0b5b3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-tune-multiple-ml-models-with-gridsearchcv-at-once-9fcebfcc6c23 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/curious/it-is-time-to-organize-your-digital-files-73dcf2eb3cd4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/top-3-reasons-why-crypto-projects-fail-and-how-to-find-the-good-ones-9d58fed4a35b - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/i-analyzed-1000-crypto-icos-here-is-what-i-learned-d8d1ef97ac7f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@priyanka.kolachina/azure-devops-and-jenkins-integration-c18128ba4715 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mind-cafe/how-to-move-to-a-city-you-dont-want-to-move-to-100f7edf1132 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/curious-papers/to-the-1-i-love-this-is-for-us-2-9e797438d1f4 - 2023-10-06 - monthly - 1.0 - - - - https://writingcooperative.com/these-easy-self-publishing-marketing-tactics-continue-to-work-for-me-abc2c378d644 - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/types-of-kernels-in-machine-learning-291cf85fcdd0 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/algorithmic-trading-with-rsi-using-python-f9823e550fe0 - 2023-10-06 - monthly - 1.0 - - - - https://kaabar-sofien.medium.com/back-testing-the-rsi-divergence-strategy-on-fx-in-python-c3680e7e2960 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/trend-confirmation-strategy-using-the-rsi-in-python-96079b74e712 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/using-neural-networks-to-solve-ordinary-differential-equations-a7806de99cdd - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-simple-breakout-trading-strategy-in-python-eb043b868d8e - 2023-10-06 - monthly - 1.0 - - - - https://wire.insiderfinance.io/rsi-divergence-trading-strategy-e2e16788324a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/s%C4%B1f%C4%B1rdan-i%CC%87leri-d%C3%BCzeye-java-e%C4%9Fitim-serisi/jpa-java-persistence-api-ad23bda49931 - 2023-10-06 - monthly - 1.0 - - - - https://wire.insiderfinance.io/optimization-of-your-trading-strategy-parameters-f187964eece0 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/50-inspiring-cheat-codes-to-boost-your-creativity-on-midjourney-part-1-2755f69468ea - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/creating-an-enhanced-divergence-trading-algorithm-using-a-filter-38d048f47700 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/create-the-most-photorealistic-images-on-midjourney-success-prompting-formula-100-cheat-codes-part2-cd350504ad1c - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/build-a-bollinger-bands-and-rsi-trading-strategy-using-python-701187088cdd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/fintechexplained/what-is-database-sharding-582b36282f97 - 2023-10-06 - monthly - 1.0 - - - - https://ai.plainenglish.io/llama-2-a-new-llms-family-has-arrived-97d03d4c0d34 - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/creating-a-trading-strategy-based-on-the-adx-indicator-9a310ed4b258 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/an-introduction-to-database-sharding-b6abde73d04f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/trading-signal-generation-techniques-visualization-e9aa6621f520 - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/database-sharding-a-must-know-system-design-concept-1b79016e2cd2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-handbook-of-coding-in-finance/building-a-simple-trading-strategy-in-python-trend-following-727cafecb78c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@zeeshanJ./4-simple-passive-income-ideas-for-earning-1-000-monthly-9478afc912e5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illuminations-mirror/laziest-way-to-make-money-online-for-beginners-100-day-721f47532969 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@mmomm.org/obsidian-dynbedded-4f04985d4d7b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@mixasite/5-essential-obsidian-plugins-for-supercharging-your-productivity-ddec98ad446e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@zeeshanJ./earn-955-per-day-using-google-news-make-money-online-2023-90cffc317add - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@taiyu_chen/using-obsidian-with-google-drive-10beca66bd29 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/phd-and-productivity/20-things-to-do-in-semester-1-of-a-phd-a95ead2910bc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@petermilovcik/improve-productivity-with-obsidians-tasks-plugin-for-efficient-daily-task-management-8e5e42d08bf - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illuminations-mirror/18-side-hustles-you-can-do-from-your-phone-300-per-day-35dabf06f91e - 2023-10-06 - monthly - 1.0 - - - - https://blog.gopenai.com/knowledge-graphs-and-large-language-models-a-symphony-of-potential-a-review-of-xin-luna-dongs-70d7479b6ea3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@peter.lawrence_47665/encouraging-results-for-knowledge-graph-extraction-by-llm-ontology-prompting-60a7e5dcaf0a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/out-of-distribution-detection-in-deep-neural-networks-450da9ed7044 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/understanding-t5-model-text-to-text-transfer-transformer-model-69ce4c165023 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jovan.cicmil.dev/arvid-kahl-the-embedded-entrepreneur-cb2b7db06cd4 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/large-graph-visualization-tools-and-approaches-2b8758a1cd59 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/architecting-a-machine-learning-pipeline-a847f094d1c7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/10-things-to-consider-before-a-database-migration-1257efae1888 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/5-java-classes-no-one-knows-about-161412cd331d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@AlexanderObregon/10-essential-intellij-idea-plugins-for-boosting-productivity-1a5c27f00b36 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/build-a-swift-package-in-5-minutes-21b346f2e537 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-complete-guide-to-docker-volumes-1a06051d2cce - 2023-10-06 - monthly - 1.0 - - - - https://keith-mcnulty.medium.com/start-your-day-with-math-268f75bd9289 - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/init-files-in-python-how-to-organize-your-code-into-logical-and-reusable-units-1f4c7c31d4f7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/spring-transactional-mistakes-everyone-did-31418e5a6d6b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/acing-ai/what-is-latent-semantic-analysis-lsa-4d3e2d18417a - 2023-10-06 - monthly - 1.0 - - - - https://michalmalewicz.medium.com/there-are-five-levels-of-ui-skill-62e0e7700855 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/designing-an-app-for-a-travel-agency-a-ux-case-study-c37dd8fbb32f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-f1-score-bec2bbc38aa6 - 2023-10-06 - monthly - 1.0 - - - - https://thewritescott.medium.com/she-spoke-16-languages-she-could-help-me-learn-a-second-one-85d3fcd54290 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/build-a-basic-websocket-app-with-python-react-7e1096b9f866 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/flutter-community/multi-language-support-in-flutter-a12de708f833 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@chris_42047/implementing-a-keltner-channel-breakout-strategy-in-python-algorithmic-trading-def32217375e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/nlnetlabs/dns-over-https-in-unbound-c7a407e8480 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/6-ways-to-update-data-in-batches-in-mysql-b6facc0a6c22 - 2023-10-06 - monthly - 1.0 - - - - https://michalmalewicz.medium.com/figma-is-using-dark-patterns-to-charge-you-more-4f04b0537f43 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/spectral-graph-convolution-explained-and-implemented-step-by-step-2e495b57f801 - 2023-10-06 - monthly - 1.0 - - - - https://karlastarr.medium.com/just-do-it-doesnt-work-when-you-re-depressed-a3e4891e3f73 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/stravas-bumpy-road-to-monetisation-5b82f23fcf07 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/get-started-with-obsidian-when-you-dont-know-what-you-re-doing-3c6e19ea5dc5 - 2023-10-06 - monthly - 1.0 - - - - https://pkmjournal.com/this-is-a-further-deep-dive-into-why-i-use-what-i-use-in-my-pkm-cf112f80ee6b - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/build-a-successful-mvp-using-the-ycombinator-strategy-8a290e126d07 - 2023-10-06 - monthly - 1.0 - - - - https://beingpax.medium.com/7-obsidian-templates-that-supercharge-my-second-brain-d73102c5a9af - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/taking-notes/building-a-fuzzy-logic-pkm-27b852648e35 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/a-software-developers-review-of-the-m2-macbook-air-d6f609cc124f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@fullstacktips/how-to-create-redis-instance-on-aws-using-terraform-e90439d96c9 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/pandas-profiling-easy-exploratory-data-analysis-in-python-65d6d0e23650 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@soumyachess1496/cross-validation-in-time-series-566ae4981ce4 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/perplexity-intuition-and-derivation-105dd481c8f3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/dont-use-database-generated-ids-d703d35e9cc4 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/airflow-command-line-interface-cli-cheat-sheet-6e5d90bd3552 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/getting-started-with-airflow-locally-and-remotely-d068df7fcb4 - 2023-10-06 - monthly - 1.0 - - - - https://jonbeckett.medium.com/generating-obsidian-maps-of-content-automatically-f3bbcbcbc7c - 2023-10-06 - monthly - 1.0 - - - - https://ngwaifoong92.medium.com/introduction-to-controlnet-for-stable-diffusion-ea83e77f086e - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/10-python-anti-patterns-you-must-avoid-when-writing-clean-code-ff3635ca1510 - 2023-10-06 - monthly - 1.0 - - - - https://kvirajdatt.medium.com/calculating-output-dimensions-in-a-cnn-for-convolution-and-pooling-layers-with-keras-682960c73870 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@think-data/pyspark-dataframe-api-vs-spark-sql-choosing-your-data-transformation-arsenal-51ee76cf9855 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@Lost_Fresco/scroll-airdrop-guide-1-8-billion-valuation-dont-miss-out-cce75e00ce5f - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/225-cool-midjourney-prompts-for-anime-manga-7586946e66ca - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/crypto-cash-flow-intelligence/range-protocol-confirmed-airdrop-1000-easy-6058de5b7f16 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/vacatronics/3-ways-to-calibrate-your-camera-using-opencv-and-python-395528a51615 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@mariana.carvalho/ghc-internship-and-full-time-opportunities-ee1efda6041d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/practical-monitoring-with-prometheus-grafana-part-iii-81f019ecee19 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/the-strategy-to-be-applied-for-the-correct-work-of-timezones-9e1d91edc36d - 2023-10-06 - monthly - 1.0 - - - - https://writingcooperative.com/i-dropped-out-of-my-mfa-in-creative-writing-program-heres-what-i-learned-c910d4e69b51 - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/the-4-step-framework-to-solve-almost-any-problem-like-top-strategy-consultants-66bf9f11afbd - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/getting-keycloak-extensions-to-work-5-necessary-ingredients-1b338a24c516 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/how-to-install-an-older-brew-package-add141e58d32 - 2023-10-06 - monthly - 1.0 - - - - https://markwschaefer.medium.com/whatever-happened-to-web3-e54f49f75732 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/querying-both-structured-and-unstructured-data-with-llamaindex-and-openai-8121c97ba57 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/personal-growth/to-live-is-the-rarest-thing-in-the-world-29ea03dbe768 - 2023-10-06 - monthly - 1.0 - - - - https://www.cantorsparadise.com/riemanns-explicit-formula-a-beautiful-expression-for-the-prime-counting-function-1c83f5b65dfd - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/writing-backstage-plugins-a6bb1283f42 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/top-5-python-libraries-for-extracting-text-from-images-c29863b2f3d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/all-python-debugging-tools-you-need-to-know-in-2020-e3ff66b8f318 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/illustrating-the-reformer-393575ac6ba0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/yardcouch-com/blackrock-and-michael-burry-exit-us-markets-bracing-for-recession-74564db7c7c - 2023-10-06 - monthly - 1.0 - - - - https://jasontraylor23.medium.com/7-patient-loving-understanding-ways-to-date-a-guarded-woman-f16d8b9cf50e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/24-new-ios-17-features-that-make-your-iphone-ultra-productive-32d3f7270051 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coinmonks/the-us-has-a-bitcoin-secret-879f73bef57f - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/your-crypto-will-explode-ahead-of-the-most-significant-deflationary-shock-the-world-has-ever-seen-d872015ae998 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/an-economic-catastrophe-is-coming-and-despite-what-people-will-have-you-believe-your-bitcoin-d59b6cd5925f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/cryptocurrencies-ups-and-down/how-to-10x-your-money-during-the-next-bullmarket-9e980aa78422 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coinmonks/elon-musk-backs-bold-crypto-forecast-by-2030-5182804816df - 2023-10-06 - monthly - 1.0 - - - - https://nomadic-dmitry.medium.com/apple-silicon-m1-how-to-run-x86-and-arm-virtual-machines-on-it-cdd9d9054483 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/ready-for-the-next-bull-run-5-disruptive-web3-projects-to-look-out-for-a070e8cc0b52 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/mock-server-using-wiremock-a61cbd55a690 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@woeterman_94/cool-trick-open-any-github-repo-in-vscode-online-7d221f70f643 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/11-mind-blowing-ai-apps-for-macos-to-get-mundane-tasks-done-quicker-455a55f48034 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@xjpp22/maximizing-database-efficiency-15-tips-for-effective-table-design-3dc88f56c0d3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/tech-takeaways/migrating-my-app-to-android-13-f5ad0649d23d - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/chatgpt-equips-programmers-with-these-7-superpowers-33210ece0e43 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/from-code-to-beyond/stop-using-promise-all-in-javascript-a8157bc692bd - 2023-10-06 - monthly - 1.0 - - - - https://blog.prototypr.io/why-its-important-to-size-text-fields-correctly-d3938d65e94d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/the-story-of-chatgpt-and-openai-the-evolution-of-gpt-models-abf201316a9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/bollinger-bands-relative-strength-index-strategy-in-python-986d15510539 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/line-of-best-fit-in-linear-regression-13658266fbc8 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/data-pre-processing-a-step-by-step-guide-541b083912b5 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/docker-for-data-science-projects-a-beginner-friendly-introduction-58e523ebbacb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/getting-started-with-nlp-tokenization-document-term-matrix-tf-idf-2ea7d01f1942 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jankammerath/relational-database-systems-are-becoming-a-problem-but-what-to-do-about-it-eb868d060601 - 2023-10-06 - monthly - 1.0 - - - - https://jimwfonseca.medium.com/the-one-minute-geographer-new-jerseys-population-density-50c7aa6c6bb5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tomhcorbin/data-storage-in-pyspark-save-vs-saveastable-8787e9370dde - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/spnkd/curious-about-joining-fetlife-take-my-hand-and-let-me-guide-you-bbbfe17033cc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/quant-factory/i-found-one-of-the-best-trading-strategies-with-python-4ae03e4d072b - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/node-js-buffer-essentials-tips-and-tricks-for-efficient-programming-be8fe87b1d9c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/cryptocurrencies-ups-and-down/how-does-defi-2-0-differ-from-defi-1-0-301159f630c5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@subhashishc/secret-method-for-finding-alt-coin-gems-every-time-d3350b8927d5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coinmonks/my-crypto-earnings-august-33dcfd76a4a4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@solidquant/what-i-learned-from-a-month-of-intensive-mev-bot-study-38a4e357da0b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/bollinger-bands-for-stock-trading-theory-and-practice-in-python-7d3e79d30e02 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/choosing-the-best-ml-time-series-model-for-your-data-664a7062f418 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/vs-code-extremely-useful-extensions-2c97ad49a642 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/introduction-to-kafka-stream-processing-in-python-e30d34bf3a12 - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/modern-neovim-configuration-recipes-d68b16537698 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/nlp-preprocessing-with-nltk-3c04ee00edc0 - 2023-10-06 - monthly - 1.0 - - - - https://xthemadgenius.medium.com/mastering-controlnet-15bfb554736e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/play-your-steam-games-on-your-secondary-monitor-3783ca20ad0f - 2023-10-06 - monthly - 1.0 - - - - https://randerson112358.medium.com/algorithmic-trading-using-bollinger-bands-python-e5081cbd7b4a - 2023-10-06 - monthly - 1.0 - - - - https://badih76.medium.com/client-device-detection-in-next-js-13-df35c4b0255c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/can-https-browsing-history-be-checked-9291b02f1c97 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-scrape-the-dark-web-53145add7033 - 2023-10-06 - monthly - 1.0 - - - - https://lhessani-sajid.medium.com/beat-the-market-using-algorithmic-trading-and-bollinger-band-python-application-9a59d0b34451 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jankammerath/how-kubernetes-and-kafka-will-get-you-fired-a6dccbd36c77 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/google-cloud/all-you-need-to-know-about-google-vertex-ai-matching-engine-3344e85ad565 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-pass-a-configuration-file-to-a-kubernetes-pod-61c1bcd286a5 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/i-counted-8-mistakes-in-this-15-word-dialog-design-21e2f4bb7a73 - 2023-10-06 - monthly - 1.0 - - - - https://generativeai.pub/100-negative-prompts-everyone-are-using-c71d0ba33980 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/build-deploy-a-react-flask-app-47a89a5d17d9 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/figma-auto-layout-complete-guide-704e6f56f756 - 2023-10-06 - monthly - 1.0 - - - - https://generativeai.pub/400-midjourney-prompts-for-illustrations-7a721e64129c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/deep-reinforcement-learning-and-object-detection-for-artificial-intelligent-agent-c68dd14618a0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/the-routine-that-helped-me-write-30-articles-a-month-with-a-day-job-673f645a79bc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/toxic-positivity-how-to-avoid-the-positive-cult-revolution-e960f0c8973c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/represent-hierarchical-data-in-python-cd36ada5c71a - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/figmas-brand-new-auto-layout-feature-nov-2020-a-responsive-design-heaven-d1ebc9b597f5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/from-code-to-beyond/explore-the-hidden-power-of-javascript-generators-43c9dde37486 - 2023-10-06 - monthly - 1.0 - - - - https://tmmtt.medium.com/how-to-stream-chatgpt-api-responses-b783f1e5f13d - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/figma-responsive-design-with-auto-layout-constraints-grids-9833890c0ae6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ricraftis/how-to-change-your-obsidian-color-palette-and-theme-for-a-more-personal-experience-2f9c6910464e - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/21-python-tips-and-concepts-to-improve-your-code-dd668a621ca3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/google-cloud/hosting-a-react-js-app-on-google-cloud-app-engine-6d1341b75d8c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/reading-and-interpreting-summary-statistics-df34f4e69ba6 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/10-mistakes-to-avoid-when-getting-started-with-vue-3-bedf04ace82d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/sparky-thoughts/midjourney-tiles-prompts-results-and-tips-e6d34fc8951 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@laraveltuts/automatically-backup-database-laravel-9-980bad3941c4 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/make-a-flexbox-react-component-e96a038da7ec - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/sqlfluff-the-linter-for-modern-sql-8f89bd2e9117 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/create-a-responsive-grid-with-react-flexbox-styled-components-f7a55f607480 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/recommendation-systems-for-beginners-c53765547ef9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@brianridolcedev/zod-vs-other-typescript-validation-libraries-which-one-is-right-for-you-1778dfc41b83 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-run-postgresql-and-pgadmin-using-docker-3a6a8ae918b5 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-connect-to-a-heroku-postgres-database-with-pgadmin4-using-docker-6ac1e423ae66 - 2023-10-06 - monthly - 1.0 - - - - https://generativeai.pub/9-midjourney-hacks-to-amp-your-productivity-3240f3b3774a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@venkat.ramrao/fine-tuning-llama-2-using-qlora-and-a-cot-dataset-515f38b3972d - 2023-10-06 - monthly - 1.0 - - - - https://ai.plainenglish.io/fine-tuning-llama2-0-with-qloras-single-gpu-magic-1b6a6679d436 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/simple-audio-processing-in-python-with-pydub-c3a217dabf11 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/an-amygdala/heres-a-riddle-that-might-expose-your-blind-spot-fc2902b4434d - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/10-important-tips-for-using-nested-lists-in-python-38ceca68be35 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/google-cloud/how-to-use-previously-created-artifacts-with-vertex-ai-pipelines-ca440bb3f401 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/basicdrop/why-i-dont-make-promises-59dcd52f1157 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/set-up-an-express-js-app-with-passport-js-and-mongodb-for-password-authentication-6ea05d95335c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/how-to-register-an-apple-developer-account-2020-183221496022 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coinmonks/the-most-expensive-lesson-of-my-life-details-of-sim-port-hack-35de11517124 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/crypto-24-7/this-defillama-new-feature-discovers-the-next-100x-projects-ce9477e7e69d - 2023-10-06 - monthly - 1.0 - - - - https://blog.ml6.eu/can-ai-generate-truly-original-logos-cd05ab8f4622 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/be-open/16-crypto-gems-with-50x-potential-dont-miss-out-on-these-hot-investments-6a09855c2456 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/a-microbiome-scientist-at-large/theres-more-purpose-to-the-y-chromosome-than-believed-ed205c70e292 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/best-practices-creating-an-etl-part-1-bdb563381025 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/onedrive-as-data-storage-for-python-project-2ff8d2d3a0aa - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/7-awesome-command-line-tools-36cea5cfc026 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@narcistabarasi/secure-your-openai-api-keys-in-ios-android-apps-using-firebase-96afb72106c6 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/good-commit-vs-your-commit-how-to-write-a-perfect-git-commit-message-6e96ab6357fa - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/how-i-built-a-4-figure-website-in-2-years-step-by-step-b53462308e7b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/finding-and-visualising-non-linear-relationships-4ecd63a43e7e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/partial-dependence-plots-with-scikit-learn-966ace4864fc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@concisesoftware/5-reasons-to-build-your-backend-using-node-js-5e5d8c07ba16 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/deno-the-complete-reference/how-do-i-write-a-hello-world-server-in-bun-e89af4f508d7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coinmonks/best-3-stocks-from-ark-etf-to-buy-in-september-2023-67a0f138845e - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/your-pre-investment-decisions-might-be-behind-your-stock-market-losses-despite-investing-in-768ef9de9c2c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@lahotipranali/google-software-engineer-interview-experience-offer-25e4eb6a0a5c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/neat-time-series-aggregations-with-core-pyspark-4a739953076a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@alinaabid_95/5-ways-i-used-chatgpt-to-help-me-land-a-job-as-a-lead-data-analyst-b85ec3402306 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/meet-julia-the-future-of-data-science-52414b29ebb - 2023-10-06 - monthly - 1.0 - - - - https://elemental.medium.com/scientific-case-for-eating-bread-health-diet-f2a2c1bf74bf - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/git-for-the-modern-data-scientist-9-git-concepts-you-cant-ignore-b4eaf7a154c2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@_init_/exploring-ai-chatbots-as-programming-partners-chatgpt-google-bard-and-bing-chat-f992c32d5293 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/ai-chatbots-compared-chatgpt-vs-bing-chat-vs-google-bard-937b791b8a51 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/node2vec-explained-db86a319e9ab - 2023-10-06 - monthly - 1.0 - - - - https://onezero.medium.com/the-dark-forest-theory-of-the-internet-7dc3e68a7cb1 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/understanding-the-covariance-matrix-92076554ea44 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/business-intelligence-visualizations-with-python-1d2d30ce8bd9 - 2023-10-06 - monthly - 1.0 - - - - https://writingcooperative.com/note-taking-is-not-enough-knowledge-management-for-researchers-and-writers-319acec1fc2e - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/the-decade-in-design-93662d18bb65 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/using-xcode-instruments-to-improve-app-performance-a9b30f5e5813 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/how-to-lead-by-example-2b6810d0f670 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@gunashree.v/what-is-hadoop-use-cases-challenges-and-benefits-explained-61b0be719ff7 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/javascript-bang-bang-i-shot-you-down-use-of-double-bangs-in-javascript-7c9d94446054 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/predict/tesla-should-be-worried-about-toyota-7611a68a583b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/realm/saving-data-in-unity3d-using-playerprefs-3174ab599cd0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/dataman-in-ai/a-primer-to-image-pre-trained-models-223aa858833c - 2023-10-06 - monthly - 1.0 - - - - https://dataman-ai.medium.com/transfer-learning-for-image-classification-5-get-image-data-ready-and-go-554044a12e6d - 2023-10-06 - monthly - 1.0 - - - - https://kristynazapletal.medium.com/the-37-best-websites-to-learn-something-new-895e2cb0cad4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/did-chatgpt-get-a-sense-of-humor-7b6f273d05af - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/instagram-makes-bad-navigation-good-174285d9e0bd - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/reducing-bias-from-models-built-on-the-adult-dataset-using-adversarial-debiasing-330f2ef3a3b4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tsecretdeveloper/the-7-signs-of-a-bad-programmer-a624204f7222 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@WriteupsTHM_HTB_CTF/intro-to-ir-and-im-tryhackme-e766efb5315 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/demystifying-x-hello-or-hi-in-python-9d097850c184 - 2023-10-06 - monthly - 1.0 - - - - https://ellie-collins.medium.com/can-you-buy-intelligence-the-race-to-overclock-the-brain-a6657a4b2494 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/topic-modeling-with-lsa-plsa-lda-nmf-bertopic-top2vec-a-comparison-5e6ce4b1e4a5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@miguelznunez/easily-drag-drop-images-into-your-project-with-vanilla-javascript-57058f7c3162 - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/build-chatgpt-like-chatbots-with-customized-knowledge-for-your-websites-using-simple-programming-f393206c6626 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/keeping-browser-bookmarks-in-obsidian-is-actually-a-pretty-smart-move-de0a6b9c56d9 - 2023-10-06 - monthly - 1.0 - - - - https://ilro.medium.com/a-step-by-step-guide-on-taking-smart-notes-using-the-zettelkasten-methodology-using-obsidian-67a3235c5e0e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@adamszpilewicz/task-scheduler-in-go-using-sync-cond-bc84a7eac326 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/the-chatgpt-list-of-lists-a-collection-of-1500-useful-mind-blowing-and-strange-use-cases-8b14c35eb - 2023-10-06 - monthly - 1.0 - - - - https://blossomstreetventures.medium.com/revenue-per-employee-in-saas-8b158bd8e23b - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/why-bun-js-is-the-best-for-serverless-functions-65bcefeee4fa - 2023-10-06 - monthly - 1.0 - - - - https://lukaonik.medium.com/do-we-need-to-unsubscribe-http-client-in-angular-86d781522b99 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@bug4y0u/how-i-got-4-sqli-vulnerabilities-at-one-target-manually-using-the-repeater-tab-ed4eb1f84147 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/building-the-ultimate-google-apps-script-front-ends-part-1-bundling-with-vite-6e456c2b710a - 2023-10-06 - monthly - 1.0 - - - - https://articles.wesionary.team/road-to-becoming-a-javascript-ninja-creating-your-own-simple-javascript-playground-part-i-38a931ebf752 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/what-are-the-best-metrics-to-evaluate-your-regression-model-418ca481755b - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-to-create-your-backend-portfolio-d9539d5ffb48 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/cpm-an-awesome-dependency-manager-for-c-with-cmake-3c53f4376766 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@daniel.atitienei/creating-widgets-with-jetpack-compose-glance-d27d7e9a54c1 - 2023-10-06 - monthly - 1.0 - - - - https://anuragajwani.medium.com/how-to-build-universal-ios-static-libraries-using-xcframework-a3f70f998c38 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/onfido-tech/distributing-compiled-ios-swift-static-libraries-and-swift-static-frameworks-7fecc4f3d182 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jooskorstanje/2-minutes-to-set-up-git-github-and-github-desktop-on-windows-98379a6b72cc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/onfido-tech/reusing-code-and-resources-with-swift-static-libraries-and-resource-bundles-d070e82d3b3d - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/why-you-should-stop-using-list-comprehensions-in-python-a6f96f0f6cbd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/how-to-create-a-serverless-nodejs-rest-api-903e16d80fea - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/when-to-write-end-to-end-tests-246d43b166d0 - 2023-10-06 - monthly - 1.0 - - - - https://switchupcb.medium.com/why-i-rewrote-it-in-rust-6d5fedd74f1e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/7-useful-php-libraries-you-should-use-in-your-next-project-d728c29f1078 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdev.com/why-the-rust-community-should-be-worried-about-the-new-carbon-language-3a0ab07d6ce5 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/on-object-detection-metrics-with-worked-example-216f173ed31e - 2023-10-06 - monthly - 1.0 - - - - https://thexssrat.medium.com/burp-suite-do-i-need-the-professional-edition-bf8c87ce236e - 2023-10-06 - monthly - 1.0 - - - - https://peternorvig.medium.com/ive-consed-every-pair-54ef5d9d93b6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/airbnb-engineering/avoiding-double-payments-in-a-distributed-payments-system-2981f6b070bb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mobile-app-development-publication/setup-a-self-modifiable-list-of-data-in-jetpack-compose-2057c1ae6109 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/rahasak/monitor-elasticsearch-with-prometheus-and-grafana-687a0b6712 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@arton.demaku/managing-kubernetes-secrets-best-practices-and-examples-85eaeb6a6835 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/multiple-linear-regression-an-intuitive-approach-f874f7a6a7f9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/google-cloud/consuming-google-secret-manager-secrets-in-gke-911523207a79 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tsecretdeveloper/my-company-told-me-they-dont-care-about-me-by-buying-me-a-new-macbook-pro-ff5fc1361a15 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/building-multitenant-app-using-azure-cosmos-db-in-clean-architecture-910b94fe3adf - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/how-to-use-smote-for-dealing-with-imbalanced-image-dataset-for-solving-classification-problems-3aba7d2b9cad - 2023-10-06 - monthly - 1.0 - - - - https://scollay.medium.com/multiprocessing-pandas-46-95-faster-dataframe-enhancements-c65ef29f03b1 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/the-best-serverless-gpu-providers-in-2023-e80e672e7a34 - 2023-10-06 - monthly - 1.0 - - - - https://medium.easyread.co/golang-clean-archithecture-efd6d7c43047 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/make-time/six-years-with-a-distraction-free-iphone-8cf5eb4f97e3 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/write-go-like-a-senior-engineer-eee7f03a1883 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@inchristiely/make-money-selling-midjourney-ai-images-with-this-incredible-platform-6290e2ddd46a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coinmonks/rule-the-crypto-world-with-statistical-arbitrage-a-crypto-trading-bot-cf32be56f6c5 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/how-i-made-money-with-python-web-scraping-9f44c5804ecd - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/what-exactly-happens-when-we-fine-tune-bert-f5dc32885d76 - 2023-10-06 - monthly - 1.0 - - - - https://deezer.io/rethinking-your-data-platform-documentation-so-that-people-actually-read-it-84baff70b9a4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/gradient-growth/the-art-of-trading-icts-view-on-finding-one-trading-setup-for-life-ba637add0324 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/update-your-existing-ios-framework-to-swift-package-fa8128323b33 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-to-add-compiled-frameworks-in-swift-package-manager-f0cdbde84fc7 - 2023-10-06 - monthly - 1.0 - - - - https://modern-cdo.medium.com/2022-technology-landscape-to-make-ai-self-service-da9b9598d83a - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/the-best-django-extensions-and-plugins-for-every-need-967791057326 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ferencalmasi/how-to-make-your-first-desktop-app-with-electron-and-svelte-b1624e3edc54 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/sharmio/implementing-role-based-access-control-rbac-in-amazon-elastic-kubernetes-service-eks-for-653db5be6d3e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@inzaniak/stable-diffusion-ultimate-guide-pt-5-controlnet-6f45e9614119 - 2023-10-06 - monthly - 1.0 - - - - https://artificialcorner.com/steal-these-prompts-to-learn-python-quickly-using-chatgpt-766c1ca7745f - 2023-10-06 - monthly - 1.0 - - - - https://amyjuanli.medium.com/use-yaml-front-matter-correctly-in-obsidian-550e4fa46a4a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@inzaniak/stable-diffusion-ultimate-guide-pt-1-setup-bd7dbcd5ce4b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/scrum-and-coke/securing-angular-11-app-with-identityserver4-and-code-flow-pkce-5eddc68666b2 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/mypy-static-type-checking-in-python-in-4-minutes-8a9af666874d - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/how-to-be-a-10x-data-scientist-7597b9782ce1 - 2023-10-06 - monthly - 1.0 - - - - https://sebastiancarlos.com/my-worst-tech-interview-experience-5a7b34f61341 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/top-10-libraries-every-java-developer-should-know-37dd136dff54 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/10-free-websites-so-useful-that-you-should-have-installed-them-on-browser-cd57c031c924 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/the-secret-math-behind-1m-bitcoin-the-m2-money-supply-calculation-no-one-is-talking-about-286a2de2c84c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/matplotlib-styles-for-scientific-plotting-d023f74515b4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/crows-feet/at-68-im-having-the-best-sex-of-my-life-87f6b2dcde3b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/data-science-learning-roadmap-for-2021-84f2ba09a44f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@NovelNestBooks/25-best-nonfiction-books-of-all-time-according-to-nassim-taleb-e543c862962 - 2023-10-06 - monthly - 1.0 - - - - https://soumenatta.medium.com/gaussian-mixture-models-gmm-clustering-in-python-d8d6ca2693f2 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-mathematical-primer-of-compression-5ea1ca53fc45 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/testing-gpt-2-output-detector-on-chatgpt-478dea233010 - 2023-10-06 - monthly - 1.0 - - - - https://michaelsheinman.medium.com/a-review-of-openais-new-ai-detector-7dc4c34f6d14 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@maguireong/4-things-i-remove-from-my-life-to-stay-fit-constantly-ee4253cc1239 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@piotrkarpaa/unit-testing-python-flask-web-api-with-mockupdb-c2cb72600854 - 2023-10-06 - monthly - 1.0 - - - - https://androidgeek.co/getting-started-with-retrofit-beginner-in-depth-guide-3b91f509c0a2 - 2023-10-06 - monthly - 1.0 - - - - https://blog.gopenai.com/how-i-improved-the-gpt2-output-detector-6e47ba133235 - 2023-10-06 - monthly - 1.0 - - - - https://beingpax.medium.com/amie-so-the-joyful-productivity-app-review-b1027cf5252b - 2023-10-06 - monthly - 1.0 - - - - https://androidgeek.co/mastering-constraintlayout-part-1-6a8cf0dfd3d6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/algorithmic-trading-with-bollinger-bands-in-python-1b0a00c9ef99 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@wundergraph/wundergraph-vs-apolloos-which-api-architecture-is-right-for-your-business-5acdc4cfc0a6 - 2023-10-06 - monthly - 1.0 - - - - https://kevinkreuzer.medium.com/how-to-release-npm-libraries-with-nx-461f7671a96f - 2023-10-06 - monthly - 1.0 - - - - https://kevinkreuzer.medium.com/unleashing-automated-continuous-delivery-in-an-nx-monorepo-50e65b3363e0 - 2023-10-06 - monthly - 1.0 - - - - https://interviewnoodle.com/system-design-interview-5-important-non-functional-system-design-characteristics-792932e2c4f3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/gradient-growth/the-in-your-mouth-investment-strategy-turning-daily-consumption-into-long-term-capital-9419b7da8b75 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/beautifully-illustrated-nlp-models-from-rnn-to-transformer-80d69faf2109 - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/list-of-lists-6a9eba4ed778 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/python-animated-images-6a85b9b68f86 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@michaelmarmor/gnu-emacs-101-7332c936b8e5 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/the-ultimate-guide-to-midjourney-v5-1-with-images-prompts-254e89234df5 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/polynomial-regression-in-python-b69ab7df6105 - 2023-10-06 - monthly - 1.0 - - - - https://forge.medium.com/the-incredible-creative-power-of-the-index-card-b799250033c9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@maksymrudnyi/react-slick-how-to-use-react-slick-and-create-a-carousel-with-react-356a797737db - 2023-10-06 - monthly - 1.0 - - - - https://philippstelzel.medium.com/zettelkasten-vs-second-brain-vs-para-7e318874a8cb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@109manojsaini/gcp-github-actions-with-openid-connect-to-authenticate-cd2740dea1f7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/i-tried-the-new-airpods-pro-features-and-i-absolutely-love-it-ca0e02fe3a2d - 2023-10-06 - monthly - 1.0 - - - - https://nickwignall.medium.com/6-habits-of-emotionally-intuitive-people-f56de239aab3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/pythoneers/efficient-scripting-with-python-sharepoint-in-microsoft-office-365-41d30b4b199f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/data-science-the-complete-tutorial-5310bc25d1f4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/i-tried-tana-anytype-and-notion-then-bought-an-obsidian-catalyst-licence-heres-why-a337bf2ecf2b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/7-useful-java-libraries-you-should-use-in-your-next-project-5e599c2e0f6 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-deal-with-imbalanced-classification-without-re-balancing-the-data-8a3c02353fe3 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/handling-socketio-rooms-with-react-hooks-4723dd44692e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/10-python-mini-projects-that-everyone-should-build-with-code-769c6f1af0c4 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-easily-get-football-data-with-a-python-package-without-web-scraping-c922e7ebfb41 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/langchain-is-the-past-here-is-the-future-of-llm-based-apps-46663f532c19 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/why-taking-notes-secretly-steal-your-time-becoming-a-developer-faster-d96c13093f80 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/slog-the-future-face-of-go-logging-d82ee9073a04 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/20-must-have-vscode-extensions-for-web-development-in-2023-7bf1995c5ce5 - 2023-10-06 - monthly - 1.0 - - - - https://jak292.medium.com/is-your-posture-stressing-you-out-e136f9243825 - 2023-10-06 - monthly - 1.0 - - - - https://fatfish.medium.com/5-javascript-utility-libraries-to-improve-your-efficiency-218b8c825609 - 2023-10-06 - monthly - 1.0 - - - - https://dataman-ai.medium.com/transfer-learning-for-image-classification-4-understand-vgg-16-layer-by-layer-8a17ab6da498 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/30-new-sneaky-ios-17-features-that-are-small-but-make-a-huge-impact-afa25d1e72f8 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/stock-market-action-prediction-with-convnet-8689238feae3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/which-is-better-for-your-machine-learning-task-opencv-or-tensorflow-ed16403c5799 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/5-of-my-best-data-science-portfolio-projects-8cd7f81f1b1 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/how-to-bundle-your-library-for-both-nodejs-and-browser-with-webpack-3584ec8197eb - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/mixture-of-softmaxes-for-deep-session-based-recommender-systems-aea5727e213d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-complete-tutorial-on-off-policy-evaluation-for-recommender-systems-e92085018afe - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/difference-between-publish-subscribe-and-request-response-model-d0aa9f51cf3d - 2023-10-06 - monthly - 1.0 - - - - https://tng-daryl.medium.com/creating-your-own-buy-sell-signals-coding-up-visualising-macd-indicators-239036c57f29 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/management-matters/what-i-learned-from-leading-3-departments-23-direct-reports-within-40-hours-per-week-3-lessons-415f1287673f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/building-a-multi-stage-recommendation-system-part-2-1-b9cbece3f91b - 2023-10-06 - monthly - 1.0 - - - - https://lakshmanok.medium.com/books-that-help-you-become-an-ml-engineer-1dd6b20edac - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/building-a-multi-stage-recommendation-system-part-1-1-95961ccf3dd8 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/use-docker-with-nodejs-projects-like-a-pro-a9e7504e1308 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@mariana.carvalho/ama-ask-me-anything-about-grace-hopper-celebration-2023-87f9fb5ae0c9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-deep-learning-hub/pytorch-2-0-or-tensorflow-2-10-which-one-is-better-52669cec994 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/typescript-5-0-released-a-quick-overview-3d6bfdf74135 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/modern-women/7-underrated-job-search-websites-for-women-in-technology-54d61de746fc - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/i-analyzed-hundreds-of-users-tinder-data-including-messages-so-you-dont-have-to-14c6dc4a5fdd - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/advanced-use-cases-for-recommendation-engines-4a420b14ab4e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mystic-minds/the-shamanic-journey-a-healing-mirror-to-the-highs-and-lows-of-bipolar-disorder-4b24c778202f - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-to-use-chatgpt-to-query-your-databases-for-insights-e3bca67097e3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/the-streaming-bridges-a-kafka-rabbitmq-mqtt-and-coap-example-9077a598169 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/dataseries/multidimensional-scaling-for-dissimilarity-visualization-9fb061396cf3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@benjamin.botto/sequentially-indexing-permutations-a-linear-algorithm-for-computing-lexicographic-rank-a22220ffd6e3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/light-on-math-ml-intuitive-guide-to-understanding-glove-embeddings-b13b4f19c010 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/aiguys/knowledge-distillation-in-neural-networks-37f416ede203 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/deep-learning-for-nlp-transformers-explained-caa7b43c822e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/transformer-models-for-custom-text-classification-through-fine-tuning-3b065cc08da1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/nlplanet/awesome-nlp-21-popular-nlp-libraries-of-2022-2e07a914248b - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/how-to-write-a-user-research-plan-ee4fbd27dd4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/understanding-mathematics-behind-normal-equation-in-linear-regression-aa20dc5a0961 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-gentle-introduction-to-generative-ai-for-beginners-8c8752085900 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/weighted-boxes-fusion-86fad2c6be16 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/the-ups-and-downs-of-rails-magic-5a88c7f68064 - 2023-10-06 - monthly - 1.0 - - - - https://blog.coffeeapplied.com/securing-aks-in-peered-virtual-networks-using-only-network-security-groups-nsgs-c43d6a215f32 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/clustering-evaluation-strategies-98a4006fcfc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/s/story/essential-math-for-data-science-why-and-how-e88271367fbd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/accessing-and-analyzing-crash-reports-in-ios-be36217f22c1 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-prepare-for-your-data-engineering-interview-d245519da45c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/co-learning-lounge/what-is-etl-concepts-tools-pipeline-architecture-elt-d6b146bba03d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/all-you-need-to-know-about-vector-databases-and-how-to-use-them-to-augment-your-llm-apps-596f39adfedb - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/the-ultimate-cheat-sheet-to-midjourney-prompting-artist-styles-b67931488448 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/syncedreview/google-replaces-bert-self-attention-with-fourier-transform-92-accuracy-7-times-faster-on-gpus-7a78e3e4ac0e - 2023-10-06 - monthly - 1.0 - - - - https://thebolditalic.com/i-left-san-francisco-to-quit-drinking-441717e8f8bc - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/paper-explained-high-resolution-image-synthesis-with-latent-diffusion-models-f372f7636d42 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/i-built-a-music-sheet-transcriber-heres-how-74708fe7c04c - 2023-10-06 - monthly - 1.0 - - - - https://tech.gadventures.com/taming-memory-leaks-in-asyncio-ae49ac0e0809 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-right-way-to-use-deep-learning-for-tabular-data-entity-embedding-b5c4aaf1423a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/why-and-how-to-use-dask-with-big-data-746e34dac7c3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@louis.young0420/vue-formulate-vs-veevalidate-vs-vuelidate-pros-and-cons-5279ad3d7173 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/what-makes-you-a-senior-data-scientist-79cdcabea38f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-carbon-footprint-of-gpt-4-d6c676eb21ae - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-side-hustle-club/how-chatgpt-became-my-ultimate-side-hustle-for-2023-2c13aa72bdfb - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/prompt-engineering-101-zero-one-and-few-shot-prompting-1e8ced03d434 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/qubit-magic-creating-mythical-creatures-with-quantum-computing-49bea0fabf4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@karray/multi-language-speech-recognition-and-speaker-diarisation-cd8fb627836c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/understanding-the-roc-curve-and-auc-dd4f9a192ecb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/feedium/50-super-popular-medium-writers-with-over-10-000-followers-fe098197cbdf - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/obsidian-template-organise-your-life-with-a-simple-paperless-planner-e49101976d92 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/manage-secrets-in-your-ios-app-using-xcode-configuration-files-fbceb6e97f47 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/build-backend-apps-at-super-speed-with-python-fastapi-f937f2a3643 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/12-personal-go-tricks-that-transformed-my-productivity-b32bc4cb4318 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/prediction-and-analysis-of-time-series-data-using-tensorflow-2136ef633018 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ninucium/golang-concurrency-patterns-for-select-done-errgroup-and-worker-pool-645bec0bd3c9 - 2023-10-06 - monthly - 1.0 - - - - https://akhileshmj.medium.com/solid-principles-go-design-pattern-6af77d665b8e - 2023-10-06 - monthly - 1.0 - - - - https://dsysd-dev.medium.com/building-complex-objects-in-go-a-guide-to-the-builder-pattern-1a64bc0eb3ee - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@PouriaAsnaAshari/introduction-to-observability-using-opentelemetry-in-golang-726b4c364b3c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/better-entrepreneur/five-short-mantras-you-can-say-each-day-to-become-a-more-resilient-person-be5f54a4c18b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/better-advice/how-to-turn-your-suffering-into-the-best-thing-that-happened-to-you-1e512faa9bd6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/google-cloud/dns-on-gke-everything-you-need-to-know-b961303f9153 - 2023-10-06 - monthly - 1.0 - - - - https://fredgrott.medium.com/why-and-how-flutter-is-a-reactive-framework-62027d809514 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@chiqing/eip-1186-explained-the-standard-for-getting-account-proof-444bc1e12e03 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@chiqing/verify-ethereum-account-balance-with-state-proof-83b51ceb15cf - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/how-to-eliminate-your-fears-and-get-the-courage-to-make-a-big-leap-56ff1025ff9d - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/you-must-stop-coding-your-own-authentication-4052f6192ec6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@anthonydmays/your-tech-resume-is-garbage-heres-how-to-fix-it-7e292e768bf4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/curious/five-illusions-i-had-to-dispel-that-helped-me-worry-less-and-experience-more-freedom-bcb380c2fcdc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/k8s-troubleshooting-how-to-debug-coredns-issues-724e8b973cfc - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/advanced-python-topics-metaclasses-vs-inheritance-a39154ebb6f2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@chiqing/merkle-patricia-trie-explained-ae3ac6a7e123 - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/13-fun-python-scripts-27a9e7ff36db - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/error-handling-in-clean-architecture-using-flow-and-jetpack-compose-b39c729a68eb - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/illustrated-self-attention-2d627e33b20a - 2023-10-06 - monthly - 1.0 - - - - https://nivaaz.medium.com/how-to-draw-the-genz-star-in-figma-c3304b7daa11 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/why-kafka-is-so-fast-bde0d987cd03 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/practice-in-public/crush-your-day-with-this-powerful-system-for-organising-your-tasks-2c9ab3419770 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/a-one-person-business-is-the-easiest-way-to-retire-in-the-next-5-years-622590e861a7 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/bayesian-lstm-on-pytorch-with-blitz-a-pytorch-bayesian-deep-learning-library-5e1fec432ad3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/runners-life/from-runner-to-triathlete-112b52280d58 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/data-science-365/principal-component-analysis-pca-with-scikit-learn-1e84a0c731b0 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/5-typescript-libraries-to-improve-your-codebase-d26f74a5c3 - 2023-10-06 - monthly - 1.0 - - - - https://infosecwriteups.com/how-to-bypass-xss-filters-a-practical-example-3189877fe2ce - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/how-to-deploy-a-react-application-to-render-611ef3aca84a - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/yellowbrick-for-feature-engineering-visualization-d89e391f90e9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/hackernoon/writing-an-keylogger-for-macos-in-python-24adfa22722 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/having-an-imbalanced-dataset-here-is-how-you-can-solve-it-1640568947eb - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/python-markowitz-optimization-b5e1623060f5 - 2023-10-06 - monthly - 1.0 - - - - https://s-a-ozbourne.medium.com/the-serial-killer-who-never-killed-anyone-48be36d3c395 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/workflow-for-reportable-reusable-and-reproducible-computational-research-45d036c8a908 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/tech-pulse/every-resource-i-used-to-get-500k-software-engineering-offers-bae44a0097c7 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/chatgpt-advanced-data-analytics-for-custom-matplotlib-well-log-plots-b857c68fa42 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@FabioAEsteves/i-have-nothing-to-hide-why-should-i-care-about-my-privacy-f488281b8f1d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/data-driven-marketing-attribution-1a28d2e613a0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/defense-in-depth-d6c070eac12d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/extracting-text-from-scanned-pdf-using-pytesseract-open-cv-cd670ee38052 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/organize-code-with-python-functions-dca315485126 - 2023-10-06 - monthly - 1.0 - - - - https://k3no.medium.com/organizing-your-python-code-ca5445843368 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/into-to-markov-chain-multi-touch-attribution-bb1968ff1f54 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/comparing-different-classification-machine-learning-models-for-an-imbalanced-dataset-fdae1af3677f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/pcmag-access/how-i-used-lies-about-a-cartoon-to-prove-history-is-meaningless-on-the-internet-6c88bcbc62d7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/apache-airflow-vs-apache-nifi-a-comprehensive-comparison-b7f55d5998f4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ansam.yousry/apache-flink-from-zero-beginners-guide-3f5c6b6b780e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/deploying-the-best-model-in-a-few-minutes-with-bentoml-and-mlflow-dd28befd5caa - 2023-10-06 - monthly - 1.0 - - - - https://melihyumak.medium.com/fastify-getting-started-with-fastify-exploring-the-basics-with-code-examples-13fc5d931ab8 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/using-react-to-build-interactive-interfaces-to-exciting-dataset-c01691a5fc38 - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/a-comprehensive-guide-to-structuring-a-fastapi-project-for-reproducibility-and-maintainability-1705c41dac41 - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/unlocking-djangos-full-potential-insights-from-a-year-at-google-51ad1fd25d63 - 2023-10-06 - monthly - 1.0 - - - - https://blog.cryptostars.is/web3-quest-creation-platforms-a-guide-for-marketers-and-founders-bdd79080c95b - 2023-10-06 - monthly - 1.0 - - - - https://aallan.medium.com/setting-up-a-headless-raspberry-pi-zero-3ded0b83f274 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-chat-with-any-file-from-pdfs-to-images-using-large-language-models-with-code-4bcfd7e440bc - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/outlier-detection-with-k-means-clustering-in-python-ee3ac1826fb0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@17.rsuraj/microsoft-outlook-move-emails-from-certain-domain-to-specific-folder-automatically-88e498c6d513 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/intuitionmath/text-to-sql-learning-to-query-tables-with-natural-language-7d714e60a70d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@markdery/i-is-an-other-the-self-is-a-gothic-fiction-ebb228fdf7e3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@markdery/the-thing-in-the-mirror-2ac4ad55317 - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/building-a-real-time-chat-application-with-django-channels-and-react-ee2d8fee7328 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@miketoneyhoffman/volatility-contraction-pattern-vcp-dd1280bc1f26 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/what-is-big-o-notation-and-why-you-should-care-5638895a1693 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-code-the-value-iteration-algorithm-for-reinforcement-learning-8fb806e117d1 - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/how-to-solve-problems-with-first-principles-thinking-in-3-steps-732dd0ab967 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@crskilpatrick807/my-quest-to-conquer-every-chatgpt-plugin-game-the-top-5-you-must-try-f3912eb018ab - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@edin.sahbaz/exploring-the-evolution-of-backend-software-architecture-n-layered-ddd-hexagon-onion-and-9edc833521bc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@codemaclife/five-apps-i-use-every-day-to-organise-my-life-2023-edition-3b3fee79feaa - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/how-to-set-up-pi-hole-2293246dc8ed - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/fine-tuning-gpt-3-5-turbo-lets-learn-how-to-do-it-accd0e785fa2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/whats-on-my-mac-5-apps-i-couldn-t-live-without-3471c5b67e2b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/ive-switched-to-do-apps-and-it-s-the-best-thing-i-ve-done-74d11e9086f5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/artificialis/multi-task-deep-learning-with-pytorch-8bf0787ce0e0 - 2023-10-06 - monthly - 1.0 - - - - https://jael999.medium.com/i-cant-tell-the-psychiatrist-the-one-sure-sign-that-i-have-adhd-7dd64a6440f0 - 2023-10-06 - monthly - 1.0 - - - - https://nadirait.medium.com/bye-todoist-its-not-me-it-s-you-b49ecb000497 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/buying-a-ps2-in-2022-8225835b8222 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/handle-missing-values-in-categorical-features-b7c5b073dda2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/obsidian-plugins-review-24-4a7576b2db84 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@data.dev.backyard/ultimate-machine-learning-and-deep-learning-cheat-sheet-part-1-dcfa0c4ff981 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/apple-pay-is-magic-6bc085c19f5 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/4-tricks-and-tips-about-closure-in-javascript-you-should-know-a7fe6aeaa767 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/ai-salon/understanding-dice-loss-for-crisp-boundary-detection-bb30c2e5f62b - 2023-10-06 - monthly - 1.0 - - - - https://salithachathuranga94.medium.com/spring-boot-actuator-6f79f93fa1b2 - 2023-10-06 - monthly - 1.0 - - - - https://fatfish.medium.com/6-cool-modern-javascript-features-most-developers-dont-know-about-7ccaba067996 - 2023-10-06 - monthly - 1.0 - - - - https://fatfish.medium.com/as-a-front-end-engineer-8-useful-npm-coding-techniques-that-you-should-use-5411d97281fd - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/6-reasons-to-quit-porn-for-good-3ea0c19dc1b3 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/interviewer-what-happened-to-npm-run-xxx-cdcb37dbaf44 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/new-chatgpt-prompt-engineering-technique-program-simulation-56f49746aa7b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@nmjoshi/getting-started-websocket-with-fastapi-b41d244a2799 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/the-missing-link-10793359ef93 - 2023-10-06 - monthly - 1.0 - - - - https://fatfish.medium.com/interviewer-can-sessionstorage-share-data-between-multiple-tabs-c30983c61501 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/underrated-machine-learning-algorithms-apriori-1b1d7a8b7bc - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/introduction-to-bayesian-networks-81031eeed94e - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/i-lost-a-job-opportunity-just-because-of-promise-all-be396f6efe87 - 2023-10-06 - monthly - 1.0 - - - - https://fatfish.medium.com/7-es6-spread-operator-tricks-every-developer-should-know-5d947e711c04 - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/midjourney-the-ultimate-guide-to-punctuation-f8a03818ee26 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/pythoneers/z-distribution-or-z-score-application-in-machine-learning-fbba081cd9fe - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/nerf-neural-radiance-fields-79531da37734 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/8-cool-github-tricks-to-make-you-look-like-a-senior-developer-ab8fe9ae9b14 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@whytryai/how-to-swap-your-face-into-midjourney-images-e272e64d22c3 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/one-user-testing-question-can-help-uncover-the-gap-between-conceptual-and-mental-models-867550e9cc82 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/its-2022-don-t-just-use-react-anymore-33659ed663c9 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/why-deep-learning-is-needed-over-traditional-machine-learning-1b6a99177063 - 2023-10-06 - monthly - 1.0 - - - - https://blog.stackademic.com/interviewer-you-have-been-working-for-3-years-and-you-cant-answer-this-algorithm-question-d80b4c4a1daf - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/7-evaluation-metrics-for-clustering-algorithms-bdc537ff54d2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/momento-serverless/api-keys-vs-tokens-whats-the-difference-b3358b664ea6 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/10-killer-animated-websites-for-web-developers-ab212c94064b - 2023-10-06 - monthly - 1.0 - - - - https://blog.stackademic.com/15-regular-expression-tricks-tips-every-developer-should-know-1738d797db56 - 2023-10-06 - monthly - 1.0 - - - - https://blog.stackademic.com/10-popular-front-end-interview-questions-e89c96c2c787 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/my-obsidian-setup-part-12-quick-capture-from-mobile-a414069a5733 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/my-obsidian-setup-part-13-inbox-folder-quick-note-capture-workflow-5ae03407e832 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/my-obsidian-setup-part-15-mind-mapping-235af1bae62 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-easily-and-confidently-implement-unit-tests-in-python-cad48d91ab74 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/my-obsidian-setup-part-16-charts-bc6296d3a27a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/region-proposal-network-rpn-roi-pooling-from-image-classification-to-object-detection-35f98bee0ddd - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/ant-colony-optimization-in-action-6d9106de60af - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/single-stage-instance-segmentation-a-review-1eeb66e0cc49 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/fine-tuning-gpt-3-5-rag-pipeline-with-gpt-4-training-data-49ac0c099919 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/llamaindex-blog/fine-tuning-embeddings-for-rag-with-synthetic-data-e534409a3971 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/devops-with-valentine/how-to-use-the-gitlab-rest-api-ba4e4ca1fcae - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-financial-journal/easily-making-the-vix-for-any-stock-3cefac69946b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@satishkorapati/dealing-with-imbalanced-dataset-for-multi-class-text-classification-having-multiple-categorical-2a43fc8de009 - 2023-10-06 - monthly - 1.0 - - - - https://writingcooperative.com/5-things-fanfiction-taught-me-and-the-1-thing-it-didnt-3600277e0d80 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@pkmbeth/creating-my-own-wikipedia-with-capacities-fdd6109caa6e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/dataherald/fine-tuning-gpt-3-5-turbo-for-natural-language-to-sql-4445c1d37f7c - 2023-10-06 - monthly - 1.0 - - - - https://beingpax.medium.com/save-yourself-hours-of-time-while-using-obsidian-ac00c05e3a81 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/llamaindex-blog/llamaindex-vectara-7a3889cd34cb - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-new-way-to-predict-probability-distributions-e7258349f464 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/llamaindex-blog/llamaindex-update-09-03-2023-4a7c21c0f60b - 2023-10-06 - monthly - 1.0 - - - - https://blog.expo.dev/rfc-api-routes-cce5a3b9f25d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@gabrielpierobon/understanding-entropy-made-me-a-better-data-scientist-3196a3ff6ab4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/llamaindex-blog/llamaindex-automatic-knowledge-transfer-kt-generation-for-code-bases-f3d91f21b7af - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/creating-a-web-app-has-never-been-simple-as-today-by-using-langchain-and-streamlit-1fc6597e3ff1 - 2023-10-06 - monthly - 1.0 - - - - https://krishankantsinghal.medium.com/my-first-blog-on-medium-583159139237 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/a-template-for-importing-zotero-articles-into-obsidian-updated-9c76658bbefc - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-connect-to-jupyterlab-remotely-9180b57c45bb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/maximize-productivity-with-obsidian-open-gate-plugin-embed-websites-directly-in-your-notes-5982d4a88ae6 - 2023-10-06 - monthly - 1.0 - - - - https://experiencestack.co/11-sql-query-optimization-techniques-commonly-used-in-projects-ed45c31c45cd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/how-to-use-zotero-with-obsidian-for-the-best-note-taking-experience-7e35d21727cf - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/how-these-7-chatgpt-extensions-can-revolutionize-your-daily-routine-83169740cb85 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/obsidian-revisited-3abf53b90f6 - 2023-10-06 - monthly - 1.0 - - - - https://drhpod.medium.com/the-circleville-letters-2475478ffa8c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/inside-the-circleville-letters-the-shocking-true-story-of-a-small-towns-secret-44cb995ad6b2 - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/meet-i-jepa-meta-ais-first-super-model-based-on-their-theory-of-autonomous-intelligence-4d485abf395c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/reverse-engineering-and-modifying-an-android-game-apk-ctf-c617151b874c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/clustering-using-convex-hulls-fddafeaa963c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/do-not-use-python-pickle-unless-you-know-all-these-facts-d9e8695b7d43 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/tips-and-tricks-for-working-with-strings-in-polars-ec6bb74aeec2 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/mastering-query-plans-in-spark-3-0-f4c334663aa4 - 2023-10-06 - monthly - 1.0 - - - - https://bettermarketing.pub/how-to-get-your-youtube-videos-to-appear-in-google-search-9b32bb350247 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/getting-started-with-the-polars-dataframe-library-6f9e1c014c5c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/extract-email-attachment-using-aws-624614a2429b - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/extract-tables-from-pdfs-with-python-in-a-snap-64320b010c5e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/everything-you-need-to-know-about-neural-networks-and-backpropagation-machine-learning-made-easy-e5285bc2be3a - 2023-10-06 - monthly - 1.0 - - - - https://proandroiddev.com/deep-dive-into-derivedstateof-and-comparison-with-remember-key-d8469602676 - 2023-10-06 - monthly - 1.0 - - - - https://malcomvetter.medium.com/jiu-jitsu-vs-infosec-privileged-access-5aa303a0465c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@nkchandupatla/3-simple-steps-to-export-your-outlook-emails-to-s3-bucket-using-python-ec26c03ed711 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@rayane.kurrimboccus/common-problems-when-modularizing-an-ios-application-92976f94462e - 2023-10-06 - monthly - 1.0 - - - - https://entrepreneurshandbook.co/the-quiet-way-to-start-a-one-person-business-4b355de58620 - 2023-10-06 - monthly - 1.0 - - - - https://don-016.medium.com/debugging-sql-server-cdc-for-debezium-c7966ad9625b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/implementing-the-xor-gate-using-backpropagation-in-neural-networks-c1f255b4f20d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/how-to-create-bridges-between-frameworks-in-an-ios-app-23e1981c4988 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/modularize-an-ios-application-919b30e41e3c - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-swift-packages-changed-the-way-i-build-appsintroduction-fb4ade0f1cec - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@key2market/automating-data-upload-into-amazon-s3-bucket-701697bb78bb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/what-programming-languages-are-used-at-apple-a36261c715da - 2023-10-06 - monthly - 1.0 - - - - https://wkrzywiec.medium.com/how-to-deploy-application-on-kubernetes-with-helm-39f545ad33b8 - 2023-10-06 - monthly - 1.0 - - - - https://proandroiddev.com/jetpack-compose-making-composable-lifecycle-aware-bde67437d2d0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@gyahoo617/how-to-set-the-timezone-on-docker-compose-mysql-81faf425ded4 - 2023-10-06 - monthly - 1.0 - - - - https://stevenpcurtis.medium.com/stop-using-dependency-injection-for-your-ios-project-3b0bc6a46697 - 2023-10-06 - monthly - 1.0 - - - - https://stevenpcurtis.medium.com/learning-dependency-injection-using-swift-c94183742187 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/em-algorithm-aaaa181af127 - 2023-10-06 - monthly - 1.0 - - - - https://michael-kiley.medium.com/treat-warnings-as-errors-in-a-swift-package-e4429609ec2d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/do-you-know-about-the-different-microservices-frameworks-for-java-90b61f8cdbd7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/python-in-power-bi-66a80590ecc0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/artfullyautistic/why-every-person-with-adhd-needs-an-autistic-friend-a2aff61e3b55 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/heres-how-to-use-cupy-to-make-numpy-700x-faster-4b920dda1f56 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@paweluniak/cuda-neural-network-implementation-part-1-166b67b568c5 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/essential-guide-to-multi-class-and-multi-output-algorithms-in-python-3041fea55214 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@rlohne/why-i-switched-to-visual-studio-code-from-rstudio-9aba8b661774 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/docker-environment-variables-appsettings-json-net-bdac052bf3db - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-to-use-coil-kotlins-native-image-loader-d6715dda7d26 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/ai-innovation/beginners-guide-to-retrain-gpt-2-117m-to-generate-custom-text-content-8bb5363d8b7f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@_monitsharma/quantum-computing-in-finance-option-pricing-using-a-quantum-algorithm-a8dc78e2286d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@samuilovas/7-awesome-tools-for-net-developers-9154847160e1 - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/how-quantum-machine-learning-can-boost-drug-discovery-3ce51be223d2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/google-cloud/generative-ai-document-retrieval-and-question-answering-with-llms-2b0fb80ae76d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/building-a-complete-ocr-engine-from-scratch-in-python-be1fd184753b - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/risc-v-instruction-set-cheatsheet-70961b4bbe8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/detecting-text-lines-in-a-document-image-using-deep-learning-5a21b480bc4c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/unsupervised-sentiment-analysis-a38bf1906483 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/deep-dive-into-netflixs-recommender-system-341806ae3b48 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/extending-ios-apps-with-plug-ins-e4119d064f2d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/prefect-aws-ecs-fargate-github-actions-make-serverless-dataflows-as-easy-as-py-f6025335effc - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/an-opinion-on-brain-inspired-artificial-intelligence-ed5dbde59d5b - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/link-previews-more-than-meets-the-eye-aa13c77c6d69 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/custom-dns-configuration-aks-kubernetes-360e481afc1 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-quick-guide-on-normalization-for-your-nlp-model-2dbd7d2d42a7 - 2023-10-06 - monthly - 1.0 - - - - https://johndanielraines.medium.com/be-an-engineer-not-a-frameworker-c58fe28d0c88 - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/5-reasons-to-not-start-a-ux-designer-career-in-2022-2023-5c04d2d527b3 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/im-a-designer-at-linkedin-here-are-4-tips-to-attract-recruiters-with-your-linkedin-profile-91c080b6740b - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/neovim-pde-for-data-science-e1cc4c82a424 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bb-tutorials-and-thoughts/how-to-build-nodejs-rest-api-with-express-and-postgresql-674d96d5cb8f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/manipulating-values-in-polars-dataframes-1087d88dd436 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/eda-with-polars-step-by-step-guide-for-pandas-users-part-1-b2ec500a1008 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/principal-component-analysis-pca-from-scratch-in-python-7f3e2a540c51 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/lime-vs-shap-which-is-better-for-explaining-machine-learning-models-d68d8290bb16 - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/the-most-powerful-morning-routine-ive-found-after-3-years-of-experimenting-5ce320dda731 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-apply-transformers-to-any-length-of-text-a5601410af7f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mobile-app-development-publication/android-jetpack-compose-remember-made-easy-8bd86a48536c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/seo-in-angular-without-server-side-rendering-fa7d984dd44b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/use-python-to-compare-two-distributions-e29044b44d13 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/fine-tuning-gpt2-on-colab-gpu-for-free-340468c92ed - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-i-leetcode-for-6-months-and-land-a-job-at-amazon-b76bdfc79abb - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/typescript-trick-retrieving-all-keys-of-an-object-c346dacf5369 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/eigenvalues-and-eigenvectors-378e851bf372 - 2023-10-06 - monthly - 1.0 - - - - https://usmanshahid.medium.com/levels-of-access-control-through-keycloak-part-2-authentication-flows-8ac3591984 - 2023-10-06 - monthly - 1.0 - - - - https://marker.medium.com/what-really-happens-when-you-become-an-overnight-millionaire-acac42990175 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/theory-of-principal-component-analysis-pca-and-implementation-on-python-5d4839f9ae89 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/dlt-labs-publication/how-to-set-up-an-ssl-tls-enabled-rabbitmq-server-3e4e47315e8b - 2023-10-06 - monthly - 1.0 - - - - https://faun.pub/organize-terragrunt-configuration-for-production-grade-environment-and-deploy-with-github-actions-c7d0a34e5c80 - 2023-10-06 - monthly - 1.0 - - - - https://sebastianscotti.medium.com/understanding-google-container-registry-in-gke-312eae6f6ce7 - 2023-10-06 - monthly - 1.0 - - - - https://ryanholiday.medium.com/these-38-reading-rules-changed-my-life-cddd493a0e62 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/generate-random-avatars-in-react-8d4ac3072b93 - 2023-10-06 - monthly - 1.0 - - - - https://erikshimoda.medium.com/oauth-2-0-em-portugu%C3%AAs-claro-parte-i-23c5618a4601 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-financial-journal/i-almost-got-rich-from-a-sports-betting-algorithm-b3e2bf2b3780 - 2023-10-06 - monthly - 1.0 - - - - https://canadiandataguy.medium.com/simplifying-real-time-data-processing-with-spark-streamings-foreachbatch-6bb14b426e74 - 2023-10-06 - monthly - 1.0 - - - - https://erikshimoda.medium.com/oauth-2-0-em-portugu%C3%AAs-claro-parte-ii-e8e0d8dba994 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@SovereignCrypto/30-50x-altcoin-portfolio-3f111dc808e0 - 2023-10-06 - monthly - 1.0 - - - - https://erikshimoda.medium.com/oauth-2-0-em-portugu%C3%AAs-claro-parte-iii-669a07807f9a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/family-matters-2/when-tough-love-is-garbage-b22a44756cd2 - 2023-10-06 - monthly - 1.0 - - - - https://anthonyfieldman.medium.com/e-misery-f9ddd21ded12 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coinmonks/exploring-the-top-10-ai-cryptocurrencies-for-investment-in-2023-99bd2920dd9c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/how-to-find-your-best-selling-online-course-idea-in-under-30-minutes-81a88aa41b42 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/core-services-teams-are-still-a-bad-idea-258aac9b96b4 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/scrape-data-from-pdf-files-using-python-fe2dc96b1e68 - 2023-10-06 - monthly - 1.0 - - - - https://blog.prototypr.io/stop-asking-what-problem-are-we-trying-to-solve-588dde745b65 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/web3-and-web-3-0-are-different-and-its-dumb-52e550c3d23f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/r-studio-server-on-google-cloud-dd69b8bff80b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-matrix-algebra-of-linear-regression-6fb433f522d5 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/the-easy-react-supabase-authentication-and-session-storage-dedeb4abe45e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/moments-of-passion/women-dont-need-men-and-it-s-breaking-the-manosphere-25b88ef89fc0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/platform-engineer/port-forwarding-for-ssh-http-on-virtualbox-459277a888be - 2023-10-06 - monthly - 1.0 - - - - https://onezero.medium.com/facebook-is-putting-us-all-on-the-map-whether-we-like-it-or-not-c3f178a8b430 - 2023-10-06 - monthly - 1.0 - - - - https://generativeai.pub/how-to-generate-a-summary-of-a-youtube-video-using-gpt-4-165fb455558e - 2023-10-06 - monthly - 1.0 - - - - https://forge.medium.com/how-a-color-coded-calendar-helps-you-conquer-your-day-easy-tips-ea07177bb03 - 2023-10-06 - monthly - 1.0 - - - - https://nicolejaneway.medium.com/13-books-to-master-data-analytics-a1f5ceb59480 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/adding-easy-google-authentication-with-supabase-in-react-apps-68c099a0dcf7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/parquet-timestamp-and-athena-query-85dba6ccc9c - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/graphql-nodejs-mongodb-made-easy-with-nestjs-and-mongoose-29f9c0ea7e1d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/dont-follow-your-passion-focus-on-career-capital-instead-2b1fc93fa982 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coding-interview-preparation/coding-a-dp-problem-on-balanced-parenthesis-c72832bb4c31 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/humans-with-adhd/three-things-i-learned-in-two-months-of-taking-adhd-meds-422b85b341cb - 2023-10-06 - monthly - 1.0 - - - - https://c-nemri.medium.com/your-2022-data-engineering-roadmap-3bfe6691ec50 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/what-are-the-key-skills-a-great-ux-designer-needs-a1ae20685396 - 2023-10-06 - monthly - 1.0 - - - - https://kaabar-sofien.medium.com/market-regime-detection-with-moving-averages-aa35c1ef54b0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coders-mojo/complete-system-design-series-part-1-45bf9c8654bc - 2023-10-06 - monthly - 1.0 - - - - https://kaabar-sofien.medium.com/detecting-market-regime-with-the-momentum-ratio-technique-99cdd097446 - 2023-10-06 - monthly - 1.0 - - - - https://stymied.medium.com/lightweight-markup-asciidoc-restructuredtext-and-markdown-compared-d5a33fedcac9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/mindfulness-is-not-about-accepting-yourself-exactly-as-you-are-1484dbd72cd7 - 2023-10-06 - monthly - 1.0 - - - - https://econsystemsthinking.medium.com/systems-thinking-through-the-volcker-shock-828a68ead1b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/introduction-to-marketing-mix-modeling-in-python-d0dd81f4e794 - 2023-10-06 - monthly - 1.0 - - - - https://omarzahran.medium.com/forgotten-function-the-decline-of-the-metal-phone-2859a01b1500 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/an-upgraded-marketing-mix-modeling-in-python-5ebb3bddc1b6 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/parametric-vs-nonparametric-machine-learning-algorithms-5bf31393d944 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@pkmbeth/the-digital-tools-that-run-my-life-2023-581cca9bdb35 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tsecretdeveloper/5-clues-that-youre-in-a-toxic-software-dev-company-fa678ba1750 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/permanent-nerd-network/aint-that-just-the-way-why-over-the-garden-wall-should-be-your-autumnal-tradition-ff326606235b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/14-new-macos-sonoma-features-that-reimagine-how-you-use-your-mac-ca0f6f017b27 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/how-to-use-token-based-authentication-in-react-native-c5739b9d5e45 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/5-anomaly-detection-algorithms-every-data-scientist-should-know-b36c3605ea16 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/everything-you-need-to-know-about-the-passport-local-passport-js-strategy-633bbab6195 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@anyengineer/how-much-i-made-as-a-really-good-engineer-at-facebook-9366151b52db - 2023-10-06 - monthly - 1.0 - - - - https://jorgepit-14189.medium.com/caesar-cipher-in-python-cc339686725b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/vacatronics/caesar-cipher-in-python-98d06e98989d - 2023-10-06 - monthly - 1.0 - - - - https://cryptozoa.com/this-is-how-fast-my-1-000-investment-is-appreciating-and-accelerating-408aad8dbcb4 - 2023-10-06 - monthly - 1.0 - - - - https://renukagavrani.medium.com/how-i-cured-my-mobile-addiction-started-learning-a-new-skill-every-month-bc513497c91c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/ultimate-pandas-guide-time-series-window-functions-a5362b782f3e - 2023-10-06 - monthly - 1.0 - - - - https://renukagavrani.medium.com/progress-makes-us-happy-how-you-can-achieve-everything-you-dream-of-7d923606abf2 - 2023-10-06 - monthly - 1.0 - - - - https://renukagavrani.medium.com/daily-small-habits-i-do-to-make-myself-happy-in-an-environment-that-makes-me-sad-75ef35a52108 - 2023-10-06 - monthly - 1.0 - - - - https://renukagavrani.medium.com/a-peaceful-evening-from-the-eyes-of-a-writer-who-likes-to-romanticize-life-the-world-who-wouldnt-2a333b2f0a8b - 2023-10-06 - monthly - 1.0 - - - - https://hkdb.medium.com/office365-via-oauth2-with-geary-1c0a1429226e - 2023-10-06 - monthly - 1.0 - - - - https://renukagavrani.medium.com/3-things-i-gifted-myself-this-birthday-to-make-my-life-even-more-beautiful-adult-style-to-7a92d3e1ecc7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@andkemal/kotlin-coroutine-exception-handling-f0ca0da287d9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@andkemal/jetpack-compose-with-viewmodel-and-flow-a-comprehensive-guide-ce3b079a44d1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@andkemal/sealed-classes-in-kotlin-from-basics-to-advanced-usage-356d1b63848c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/illustrated-guide-to-recurrent-neural-networks-79e5eb8049c9 - 2023-10-06 - monthly - 1.0 - - - - https://build.affinity.co/how-we-used-postgres-extended-statistics-to-achieve-a-3000x-speedup-ea93d3dcdc61 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@lilalollie/are-parents-of-a-gifted-child-always-gifted-themselves-3ed9209b006 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-easiest-way-to-upsert-with-sqlalchemy-9dae87a75c35 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/understanding-synthetic-control-methods-dd9a291885a1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@vonnylang/i-went-inside-the-orgy-dome-at-burning-man-61ed7a3ce964 - 2023-10-06 - monthly - 1.0 - - - - https://doctorow.medium.com/how-to-think-about-scraping-2db6f69a7e3d - 2023-10-06 - monthly - 1.0 - - - - https://cerwyn.medium.com/laravel-generalizing-api-response-error-handling-85646a195fea - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@nukulsharma/restful-api-documentation-with-swagger-d85c73ef3524 - 2023-10-06 - monthly - 1.0 - - - - https://medium.easyread.co/how-i-seed-my-database-with-go-27488d2e6a75 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/double-your-google-colab-ram-in-10-seconds-using-these-10-characters-efa636e646ff - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/how-to-start-multithreading-in-python-in-just-5-minutes-fe1f28d7aa56 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/google-cloud/gcp-dns-endpoints-with-gke-df35c8c16177 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@simonescigliuzzi/create-a-complete-web-api-set-from-scratch-with-fastify-swagger-and-heroku-c6eb1c293215 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-i-set-up-my-macbook-pro-as-a-ml-engineer-in-2022-88226f08bde2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/hello-love/i-was-fed-a-lie-about-men-and-masculinity-so-heres-to-the-men-i-never-got-to-know-7342525ed7c1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/beginners-guide-to-market-making-with-examples-660977ba440a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-download-and-visualize-your-twitter-network-f009dbbf107b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/elasticsearch-meets-bert-building-search-engine-with-elasticsearch-and-bert-9e74bf5b4cf2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/its-about-time-to-embrace-information-minimalism-88edc74c7c7 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/yolov4-with-cuda-powered-opencv-dnn-2fef48ea3984 - 2023-10-06 - monthly - 1.0 - - - - https://blog.prototypr.io/dear-designers-it-is-not-enough-to-just-do-ux-design-329caab200c3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/the-future-of-product-management-is-no-code-development-c99b06d8e460 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@onepixelout/how-to-nail-a-whiteboard-design-challenge-ba909eee9d5f - 2023-10-06 - monthly - 1.0 - - - - https://attilavago.medium.com/code-review-etiquette-for-the-modern-developer-3fb5e1ad62d0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@quackquackquack/guide-setting-up-a-vscode-thats-so-good-that-you-work-overtime-just-so-you-can-keep-typing-11f85e58ee71 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/running-pyspark-applications-on-amazon-emr-e536b7a865ca - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/getting-started-with-pyspark-on-amazon-emr-c85154b6b921 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/end-to-end-machine-learning-pipeline-with-docker-and-apache-airflow-from-scratch-35f6a75f57ad - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/change-your-mind/james-clear-on-one-crucial-question-to-ask-every-day-to-move-your-life-forward-e01215f22338 - 2023-10-06 - monthly - 1.0 - - - - https://thegrayarea.tech/hacking-a-locked-windows-10-computer-with-kali-linux-82298bc28974 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/proper-html-for-a-kicker-headline-37bf37a890ce - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-compare-large-files-f58982eccd3a - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/advantages-of-elixir-vs-golang-11ac1a67bfe7 - 2023-10-06 - monthly - 1.0 - - - - https://am-costanzo.medium.com/7-powerful-questions-to-ask-yourself-when-youre-ready-to-make-a-change-d2c645877262 - 2023-10-06 - monthly - 1.0 - - - - https://blog.bitsrc.io/implementing-user-authentication-and-secure-user-data-management-in-next-js-c132885ff908 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/dramatically-improve-your-database-inserts-with-a-simple-upgrade-6dfa672f1424 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-automatically-import-and-combine-multiple-files-in-r-30a77c0a7732 - 2023-10-06 - monthly - 1.0 - - - - https://aninjusticemag.com/heres-what-happened-when-two-plumbers-found-an-18-year-old-woman-s-organ-in-a-bathroom-drain-d331cc48b4b6 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/introducing-oncecell-and-oncelock-the-new-buddies-in-rust-1-70-0-229cd94e4ae2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/free-code-camp/things-i-wish-someone-had-told-me-when-i-was-learning-how-to-code-565fc9dcb329 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-capture-sql-queries-generated-by-power-bi-fc20a94d4b08 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/how-to-exit-vim-c8356d924eb3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/anovas-three-types-of-estimating-sums-of-squares-don-t-make-the-wrong-choice-91107c77a27a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/pdf-is-not-a-probability-5a4b8a5d9531 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/chi-square-distribution-simply-explained-87f707ba631a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ooemma83/everything-about-bar-chart-and-how-to-construct-different-bar-charts-using-matplotlib-in-python-8c90e81a4fbd - 2023-10-06 - monthly - 1.0 - - - - https://danwilreyes.medium.com/8-tips-to-grow-your-brand-on-linkedin-d7290e2c55ec - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/startup-stash/whats-killing-engagement-on-linkedin-2ed4a338483f - 2023-10-06 - monthly - 1.0 - - - - https://yasminrodriguez.medium.com/the-rise-of-linkedin-influencers-9babb1b2d9d7 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/quality-control-with-machine-learning-d7aab7382c1e - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/building-a-simple-online-chat-with-svelte-and-sveltekit-a-hands-on-tutorial-59459850c97 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/computational-biology/newbies-guide-to-biopython-part-1-9ec82c3dfe8f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/top-10-tampermonkey-plugins-are-better-than-chrome-extensions-ba96eec83a2f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/10-sql-standards-to-make-your-code-more-readable-in-2021-4410dc50b909 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/my-thoughts-on-datacamp-after-58-courses-and-more-than-305k-xps-bfc0d0d49b09 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/ios-17-is-a-mind-blowing-update-7-amazing-changes-3e293b6ea21b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/a-guide-to-learn-react-js-b4d3e890feea - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@viratpatel75/i-applied-to-230-data-science-jobs-during-last-2-months-and-this-is-what-ive-found-29ebdea4504 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/speed-up-your-command-line-navigation-with-these-3-tools-f90105c9aa2b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/ios-17-is-exactly-what-you-didnt-know-you-needed-11-amazing-features-ff092c82e30d - 2023-10-06 - monthly - 1.0 - - - - https://danoncoding.com/monorepos-for-microservices-part-3-pipeline-implementation-on-jenkins-d709f59b62f - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/consolidate-your-typescript-imports-with-index-ts-files-cee934c665a7 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-quick-uplift-modeling-introduction-6e14de32bfe0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/a-journey-with-go/go-how-are-random-numbers-generated-e58ee8696999 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/linear-regression-part-3-the-underlying-assumptions-82a66d5d5dd5 - 2023-10-06 - monthly - 1.0 - - - - https://faun.pub/sql-for-beginners-2022-a-practical-sql-guide-1de6adb43d52 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lessons-from-history/what-was-life-like-in-america-before-the-europeans-showed-up-9a24c5e6faf3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/time-series-forecasting-in-python-with-hidden-markov-models-dac146592237 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@natsunoyuki/hidden-markov-models-with-python-c026f778dfa7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/ios-17-is-a-mind-blowing-update-17-amazing-changes-569f481321a4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/14-newest-ios-17-features-i-guarantee-you-didnt-know-about-d56f85b1a2f3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/fourth-wave/how-to-lose-an-accent-in-10-days-461c2e7af858 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/prerender-angular-application-be-seo-ae1183c621cb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/shelterme/8-subtle-signs-that-youre-hanging-out-with-old-money-socialites-2e9cc65de7ed - 2023-10-06 - monthly - 1.0 - - - - https://naokishibuya.medium.com/up-sampling-with-transposed-convolution-9ae4f2df52d0 - 2023-10-06 - monthly - 1.0 - - - - https://suragch.medium.com/steaming-audio-in-flutter-with-just-audio-7435fcf672bf - 2023-10-06 - monthly - 1.0 - - - - https://florian-m.medium.com/stream-fake-data-to-test-pipeline-scalability-with-google-cloud-run-a7743408b20a - 2023-10-06 - monthly - 1.0 - - - - https://paulryburn.medium.com/narcissists-insidious-ways-they-plot-to-steal-your-friends-adc3dfaf3faf - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-memoirist/my-husband-the-monster-919414c38b4c - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/the-dall-e-3-alpha-leak-back-with-a-bang-2a4eec17755b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-memoirist/i-gave-away-my-first-baby-1c7c43f25981 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@UnbecomingStories/my-doomed-marriage-started-in-a-walmart-7b5e5ec6ae - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/11-badass-iphone-tricks-youve-never-thought-existed-c41910f16718 - 2023-10-06 - monthly - 1.0 - - - - https://nikhilvemu.medium.com/i-bet-you-havent-seen-an-iphone-widget-like-this-it-s-crazy-7f0b1e2e350a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/i-launched-my-first-digital-product-on-gumroad-a82f5d031018 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/ios-17-has-more-hidden-features-than-weve-expected-25-changes-a7375ed9807a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@Aaron0928/hugging-face-has-written-a-new-ml-framework-in-rust-now-open-sourced-1afea2113410 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/an-overview-of-time-series-forecasting-models-a2fa7a358fcb - 2023-10-06 - monthly - 1.0 - - - - https://muhammadrizwanmunawar.medium.com/my-%EF%B8%8Fcomputer-vision-hobby-projects-that-yielded-earnings-7923c9b9eead - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@UnbecomingStories/losing-my-marriage-and-divorcing-my-friends-fcaea15ef397 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@THLiterary/how-im-updating-my-obsidian-vault-structure-ab545ee78f1c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@UnbecomingStories/abortion-thats-a-you-problem-28072fbfd165 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@UnbecomingStories/the-party-was-over-and-so-was-my-marriage-3310e3a9bdb7 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/next-jss-new-app-vs-pages-router-a-detailed-comparison-46f846963af5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@UnbecomingStories/my-first-divorce-win-d9072a82698a - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-to-easily-format-markdown-files-in-vs-code-9c6bcecbe6f2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@technicadil_001/content-security-policy-csp-with-net-core-ebc00dcecc80 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@UnbecomingStories/celebrating-the-loss-of-my-son-8bf89b1de635 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@laraveltuts/how-to-convert-image-to-base64-in-laravel-655dad95172e - 2023-10-06 - monthly - 1.0 - - - - https://blog.road.org.hk/tpdm-2022-ff4685050e9 - 2023-10-06 - monthly - 1.0 - - - - https://blog.road.org.hk/bughan-dolo-tamsaeg-36ff273835f0 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/stop-waiting-start-using-async-and-await-18fcd1c28fd0 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/wanna-break-into-data-science-in-2023-think-twice-26842e9a87fe - 2023-10-06 - monthly - 1.0 - - - - https://fredgrott.medium.com/new-features-in-flutter-4-0-1ab01ac512ff - 2023-10-06 - monthly - 1.0 - - - - https://productcoalition.com/28-collaborative-prioritization-activities-for-your-next-workshop-1cd23db1057c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/obsidian-plugin-review-new-plugins-6fdeb99bc39c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/obsidian-plugin-review-smart-links-auto-glossary-image-layouts-achievements-eb7498e2bdc2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/obsidian-plugin-review-a-tab-switcher-a-time-planner-an-orphan-links-view-and-a-powerful-367d55b417d4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/obsidian-plugins-review-64c084e30704 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/obsidian-plugin-review-10-6582395d4ff5 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/platypus-quick-cheap-and-powerful-llm-404b86af8755 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/how-to-use-supabase-authentication-in-a-react-application-b23cd24e591b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/obsidian-plugins-review-12-2f7851005c4e - 2023-10-06 - monthly - 1.0 - - - - https://zhaohuabing.medium.com/hash-pointers-and-data-structures-f85d5fe91659 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/normalized-discounted-cumulative-gain-37e6f75090e9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/dont-just-learn-to-code-learn-to-build-cool-stuff-instead-7d0783d51655 - 2023-10-06 - monthly - 1.0 - - - - https://dorianlazar.medium.com/scraping-medium-with-python-beautiful-soup-3314f898bbf5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/cryptocurrencies-ups-and-down/20-best-play-to-earn-games-with-crypto-nft-rewards-in-2023-80b2fac330ec - 2023-10-06 - monthly - 1.0 - - - - https://blog.road.org.hk/all-destinations-b0a9b1e38f28 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/making-diagrams-fun-again-with-mermaid-8a2c9ea3e471 - 2023-10-06 - monthly - 1.0 - - - - https://blog.road.org.hk/road-users-code-2020-edition-219e3dba9b05 - 2023-10-06 - monthly - 1.0 - - - - https://blog.road.org.hk/hongkong-first-brown-sign-cce89fda240f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/amazon-kdp-vs-gumroad-a-review-of-selling-your-books-e6d99f9671d5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/splunkuserdeveloperadministrator/creating-mysql-databases-with-ansible-925ab28598ab - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/devops-dudes/what-is-ci-cd-continuous-integration-continuous-delivery-in-2020-988765f5d116 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/the-fastest-way-to-make-money-with-python-web-scraping-817eb151dae2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/nerd-for-tech/setting-up-a-standalone-redis-instance-2721a7318037 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/amazing-hardware/why-the-iphone-15-will-more-advance-than-the-iphone-14-9015f873c81c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/how-i-increased-my-iphones-battery-life-without-any-compromises-1e5a9d4fd410 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/why-you-shouldnt-worship-robert-kiyosaki-a49cb04f55af - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/simple-react-app-with-context-and-functional-components-a374b7fb66b5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/nodejs-code-evaluation-using-jest-sonarqube-and-docker-f6b41b2c319d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/7-difference-between-rest-and-soap-web-services-87510b06b687 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/difference-between-jwt-oauth-and-saml-for-authentication-and-authorization-in-web-apps-75b412754127 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@smertatli/deploying-sagemaker-model-batch-transform-c6a4ec7bdfd4 - 2023-10-06 - monthly - 1.0 - - - - https://desolve.medium.com/%E5%BE%9Eleetcode%E5%AD%B8%E6%BC%94%E7%AE%97%E6%B3%95-0-6c121bd8b579 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/double-pointer/system-design-interview-recommendation-system-design-as-used-by-youtube-netflix-etc-c457aaec3ab - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@nepherhotep/seamless-stitching-of-perfect-labels-cbf11695c8c9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@hbenja47/how-do-i-search-for-web-cache-deception-6c5f318016ca - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-are-convolutions-actually-performed-under-the-hood-226523ce7fbf - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@adrian.joseph/read-fit-files-in-r-a-story-on-why-you-should-not-reinvent-the-wheel-133394e6bb3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/sporty-data-analyzing-my-strava-activities-c34aab402069 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/understanding-feature-extraction-using-correlation-matrix-and-scatter-plots-6c19e968a60c - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/how-to-extract-tables-from-pdf-files-with-camelot-12ca6afd28dd - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/automatically-execute-bash-commands-on-save-in-vs-code-7a3100449f63 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/understand-text-summarization-and-create-your-own-summarizer-in-python-b26a9f09fc70 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@hmquan08011996/pipecd-gitops-on-aws-6f65ceb145ed - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/introduction-to-arima-for-time-series-forecasting-ee0bc285807a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/machine-learning-part-19-time-series-and-autoregressive-integrated-moving-average-model-arima-c1005347b0d7 - 2023-10-06 - monthly - 1.0 - - - - https://hudsonmendes.medium.com/get-your-app-talking-to-chatgpt-in-json-in-under-3-minutes-a96484479da2 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/return-json-from-gpt-65d40bfc2ef6 - 2023-10-06 - monthly - 1.0 - - - - https://mindofjp.medium.com/what-really-happens-to-a-human-body-at-titanic-depths-3f46ab545e0e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/demystifying-python-multiprocessing-and-multithreading-9b62f9875a27 - 2023-10-06 - monthly - 1.0 - - - - https://nleiva.medium.com/automating-network-device-configuration-parsing-with-ansible-99790909c384 - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/how-to-use-bun-88933cd513e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@leapingllamas/data-dictionary-a-how-to-and-best-practices-a09a685dcd61 - 2023-10-06 - monthly - 1.0 - - - - https://web3go.medium.com/web3go-bi-weekly-report-september-1st-september-15th-aa39e0ef2222 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/decisionrules/global-load-balancer-506ebc5c6c8a - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/the-zig-and-go-programming-showdown-2244b261c051 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/aimonks/the-best-free-online-generative-ai-courses-50988b02e53e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/stock-market-analysis-using-arima-8731ded2447a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-facebook-data-scientist-interview-38556739e872 - 2023-10-06 - monthly - 1.0 - - - - https://mattburgess.medium.com/beyond-console-log-2400fdf4a9d8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@kaushaltrivedi/creating-a-personalized-text-based-adventure-game-with-chatgpt-api-a-step-by-step-guide-to-7089ff09ca1f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jfeng45/go-microservice-with-clean-architecture-dependency-injection-82cbd3ecb9f3 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/5-simple-tips-for-debugging-docker-containers-271cb3dee77a - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/unleashing-the-power-of-node-js-18-new-features-tips-and-tricks-a918657d0087 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/free-chatgpt-prompt-engineering-course-that-actually-rocks-e5db03423042 - 2023-10-06 - monthly - 1.0 - - - - https://bretcameron.medium.com/how-javascript-maps-can-make-your-code-faster-90f56bf61d9d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/how-to-prevent-multiple-paths-of-kubernetes-pod-escape-3e43e567c5f4 - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/how-ci-cd-works-in-data-engineering-212fad9c860c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/ruby-daily/53-ruby-on-rails-interview-questions-and-answers-eb99eed1aeb7 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/5-reasons-why-im-learning-web-development-as-a-data-scientist-33bd61601b62 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/watchos-10-released-10-amazing-features-you-need-to-know-a700183c868c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/interviewhackingninja/android-interview-questions-1-20-168776363bce - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/fourth-wave/hello-world-my-train-ride-across-europe-acf2a6f757c5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/stock-price-prediction-with-chatgpt-and-finazon-f641d301cdac - 2023-10-06 - monthly - 1.0 - - - - https://yaakovbressler.medium.com/loading-ridiculously-large-excel-files-in-python-44ba0a7bea24 - 2023-10-06 - monthly - 1.0 - - - - https://jonathan-hui.medium.com/machine-learning-variational-inference-273d8e6480bb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/interviewhackingninja/android-interview-questions-41-60-bc6661dae5d7 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-step-by-step-guide-to-calculating-autocorrelation-and-partial-autocorrelation-8c4342b784e8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/image-anomaly-detection-using-autoencoders-ae937c7fd2d1 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/supercharge-your-python-asyncio-with-aiomultiprocess-a-comprehensive-guide-571ee0e2f416 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/what-makes-japanese-food-packaging-more-innovative-and-user-centric-than-its-western-counterparts-751264b24098 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/how-to-fix-virtualizedlists-should-never-be-nested-inside-plain-scrollviews-warning-3a2a887b4ea0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/curious/how-to-get-an-education-without-going-to-college-4c2df6617c6d - 2023-10-06 - monthly - 1.0 - - - - https://nidhig631.medium.com/partitioning-vs-clustering-126a8c3cb1ee - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@amila922/redis-sentinel-high-availability-everything-you-need-to-know-from-dev-to-prod-complete-guide-deb198e70ea6 - 2023-10-06 - monthly - 1.0 - - - - https://kavitmht.medium.com/discord-bot-in-go-74eabf4090a7 - 2023-10-06 - monthly - 1.0 - - - - https://awstip.com/mastering-aws-cost-optimization-strategies-for-efficient-cloud-infrastructure-management-d6a4bbafa2e7 - 2023-10-06 - monthly - 1.0 - - - - https://billtcheng2013.medium.com/chatting-with-gpt-exploring-open-source-large-language-models-7c346ee92eab - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/transformers-for-tabular-data-tabtransformer-deep-dive-5fb2438da820 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/improving-tabtransformer-part-1-linear-numerical-embeddings-dbc3be3b5bb5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/wylde-erotic-cravings/piano-lesson-71c6e59c0ddf - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/wasmer/a-webassembly-compiler-tale-9ef37aa3b537 - 2023-10-06 - monthly - 1.0 - - - - https://k001droid.medium.com/instructions-thread-for-vayu-bhima-poco-x3-pro-on-arrowos-dfb8bb5e1525 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/3-easy-steps-to-folding-docstrings-in-vscode-fbb64573611b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/platform-engineer/26-terraform-hacks-for-effective-infrastructure-automation-with-examples-d6d721c3d5e0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ThatRelationshipGuy/my-wife-was-the-bj-queen-of-her-high-school-7a4e1df15ce4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/raising-a-beautiful-mind/my-lost-potential-exploring-education-and-adhd-fd139142cfb2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/5-websites-to-try-stable-diffusion-2-0-6d3dbddda47 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@theo.seeds/how-learning-works-e4e8956ae17a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/how-i-track-my-tasks-in-obsidian-47fd7ad80364 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-designers-guide-to-visualize-a-text-dataset-1d534756e914 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/pyspark-in-google-colab-6821c2faf41c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/configuring-jupyter-notebook-in-windows-subsystem-linux-wsl2-c757893e9d69 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/one-word-of-code-to-stop-using-pandas-so-slowly-793e0a81343c - 2023-10-06 - monthly - 1.0 - - - - https://arno-waegemans.medium.com/firebase-authentication-for-asp-net-core-mvc-defd6135c632 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/python-i-have-tested-a-trading-mathematical-technic-in-realtime-658a80381151 - 2023-10-06 - monthly - 1.0 - - - - https://awstip.com/streamlining-airflow-deployment-automating-ci-cd-with-github-actions-5602f1062783 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@lydiabilodeau79/5-data-engineering-projects-to-boost-your-skills-in-2023-source-code-included-d478dabb4de8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codechai/testing-firestore-rules-using-emulator-suite-1442f1304c53 - 2023-10-06 - monthly - 1.0 - - - - https://wire.insiderfinance.io/how-to-retrieve-live-stock-market-data-via-websockets-in-python-f785b5125b47 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lessons-from-history/when-the-mongols-invaded-ukraine-759eaa9c8cc9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@amulyakandukuri4/mastering-sql-queries-and-joins-a7751a566dc9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/on-the-couch/when-your-partner-loves-you-but-doesnt-need-you-93356651de9f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@venkatkarthick15/data-modelling-techniques-importance-and-implementation-6b2d07eccd68 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@stillmind2/the-eccentric-genius-of-leonardo-da-vinci-9bda951392ae - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jkhasson/the-power-in-aligning-your-work-with-your-purpose-992c7a704f22 - 2023-10-06 - monthly - 1.0 - - - - https://cryptozoa.com/is-it-possible-to-outperform-the-top100-crypto-assets-773cda4fcd93 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/pivot-points-calculation-in-python-for-day-trading-659c1e92d323 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/publishous/understanding-dopamine-from-pleasure-to-addiction-7f30bff7dad2 - 2023-10-06 - monthly - 1.0 - - - - https://mitch-horowitz-nyc.medium.com/when-you-meet-a-cobra-on-the-road-6f6de175c4c8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tinywonder/i-tried-leonardo-da-vincis-daily-routine-for-a-week-here-are-my-surprising-results-d30d5a8ce10f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/keep-your-code-secure-by-using-environment-variables-and-env-files-4688a70ea286 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/i-cant-explain-how-useful-these-9-mac-homebrew-tools-are-66ee1ec7870 - 2023-10-06 - monthly - 1.0 - - - - https://brian-kean.medium.com/boris-yeltsin-invested-millions-into-the-question-who-are-we-45634b039222 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/7-hot-homebrew-tools-for-mac-that-feel-like-superpowers-5a136e81f177 - 2023-10-06 - monthly - 1.0 - - - - https://hoffa.medium.com/400-000-github-repositories-1-billion-files-14-terabytes-of-code-spaces-or-tabs-7cfe0b5dd7fd - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/unlimited-guide-to-dynamic-island-48700ecc094f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@BrownBearSec/shodan-for-bug-bounty-and-why-you-shouldnt-use-these-53-dorks-bfa347285b61 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@BrownBearSec/bug-bounty-wordlists-please-do-them-properly-2110babcf482 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/difference-between-spring-framework-spring-boot-and-spring-cloud-cf3692312d77 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/build-your-wealth/how-to-use-chatgpt-to-write-compelling-headlines-and-engage-your-readers-a7b847724b7d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/difference-between-hibernate-jpa-and-spring-data-jpa-7df55717692f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/difference-between-docker-kubernetes-and-podman-8b03a4cf03bc - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/chatgpt-tokenizer-chatgpt3-chatgpt4-artificial-intelligence-python-ai-27f78906ea54 - 2023-10-06 - monthly - 1.0 - - - - https://ravthiru.medium.com/strategy-design-pattern-with-in-spring-boot-application-2ff5a7486cd8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@aadityaubhat/local-llms-on-apple-silicon-39194de71ab7 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/10-best-free-websites-to-learn-more-about-data-science-and-machine-learning-f2c6d7387b8d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/kubernetes-cluster-running-out-of-ip-addresses-on-aws-eks-c7b8e5dd8606 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/curious/why-are-so-many-note-takers-dropping-para-heres-the-ugly-answer-82c22d796ffa - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/creating-and-training-a-u-net-model-with-pytorch-for-2d-3d-semantic-segmentation-training-3-4-8242d31de234 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/creating-and-training-a-u-net-model-with-pytorch-for-2d-3d-semantic-segmentation-model-building-6ab09d6a0862 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@riddhipawar/dynamic-array-problem-in-hackerrank-5d438d4c15ef - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/23-active-software-engineering-publications-on-medium-a17484223b9a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/difference-between-rabbitmq-apache-kafka-and-activemq-65e26b923114 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/difference-between-rest-graphql-and-grpc-10ac365462b8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-narrative-arc/i-have-4-000-books-left-to-read-before-i-die-5dfe90abd3ba - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/better-quantifying-the-performance-of-object-detection-in-video-c21d5b16493c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coinmonks/backtesting-trading-strategies-with-chatgpt-in-python-a-step-by-step-guide-9dba0cb85610 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@atef.ataya/prompt-engineering-custom-prompts-and-map-reduce-to-create-summarization-app-with-langchain-and-b71471c63d36 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/hackers-terminal/installing-pytorch-torchvision-on-nvidias-jetson-tx2-81591d03ce32 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/reduce-your-cloud-composer-bills-f03e112df689 - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/k8s-why-use-nerdctl-for-containerd-f4ea49bcf900 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/nttlabs/startup-containers-in-lightning-speed-with-lazy-image-distribution-on-containerd-243d94522361 - 2023-10-06 - monthly - 1.0 - - - - https://patrickberry.medium.com/email-notes-to-obsidian-8fba96a7d35b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/personal-growth-lab/10-things-to-do-instead-of-scrolling-through-your-smartphone-df9a17f1c7db - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/visualizing-well-paths-with-the-well-python-library-2104b28e5c3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/visualising-well-paths-on-3d-line-plots-with-plotly-express-de73ca73dea3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/scrittura/nostalgia-for-the-street-85b45695ce8b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@micahmcg0035/brain-dumping-for-the-stressed-and-anxious-a6f76e6c05c8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/tinyso/how-to-create-a-dropdown-select-component-in-react-bf85df53e206 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/towards-data-engineering/how-to-write-pytest-for-pyspark-application-5d8497633c77 - 2023-10-06 - monthly - 1.0 - - - - https://entrylevelrebel.medium.com/richard-branson-says-eq-is-more-important-than-iq-for-success-science-suggests-hes-right-5351a09eec30 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/contrasting-nats-with-apache-kafka-1d3bdb9aa767 - 2023-10-06 - monthly - 1.0 - - - - https://towardsfinance.com/langchain-chat-with-teslas-q2-earnings-call-on-youtube-5e2ebf5f9a7f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-generator/31-ai-prompts-better-than-rewrite-b3268dfe1fa9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/moving-files-in-obsidian-series-intro-and-core-capabilities-7881989239f6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/your-day-news-coffee-time/how-to-manage-personal-finances-to-building-businesses-and-support-our-families-1ffa797f1edf - 2023-10-06 - monthly - 1.0 - - - - https://iwannabemewhenigrowup.medium.com/three-approaches-to-task-management-in-obsidian-336b193a152a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/midform/7-ways-to-improve-your-personal-finances-and-achieve-financial-stability-529d0a53d9cf - 2023-10-06 - monthly - 1.0 - - - - https://karenbanes.medium.com/five-minute-habits-that-can-improve-your-personal-finances-723a87a71296 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-to-serve-a-single-page-application-using-go-4b9a38d92987 - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/fastapi-sqlalchemy-2-0-pydantic-v2-alembic-postgres-and-docker-2c429acfc333 - 2023-10-06 - monthly - 1.0 - - - - https://themakingofamillionaire.com/the-quiet-way-to-master-your-personal-finances-that-no-one-talks-about-8bc557d17618 - 2023-10-06 - monthly - 1.0 - - - - https://ddifran.medium.com/personal-finances-are-something-that-ive-struggled-with-over-much-of-my-life-693720a6c945 - 2023-10-06 - monthly - 1.0 - - - - https://muhsin-tokel.medium.com/what-strategies-can-individuals-implement-to-optimize-their-personal-finances-and-achieve-long-term-97623466e5f8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@Ronaldoants_/confidence-how-to-build-relationships-2c2f3c9ff081 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/a-perfect-match-nestjs-cloud-functions-2nd-gen-nx-workspace-f13fb044e9a4 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/finding-duplicate-images-with-python-71c04ec8051 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/svm-and-kernel-svm-fed02bef1200 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/the-art-of-using-http-requests-in-your-chrome-extensions-background-script-43737b279ec5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@brannondorsey/crack-wpa-wpa2-wi-fi-routers-with-aircrack-ng-and-hashcat-a5a5d3ffea46 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/change-becomes-you/escape-the-hamster-wheel-already-the-surprising-path-to-sustained-happiness-5af11a281711 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/getting-rich-slowly-is-the-worst-way-to-get-wealthy-aa32a4d0a291 - 2023-10-06 - monthly - 1.0 - - - - https://sunilrana123.medium.com/nodejs-logging-with-log4js-a67b98c40e80 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@successrules4life/9-things-highly-successful-people-do-that-99-percent-of-people-dont-do-654e25cd12de - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/no-labels-no-problem-30024984681d - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/pandas-2-0-unveiling-exciting-benchmarks-ea978f292632 - 2023-10-06 - monthly - 1.0 - - - - https://blog.prototypr.io/6-5-of-the-most-popular-ui-design-trends-and-how-to-design-them-all-9000a7c9466e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/effectively-use-timeit-lprun-and-mprun-to-write-efficient-python-code-f06fb8457049 - 2023-10-06 - monthly - 1.0 - - - - https://blog.prototypr.io/career-vs-job-getting-the-difference-right-e10b100c397e - 2023-10-06 - monthly - 1.0 - - - - https://blog.prototypr.io/make-your-calendar-work-for-you-7853ac983487 - 2023-10-06 - monthly - 1.0 - - - - https://thoughtcatalog.medium.com/3-things-you-should-do-during-the-talking-stage-71b959c14329 - 2023-10-06 - monthly - 1.0 - - - - https://harsh-darji.medium.com/how-to-become-more-curious-ef9221a02f48 - 2023-10-06 - monthly - 1.0 - - - - https://500ish.com/the-too-slick-apple-event-70c579ccec0f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/national-center-for-institutional-diversity/celebrating-black-women-and-girls-50-years-of-black-womens-studies-67eb9fcaeb55 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/understanding-python-imports-init-py-and-pythonpath-once-and-for-all-4c5249ab6355 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@alex.alvarad/what-actually-is-an-api-97e5cfc2adfa - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/understanding-singular-value-decomposition-and-its-application-in-data-science-388a54be95d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@KimWitten/how-to-start-working-63d43850cec5 - 2023-10-06 - monthly - 1.0 - - - - https://entrepreneurshandbook.co/this-entrepreneur-made-10m-in-4-years-with-10-income-streams-a277ee395e08 - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/beating-procrastination-by-getting-really-really-pedantic-about-to-dos-20ef2a811530 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/accelerated-intelligence/in-1911-an-influential-expert-revealed-a-forgotten-science-of-how-to-be-50x-more-productive-8828f86eb1c9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@victorzexihe/what-journaling-for-5-months-has-taught-me-a2f8729c2767 - 2023-10-06 - monthly - 1.0 - - - - https://projecteme.medium.com/how-to-customise-your-own-obsidian-css-in-3-steps-ae319e53f5d4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-orange-journal/dear-human-youve-got-mail-from-your-body-902e6283524 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/cloud-security/google-chrome-dns-security-bypass-9a1e10e02114 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/hello-love/3-things-women-dont-do-with-men-that-actually-build-attraction-74d9e04362ef - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/virtual-brainstorming-for-an-innovation-advantage-for-hybrid-and-remote-teams-in-the-future-of-work-196192616ff1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/hello-love/if-you-hear-this-one-phrase-stop-pursuing-a-relationship-with-someone-9f123a26f002 - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/the-a-to-z-of-web-accessibility-why-it-matters-more-than-ever-70c3edffb1bc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/15-awesome-and-useful-open-source-apps-that-you-need-to-know-e3633926b074 - 2023-10-06 - monthly - 1.0 - - - - https://eekayonline.medium.com/how-to-stop-fake-virus-notifications-on-mac-os-4bb8ababbd29 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/monte-carlo-learning-b83f75233f92 - 2023-10-06 - monthly - 1.0 - - - - https://tomaszs2.medium.com/5-awesome-python-projects-create-interactive-dashboards-ocr-go-paperless-perform-data-7f04ef5936be - 2023-10-06 - monthly - 1.0 - - - - https://blog.startupstash.com/from-zero-to-saas-building-and-launching-a-saas-in-10-days-66e262615d66 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/imu-framework-design/importing-data-into-sqlite-via-python-f248cc23ebc2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/how-to-efficiently-parallelize-dask-dataframe-computation-on-a-single-machine-1f10b5b02177 - 2023-10-06 - monthly - 1.0 - - - - https://jamesmsama.medium.com/avoid-dating-these-10-types-of-people-at-all-costs-f0a056a9547e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/game-of-self/people-who-want-you-dont-make-it-difficult-a5cbbe683d46 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@destinyfemi/15-things-that-make-you-irresistibly-attractive-according-to-psychologists-ddde33bd049 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/agileinsider/my-speed-run-on-courseras-google-project-management-professional-certificate-b577e48db136 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/python-for-art-design-personalized-quote-images-using-python-44ef4d8876d8 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/9-best-javascript-books-for-beginners-and-advanced-developers-f44c7e4a3af8 - 2023-10-06 - monthly - 1.0 - - - - https://evgeniiray.medium.com/infinite-scrolling-in-web-ultimate-guide-b698124b3172 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/ab-testing-challenges-in-social-networks-e67611c92916 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-case-against-ai-regulation-makes-no-sense-a6b5a9ca2b28 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/image-processing-4391c5bcef78 - 2023-10-06 - monthly - 1.0 - - - - https://beingpax.medium.com/7-obsidian-publish-alternatives-to-publish-your-notes-online-for-free-33db4fb06f5 - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/neovim-for-beginner-auto-pairs-c09e87a4d511 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/crypto-cash-flow-intelligence/best-potential-crypto-airdrops-for-2023-24-base-metamask-d4b9865b3d80 - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/neovim-for-beginners-common-language-servers-da28e4410294 - 2023-10-06 - monthly - 1.0 - - - - https://aruva.medium.com/100-bash-aliases-for-supersonic-productivity-d54a796422d9 - 2023-10-06 - monthly - 1.0 - - - - https://papers-100-lines.medium.com/neural-radiance-fields-nerf-tutorial-in-100-lines-of-pytorch-code-365ef2a1013 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/pythonistas/managing-multiple-databases-migrations-with-alembic-10025a4b3ab3 - 2023-10-06 - monthly - 1.0 - - - - https://papers-100-lines.medium.com/diffusion-models-from-scratch-tutorial-in-100-lines-of-pytorch-code-5dac9f472f1c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/its-nerf-from-nothing-build-a-vanilla-nerf-with-pytorch-7846e4c45666 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/fullstack-programming-in-english/mastering-conditional-types-in-typescript-a-full-guide-b7facf6811f0 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/accuracy-recall-precision-f-score-specificity-which-to-optimize-on-867d3f11124 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/mac-m1-m2-gpu-support-in-pytorch-a-step-forward-but-slower-than-conventional-nvidia-gpu-40be9293b898 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/processing-large-data-files-with-python-multithreading-dbb916f6b58d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/how-to-make-windows-terminal-awesome-part-1-530eedf6eabb - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/how-to-change-the-color-of-icons-with-css-f505ce8b9fdc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/linux-with-michael/how-to-setup-clangd-with-gcc-headers-and-neovim-lsp-for-competitive-programming-2f3f98425ae1 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/top-5-python-programming-books-for-data-scientists-af6caf4ff7b - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/how-chatgpt-could-escape-to-the-internet-for-real-this-time-d29d27bf5b4a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@pietro.meloni/using-chatgpt-to-summarize-unread-whatsapp-messages-1295999dd70c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bumble-tech/webrtc-on-android-how-to-enable-hardware-encoding-on-multiple-devices-5bd819c0ce5 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/inductive-vs-transductive-learning-e608e786f7d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@estebanthi/obsidian-quickadd-automate-the-boring-stuff-934dea38ea00 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@nina.semczuk/the-4-things-i-learned-from-ultralearning-by-scott-young-14bd39786020 - 2023-10-06 - monthly - 1.0 - - - - https://linguisticmaz.medium.com/understanding-polynomial-regression-17233786fa74 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/android-tech-stack/navigation-with-compose-fb10dd885ed0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@chris_42047/build-a-slam-dunk-crypto-screener-for-free-python-tutorial-3c86a3246007 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/s/story/are-we-post-lifestyle-699ff6023cb8 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/stop-using-too-many-usestate-in-react-e613e021b33c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/thought-thinkers/9-free-apps-to-change-your-life-updated-2023-dc1472176669 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/maverislabs/i-took-googles-cybersecurity-certification-course-and-here-s-what-i-learned-759ad5dd1c9b - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/how-to-effectively-work-out-to-build-muscle-at-home-9c0ac63a983d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/outsystems-experts/how-to-achieve-60-fps-animations-with-css3-db7b98610108 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/live-view/shoot-a-roll-of-36-with-your-digital-camera-a73fe027b5fc - 2023-10-06 - monthly - 1.0 - - - - https://xander51.medium.com/diablo-ivs-cramped-camera-zoom-is-a-terrible-design-choice-c872f35dafcb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@anirudh.munipalli/stop-using-console-log-in-javascript-try-these-instead-72490d895a24 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/wise-well/my-stupid-dangerous-run-in-110-degree-heat-687d035ec203 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@crisvelasquez/further-implementation-of-dynamic-risk-management-methods-in-python-d1f2ddf8b957 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bytehide/20-senior-developer-c-interview-questions-and-answers-2023-516bcb81d2f9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/equality-includes-you/racial-preference-vs-racial-fetishism-e20b8dc6f525 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@emma213/am-i-your-type-or-just-a-fetish-2388cad763cc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/when-and-why-to-use-over-in-python-b91168875453 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/invoke-what-comes-next/our-agency-ditched-timesheets-and-so-can-yours-1827af075ea7 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/redis-vs-keydb-my-performance-test-and-conclusions-519a658ded6e - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/boost-your-productivity-400-free-ai-tools-ready-for-use-63cc66c504d2 - 2023-10-06 - monthly - 1.0 - - - - https://thegrayarea.tech/a-250-entirely-automated-leaked-file-bug-bounty-14455c5457d0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/what-i-mean-by-using-html-and-css-properly-part-1-of-3-44804722e33a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/towards-data-engineering/data-engineer-interview-preparation-for-top-tech-companies-754886f48a37 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/understand-5-scopes-of-pytest-fixtures-1b607b5c19ed - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/data-engineering-101-from-batch-processing-to-streaming-54f8c0da66fb - 2023-10-06 - monthly - 1.0 - - - - https://jmrobles.medium.com/how-to-setup-hetzner-load-balancer-on-a-kubernetes-cluster-2ce79ca4a27b - 2023-10-06 - monthly - 1.0 - - - - https://lukeliutingchun.medium.com/angular-performance-issue-caused-by-settimeout-and-setinterval-1a4a65c07be3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/dynamic-task-scheduling-with-django-celery-beat-f2591d52e15 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@fullstacktips/understanding-asynchronous-non-blocking-concurrent-and-parallel-calls-9ebb7da8d955 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/typescript-reactjs-the-element-vs-reactelement-vs-htmlelement-vs-node-confusion-6cda21315ddd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/heart-affairs/the-rise-of-the-emotionally-intelligent-husband-9cfe2ea3f7e1 - 2023-10-06 - monthly - 1.0 - - - - https://react.thisweekin.io/react-weekly-issue-97-bb0aee5f17f1 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/the-hidden-cost-of-async-operations-bf575ac4dd4a - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/best-practice-for-designing-an-async-select-component-in-react-c1399ac43685 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/practical-ddd-in-typescript-domain-event-dda7076385df - 2023-10-06 - monthly - 1.0 - - - - https://blog.bitsrc.io/best-react-ui-framework-in-2023-4157f6143e39 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/modulr/laravel-8-send-notifications-with-queues-on-redis-90b7ba95c66e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/curious/how-ancient-vampires-explored-the-fear-of-female-sexuality-9e6603f2a552 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/airbyte-worth-the-hype-d2f25d0a7ca5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@HeCanThink/python-3-12-more-faster-and-more-efficient-python-b636f00b0471 - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/python-3-12-a-game-changer-in-performance-and-efficiency-8dfaaa1e744c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/wise-well/how-to-talk-to-someone-who-is-depressed-6b1fe615bd3d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/silhouette-method-better-than-elbow-method-to-find-optimal-clusters-378d62ff6891 - 2023-10-06 - monthly - 1.0 - - - - https://zahid-parvez.medium.com/creating-panoramas-using-python-image-stitching-f2593ab48d22 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/using-sdxl-1-0-on-comfyui-35767bc8758d - 2023-10-06 - monthly - 1.0 - - - - https://blog.developerpurpose.com/how-i-use-git-has-changed-dramatically-as-a-senior-developer-a52381767a85 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/use-flask-and-sqlalchemy-not-flask-sqlalchemy-5a64fafe22a4 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/keyword-extraction-with-bert-724efca412ea - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/implementing-a-decision-tree-from-scratch-f5358ff9c4bb - 2023-10-06 - monthly - 1.0 - - - - https://dhirajpatra.medium.com/most-important-statistics-topics-in-data-science-6c9e9bc23aa2 - 2023-10-06 - monthly - 1.0 - - - - https://pub.aimind.so/linear-algebra-that-every-data-scientist-should-know-eb585e0ef18d - 2023-10-06 - monthly - 1.0 - - - - https://truecrimetimesblog.medium.com/the-poison-pen-who-wrote-the-circleville-letters-440a302d09ad - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/wise-well/depression-in-older-adults-when-the-boss-broke-down-c7506e1098ae - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/front-end-weekly/how-to-set-up-enforce-https-and-host-a-custom-domain-on-github-free-for-life-210a659067f5 - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/neovim-for-beginners-built-in-completion-8bbbb0f16c9c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-talk-about-data-and-analysis-to-non-data-people-2457dc600219 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@amritlalsahu5/how-to-develop-a-secure-android-app-b4ec103ece8c - 2023-10-06 - monthly - 1.0 - - - - https://bettermarketing.pub/the-top-3-reasons-why-your-ads-suck-e417680e8642 - 2023-10-06 - monthly - 1.0 - - - - https://mailapurvpandey.medium.com/ssl-pinning-in-android-90dddfa3e051 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/speech-emotion-recognition-with-convolution-neural-network-1e6bb7130ce3 - 2023-10-06 - monthly - 1.0 - - - - https://lynn-kwong.medium.com/how-to-use-gsutil-and-python-to-deal-with-files-in-google-cloud-storage-fc4f430b3b28 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-beginners-guide-to-create-a-cloropleth-map-in-python-using-geopandas-and-matplotlib-9cc4175ab630 - 2023-10-06 - monthly - 1.0 - - - - https://hitrov.medium.com/resolving-oracle-cloud-out-of-capacity-issue-and-getting-free-vps-with-4-arm-cores-24gb-of-a3d7e6a027a8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/asecuritysite-when-bob-met-alice/whats-so-special-about-pkcs-1-v1-5-and-the-attack-that-just-won-t-go-away-51ccf35d65b7 - 2023-10-06 - monthly - 1.0 - - - - https://seanjkernan.medium.com/how-your-personality-is-revealed-by-your-choice-of-words-a05c42043a64 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/log-structured-merge-trees-9c8e2bea89e8 - 2023-10-06 - monthly - 1.0 - - - - https://stakon.medium.com/how-rolex-became-the-most-recognized-luxury-brand-60a1f0492ab4 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/encrypt-and-decrypt-files-using-python-python-programming-pyshark-a67774bbf9f4 - 2023-10-06 - monthly - 1.0 - - - - https://artificialcorner.com/how-to-use-an-ai-tool-midjourney-for-free-a-proven-way-a447529b5f3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/outlier-detection-part1-821d714524c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/linuxstories/linux-how-to-add-a-drive-to-fstab-the-right-way-9b4bd04a81d2 - 2023-10-06 - monthly - 1.0 - - - - https://marksaroufim.medium.com/automatic-differentiation-step-by-step-24240f97a6e6 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-to-disagree-with-someone-more-powerful-than-you-19649321494b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@AlexanderObregon/an-introductory-guide-to-preauthorize-and-postauthorize-annotations-in-spring-security-7b62f6913275 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/data-warehouse-vs-data-lake-vs-data-lakehouse-d60d586951b1 - 2023-10-06 - monthly - 1.0 - - - - https://fildyb.medium.com/gentlemen-prefer-blondes-casually-throwing-shade-on-sexism-d66eb5daac31 - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/rocksdb-a-deep-dive-into-the-internals-of-an-embedded-key-value-storage-engine-3a88132523c2 - 2023-10-06 - monthly - 1.0 - - - - https://geraintclarke.medium.com/the-best-selling-watch-of-all-time-is-not-a-rolex-32050cce269a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/comsystoreply/domain-object-authorization-acl-with-firebase-auth-custom-claims-and-spring-security-2b865904faef - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/ear-worthy/science-vs-podcast-the-adderall-and-adhd-controversy-a6e363b2f744 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mind-cafe/four-wastes-of-money-that-people-still-fall-for-b471add252d0 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/marketing-channel-attribution-with-markov-chains-in-python-part-2-the-complete-walkthrough-733c65b23323 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/using-chat-gpt-plugins-for-data-driven-stock-analysis-6ce83f1c8970 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/the-problem-with-women-empowerment-in-the-media-a7776b742167 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/obsidian-plugins-review-26-67e7a274e548 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/engage/the-hidden-side-of-protests-why-i-feel-unsafe-and-uncomfortable-at-rallies-f4aafc188caa - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/bootstrapping-using-python-and-r-b112bb4a969e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@lovisgod/understanding-apdu-for-software-developers-b82c17cc890a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/converting-conda-pip-environments-into-docker-images-d02aa22e872c - 2023-10-06 - monthly - 1.0 - - - - https://drgabrielharris.medium.com/python-how-getting-facebook-data-and-insights-using-facebook-sdk-9de14d3c12fb - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/discover-insights-from-your-instagram-business-account-with-facebook-graph-api-and-python-81d20ee2e751 - 2023-10-06 - monthly - 1.0 - - - - https://drgabrielharris.medium.com/python-how-making-facebook-api-calls-using-facebook-sdk-ea18bec973c8 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/go-enums-the-right-way-to-implement-and-iterate-9b1e233c8d9a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/4-essential-resources-to-help-improve-your-data-visualisations-8151e63ce8f0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/produclivity/ptpl-070-task-management-obsidian-plugin-vs-plain-text-vs-readymade-solutions-417b8ff26c0b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/autistic-advice/im-pathologically-demand-avoidant-it-rules-a034a4e20da4 - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/what-i-learned-from-5-years-of-cold-showers-that-i-didnt-after-a-year-4d170de0eaf4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/the-biggest-news-at-the-iphone-event-wasnt-the-iphones-it-was-the-mac-36d4c0de1fd1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/factory-mind/regex-tutorial-a-simple-cheatsheet-by-examples-649dc1c3f285 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@.com/how-we-handle-thousands-of-requests-per-second-55185c6bed08 - 2023-10-06 - monthly - 1.0 - - - - https://audhiaprilliant.medium.com/python-runtime-profiling-using-snakeviz-how-to-inspect-the-codes-performances-b9183ced32ed - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/setting-up-an-ubuntu-20-04-docker-container-c74a873d26c8 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/pairwise-sequence-alignment-using-biopython-d1a9d0ba861f - 2023-10-06 - monthly - 1.0 - - - - https://plazagonzalo.medium.com/send-messages-to-slack-using-python-4b986586cb6e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@mittalhardik225/search-and-earn-10-200-on-google-with-proof-d2ae543b7d92 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/quantcast-engineering/lessons-from-migrating-dns-systems-140c22b5218c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/android-news/local-maven-repository-and-libraries-updated-story-7585f1563fb2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jakubtutko/maven-repository-inside-your-project-4c55b4d73be8 - 2023-10-06 - monthly - 1.0 - - - - https://blog.startupstash.com/the-truth-about-the-wage-gap-from-someone-who-saw-everyones-salary-626c160bf662 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/tangram-visions/what-they-dont-tell-you-about-setting-up-a-wireguard-vpn-46f7bd168478 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/dataseries/openai-gpt-generative-pre-training-for-language-understanding-bbbdb42b7ff4 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/using-machine-learning-to-predict-kickstarter-success-e371ab56a743 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/bert-pre-training-of-transformers-for-language-understanding-5214fba4a9af - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/deploying-docker-containers-with-ansible-2a74a420e2b1 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/building-a-real-time-dashboard-using-python-plotly-library-and-web-service-145f50d204f0 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/make-a-mock-real-time-stream-of-data-with-python-and-kafka-7e5e23123582 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@abhinavv.singh/a-comprehensive-guide-to-authentication-and-authorization-in-go-golang-6f783b4cea18 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/tinyso/how-to-create-the-responsive-and-swipeable-carousel-slider-component-in-react-99f433364aa0 - 2023-10-06 - monthly - 1.0 - - - - https://jakeprins.medium.com/how-to-build-a-sellable-side-project-in-5-months-from-idea-to-acquisition-4c4f9af2f5ad - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bb-tutorials-and-thoughts/dockerizing-vue-app-with-nodejs-backend-33645f0f50ec - 2023-10-06 - monthly - 1.0 - - - - https://huantao.medium.com/how-to-add-additional-routes-dynamically-in-angular-6840bb89493c - 2023-10-06 - monthly - 1.0 - - - - https://huantao.medium.com/how-to-use-app-initializer-be5d2f801f93 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/fill-gaps-in-time-series-with-this-simple-trick-in-sql-81ac655e5ad7 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/importing-objects-from-a-python-module-can-be-risky-59dac696c51f - 2023-10-06 - monthly - 1.0 - - - - https://imran-niaz.medium.com/bug-bounty-penetration-testing-best-giude-ever-edcf69ef66a0 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/unit-testing-with-mocking-in-10-minutes-e28feb7e530 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/7-code-smells-you-should-know-about-and-avoid-b1edf066c3a5 - 2023-10-06 - monthly - 1.0 - - - - https://rossbulat.medium.com/typescript-live-chat-express-and-socket-io-server-setup-8d24fe13d00 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@shivamcse17818/bert-model-for-text-extraction-with-code-pytorch-91c13ef82e7b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@melissasmith_50058/im-glad-lizzo-was-finally-exposed-772437a5ce74 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@gabriel_renno/a-step-by-step-guide-to-hypothesis-testing-in-python-using-scipy-8eb5b696ab07 - 2023-10-06 - monthly - 1.0 - - - - https://stephenmoore.medium.com/apple-no-wonder-no-lust-f3cde2a6b75f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/publishous/i-just-got-back-from-a-country-that-nobody-ever-visits-b034a685d7fc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/enrique-dans/what-spotify-tells-us-about-the-unintended-effects-of-innovation-2e26446bde03 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/top-competitive-data-science-platforms-other-than-kaggle-2995e9dad93c - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/4-easy-methods-to-tokenize-your-data-14a5a79f0fb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/in-fitness-and-in-health/the-small-change-i-made-to-my-morning-routine-after-studying-the-dopamine-system-d1ed8f088b67 - 2023-10-06 - monthly - 1.0 - - - - https://christopherpjones.medium.com/the-meaning-of-leonardo-da-vincis-vitruvian-man-715e7dd1f5a1 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/time-to-choose-tensorflow-data-over-imagedatagenerator-215e594f2435 - 2023-10-06 - monthly - 1.0 - - - - https://ajaksecurity.medium.com/gui-bug-bounty-tool-to-find-easy-p1s-4d5edcfdb4b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/continuous-deployment-pipeline-using-github-actions-docker-and-aws-185bb3bf41b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/seamless-cloud/automated-deployment-to-aws-elastic-beanstalk-using-github-actions-888757a6eeb0 - 2023-10-06 - monthly - 1.0 - - - - https://artificialcorner.com/leveraging-chatgpt-and-mapbox-creating-a-location-based-question-answering-system-91e198b1f202 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/surprisingly-effective-way-to-name-matching-in-python-1a67328e670e - 2023-10-06 - monthly - 1.0 - - - - https://kirtfieldk.medium.com/ci-cd-docker-compose-elastic-beanstalk-and-github-actions-9d5572975269 - 2023-10-06 - monthly - 1.0 - - - - https://wilw.medium.com/i-was-nine-years-old-when-i-had-my-first-crush-68e85f2fad93 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/calculate-mean-median-and-mode-in-bigquery-dd37e94481d9 - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/building-neural-networks-with-python-code-and-math-in-detail-ii-bbe8accbf3d1 - 2023-10-06 - monthly - 1.0 - - - - https://cismography.medium.com/practitioners-guide-to-fine-tune-llms-for-domain-specific-use-case-part-1-4561714d874f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@EntrepreneurLife_yt/10-unconventional-passive-income-ideas-you-never-heard-before-200dc4477b18 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-to-not-need-a-private-npm-registry-1327bfbe80c9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/build-your-own-single-sign-on-sso-server-in-asp-net-core-4344f6b390d1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/flowaccount-tech/single-sign-on-sso-69aad061e269 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/best-books-for-software-engineering-leaders-221be3d5b2b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@andriizolkin/ive-tried-50-productivity-apps-but-only-4-stuck-with-me-be299e4f2bc4 - 2023-10-06 - monthly - 1.0 - - - - https://booksmyrefuge.medium.com/5-nonfiction-books-that-taught-me-more-than-my-college-degree-5f7bef807ad1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@godfreythegreat/stop-wasting-your-life-27832c8f6644 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-compute-a-moving-average-in-bigquery-using-sql-15f3fedd7489 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coders-mojo/most-popular-system-design-questions-mega-compilation-45218129fe26 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/quoality/methods-to-register-and-login-a-user-using-flutter-c984137b667b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@sosonuga1/want-to-break-into-cybersecurity-here-is-how-f2adeac77607 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@petrica.leuca/setting-up-airflow-on-synology-nas-54cb0edd07fe - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/understanding-the-crucial-difference-await-vs-return-await-ea5827fe9f03 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/how-to-run-multiple-node-and-angular-versions-simultaneously-1f58e6d150de - 2023-10-06 - monthly - 1.0 - - - - https://ai.plainenglish.io/mojo-python-upgrades-db4561232724 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/supervised-semi-supervised-unsupervised-and-self-supervised-learning-7fa79aa9247c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/understanding-resnet-and-its-variants-719e5b8d2298 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/non-negotiable-rules-for-living-if-you-want-to-be-moderately-wealthy-cbaf8d4e9634 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/jetbrains-datagrip-explain-plan-ac406772c470 - 2023-10-06 - monthly - 1.0 - - - - https://hussnainfareed.medium.com/from-campus-to-career-2-unleash-your-tech-passion-with-the-github-student-developer-pack-c7943c47274e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/brain-labs/why-google-pays-apple-18-billion-every-year-d33d6950b6e3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/10-fabulous-python-decorators-ab674a732871 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/react-courses/implementing-binary-tree-linked-lists-in-typescript-is-a-must-have-in-your-programming-arsenal-3e6f5599248f - 2023-10-06 - monthly - 1.0 - - - - https://aidakurniadi.medium.com/being-consistent-is-hard-a13f0b93e44 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@Ronaldoants_/dont-do-anything-perfect-thinking-oriented-5c4bf96c2ff3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/3-tools-for-fast-data-profiling-5bd4e962e482 - 2023-10-06 - monthly - 1.0 - - - - https://mahikacreates.medium.com/living-a-non-delusional-life-is-boring-for-real-d50c49cb4d94 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/10-of-my-favorite-python-decorators-9f05c72d9e33 - 2023-10-06 - monthly - 1.0 - - - - https://proandroiddev.com/screen-transition-animations-with-jetpack-navigation-17afdc714d0e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@Ronaldoants_/fully-happiness-1-day-without-instagram-1e0785e85112 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/better-habits/why-do-you-struggle-to-stay-motivated-a5c629419b60 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@Ronaldoants_/self-forgiveness-how-to-remove-chaos-from-your-brain-3a6196cce454 - 2023-10-06 - monthly - 1.0 - - - - https://brian-kean.medium.com/the-cost-of-committing-genocide-is-going-up-for-russia-9acc9959d055 - 2023-10-06 - monthly - 1.0 - - - - https://hangmortimer.medium.com/80-prepare-for-databricks-data-engineer-associate-certification-exam-part-5-practice-test-6d9e4924253 - 2023-10-06 - monthly - 1.0 - - - - https://beingpax.medium.com/obsidian-co-pilot-the-best-chatgpt-integration-for-obsidian-40087ce5117 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@elevyhart/reframe-your-perspective-of-time-627f41d97652 - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/ui-ux-design-three-midjourney-alternative-ae39c8577ae7 - 2023-10-06 - monthly - 1.0 - - - - https://gabth.medium.com/presenting-expandable-text-fields-in-swiftui-ed8f488e08cd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@NovelNestBooks/25-best-mathematics-books-recommended-by-mathematician-steven-strogatz-ae4860d032bb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@Ronaldoants_/failure-is-not-the-end-of-everything-cbdaefc49c32 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/dask-or-spark-a-comparison-for-data-scientists-d4cba8ba9ef7 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/why-do-creative-people-need-time-to-sit-around-and-do-nothing-307f3d8d7b16 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@viam_/when-you-feel-behind-in-life-93ce02eb3f2d - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/are-designers-ready-for-a-product-first-process-ffdbf01768b7 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/ios-13-be-dynamic-with-diffabledatasource-56ed938a0325 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@datamount/end-to-end-data-application-using-modern-data-stack-snowflake-snowpark-streamlit-and-dbt-ffacee9ba3d4 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-to-use-diffabledatasource-and-still-support-ios-12-765128bc4082 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/compendium/seamless-openid-connect-oauth-2-0-security-on-httpclient-in-net-6-2ca6dea35c9 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/tips-and-tricks-for-loading-large-csv-files-into-pandas-dataframes-part-1-fac6e351fe79 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/fast-ai-season-1-episode-5-1-movie-recommendation-using-fastai-a53ed8e41269 - 2023-10-06 - monthly - 1.0 - - - - https://jordanbean.medium.com/equinox-fitness-the-analytics-behind-the-high-end-fitness-club-dc9e4058ed00 - 2023-10-06 - monthly - 1.0 - - - - https://blog.devops.dev/6-linux-utilities-you-should-install-right-now-75470963a021 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/improving-your-prediction-api-with-dynamic-batching-50b98e5054f7 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/what-is-the-strongest-quasi-experimental-method-interrupted-time-series-period-f59fe5b00b31 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/art-of-data-engineering/12-little-things-that-predict-future-success-as-a-data-engineer-63070017dfa1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/interrupted-time-series-analysis-10d73659c6af - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/all-8-types-of-time-series-classification-methods-2c8e4b323ea2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/combining-multiple-api-calls-with-completablefuture-1d9d27e03bec - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/10-absolutely-useful-macos-apps-youll-probably-never-stop-using-6b904ef64796 - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/market-research-e1e31dcd78e6 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/passing-the-dreaded-data-science-take-home-assignment-8ae5d55f256b - 2023-10-06 - monthly - 1.0 - - - - https://rajatamil.medium.com/google-maps-api-common-errors-solutions-952e65e1aed0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/sensual-enchantment/its-not-the-sex-but-the-resentment-that-makes-marriage-hard-53b60c3dc784 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/loading-well-log-data-from-dlis-using-python-9d48df9a23e2 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/unsupervised-classification-project-building-a-movie-recommender-with-clustering-analysis-and-4bab0738efe6 - 2023-10-06 - monthly - 1.0 - - - - https://asdkazmi.medium.com/ai-movies-recommendation-system-with-clustering-based-k-means-algorithm-f04467e02fcd - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/the-life-cycle-of-python-instance-objects-4a719fb4e925 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@vi.ai_/fine-tuning-llama-v2-7b-on-google-colab-unleashing-the-full-potential-of-language-modeling-9b9f05c3be35 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illuminations-mirror/how-to-earn-up-to-2-500-month-active-income-with-microwebsites-3604df673d0b - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/i-make-1k-every-month-in-side-income-writing-simple-python-scripts-here-is-how-i-do-it-fb3dc4f9f30d - 2023-10-06 - monthly - 1.0 - - - - https://shuomi.medium.com/the-ultimate-thinking-planning-setup-obsidian-and-amplenotes-calendar-7b727d6e84c5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/front-end-weekly/add-animation-effects-easily-to-our-vue-app-with-the-vue2-animate-library-6b186c5c4267 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@roohaa_n/tricky-2fa-bypass-leads-to-4-digit-bounty-3a148bc7d4a - 2023-10-06 - monthly - 1.0 - - - - https://tijmenr.medium.com/two-types-of-entrepreneurship-the-freelancer-and-the-entrepreneur-d584df320ff0 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/xcode-command-line-tools-use-cases-6eb331eda99d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/dynamic-word-tokenization-with-regex-tokenizer-801ae839d1cd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/predict/the-rise-of-techno-feudalism-6bdfe499130a - 2023-10-06 - monthly - 1.0 - - - - https://bonigopalan.medium.com/how-to-create-and-manage-mongo-db-materialized-views-using-triggers-a2fb58a4d1a0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/relationship-matters/subtle-ways-most-men-apologize-to-their-partner-5efa9c876190 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@alexeynovikov_89393/java-self-referential-generics-part-1-2a6b19a4358d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/beloved/5-subtle-signs-a-man-is-serious-with-you-but-you-think-hes-not-aeb7bfd7859d - 2023-10-06 - monthly - 1.0 - - - - https://gennadylaptev.medium.com/median-and-mae-3e85f92df2d7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/relationship-matters/10-signs-someone-is-worth-your-relationship-55ec2279bdb9 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/reinforced-pac-man-8e51409f4fc - 2023-10-06 - monthly - 1.0 - - - - https://arshren.medium.com/generalized-policy-iteration-c8e24e5c7971 - 2023-10-06 - monthly - 1.0 - - - - https://humanparts.medium.com/finding-your-community-at-any-age-6692e8f0bdd7 - 2023-10-06 - monthly - 1.0 - - - - https://kaabar-sofien.medium.com/a-trend-following-contrarian-hybrid-trading-strategy-7e8debd0f139 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/nioya/how-to-get-lets-encrypt-ssl-certificate-by-using-docker-8199f1cce733 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/dive-into-queue-module-in-python-its-more-than-fifo-ce86c40944ef - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/visualization-and-interactive-dashboard-in-python-c2f2a88b2ba3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/building-interactive-data-visualizations-with-python-the-art-of-storytelling-ceb43db67488 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-to-scaffold-and-deploy-a-next-js-app-with-tailwind-css-and-typescript-faab9a274ae7 - 2023-10-06 - monthly - 1.0 - - - - https://jonthanfielding.medium.com/5-mac-accessories-for-developers-f468bd94482 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/writers-blokke/5-reasons-why-the-advice-dont-give-up-on-your-dreams-is-bullshit-ab823854cb28 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@anjishnuray/life-genuinely-becomes-a-lot-better-when-we-just-stop-reacting-to-shit-d47196676dc5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@injamamul_cob/how-to-boost-your-brains-focus-and-concentration-b642ef0adfd4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/build-speech-to-text-model-from-scratch-580bc2c107a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/3-reasons-why-being-socially-awkward-is-awesome-1d204ed36fcb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/curious/6-amazing-online-magazines-that-you-can-read-for-free-32be9b885681 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/4-reasons-why-the-label-smartest-kid-in-class-is-destructive-dd6058146517 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-patient-investor/invested-how-three-centuries-of-stock-market-advice-reshaped-our-money-markets-and-minds-ec0ee607f20c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@darrelltyler/heres-why-never-give-up-is-horrible-advice-289bc85e05e7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/how-to-migrate-from-google-container-registry-to-artifact-registry-b9706c25a34f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-collector/does-the-last-supper-have-a-hidden-meaning-e0dfcfc3a50 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/george-adams-iv/experimenting-with-delivering-a-reactive-python-application-ff364a3cdf3f - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/11-stupidly-simple-side-hustles-to-earn-extra-money-as-a-programmer-23fd30ca5cda - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/build-an-extreme-learning-machine-in-python-91d1e8958599 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/secure-your-spa-react-angular-vue-and-rest-api-deployed-using-gcp-app-engine-with-iap-f325182ddcb0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coinmonks/r-i-p-drip-faucet-1be1d563d969 - 2023-10-06 - monthly - 1.0 - - - - https://detect.fyi/how-to-make-the-best-out-of-splunk-your-threat-intel-platform-b947554a9720 - 2023-10-06 - monthly - 1.0 - - - - https://detect.fyi/splunk-ioc-scanner-a-use-case-every-single-soc-needs-32f5739d557e - 2023-10-06 - monthly - 1.0 - - - - https://www.cantorsparadise.com/why-you-cant-fold-a-piece-of-paper-8-times-e82c2e23c62b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/state-of-the-art-technology/combining-the-best-of-both-worlds-hybrid-search-in-elasticsearch-with-bm25-and-hnsw-1e7bd55d4682 - 2023-10-06 - monthly - 1.0 - - - - https://faun.pub/xxe-attacks-750e91448e8f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/dear-junior-developer-i-dont-care-about-your-portfolio-676334b04974 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/my-experience-in-metas-rotational-software-engineering-program-7359df14bfc8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/heres-the-study-plan-a-self-taught-software-engineer-used-to-get-two-faang-offers-2e1b7c757e45 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/understanding-gaussian-classifier-6c9f3452358f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/time-series-forecast-in-python-5c4c61e1c2c2 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/the-top-12-intellij-plugins-for-2021-55b1815e0eb8 - 2023-10-06 - monthly - 1.0 - - - - https://forge.medium.com/what-you-dont-know-about-your-partner-might-turn-you-on-3e8f56cf533f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@chris_42047/python-backtesting-primer-using-backtesting-py-ed70b092607 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/%E7%92%B0%E7%90%83%E5%9C%B0%E6%96%B9%E8%AA%8C-%E9%A6%99%E6%B8%AF-%E5%8F%B0%E7%81%A3/memoryinhk015-c37f0ef92e25 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/create-music-recommendation-system-using-python-ce5401317159 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/nest-js-and-the-custom-validation-pipe-231130fda040 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/cloud-native-daily/deploy-cloud-functions-on-gcp-with-terraform-c6026be9d645 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/geting-4x-speedup-with-net-core-3-0-simd-intrinsics-5c9c31c47991 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/chez-moi-cest-la-b/%E8%BE%AD%E8%81%B7%E7%9A%84%E7%A6%AE%E5%84%80-bde645c1e207 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/chez-moi-cest-la-b/%E6%9B%BC%E5%9F%8E%E5%91%A8%E8%A8%98-%E7%A7%8B%E9%A2%A8%E8%95%AD%E8%95%AD%E6%84%81%E7%85%9E%E4%BA%BA-ffecb2d24567 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/chez-moi-cest-la-b/%E6%9B%BC%E5%9F%8E%E5%91%A8%E8%A8%98-%E9%AC%BC%E6%8F%9E%E7%9C%BC-9c4b9f462c44 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/jupyter-notebook-best-practices-f430a6ba8c69 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@BrownBearSec/what-i-learnt-from-reading-126-information-disclosure-writeups-d896c5d5a2a4 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-build-an-amazing-music-recommendation-system-4cce2719a572 - 2023-10-06 - monthly - 1.0 - - - - https://worldroyals.medium.com/the-bastard-queen-d35d54817d0c - 2023-10-06 - monthly - 1.0 - - - - https://worldroyals.medium.com/a-curse-on-the-house-of-hesse-ea186eac5248 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@direnalexander/44-seconds-left-1f4ca10e73f7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/how-to-determine-the-optimal-k-for-k-means-708505d204eb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/factory-mind/websocket-node-js-express-step-by-step-using-typescript-725114ad5fe4 - 2023-10-06 - monthly - 1.0 - - - - https://carbazel.medium.com/is-trash-talking-ruining-boxing-and-mma-or-getting-better-d192d0970541 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/create-and-sell-crosswords-with-chatgpt-simple-5-step-guide-with-the-exact-prompts-80119d0777dd - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/why-you-should-study-discrete-mathematics-as-a-software-engineer-9ec68108b104 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/what-is-going-on-in-korea/4-successful-marketing-lessons-from-the-k-pop-music-industry-f8a9c4b900fa - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/what-is-cosine-similarity-how-to-compare-text-and-images-in-python-d2bb6e411ef0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-knowledge-of-freedom/single-father-households-do-vastly-better-than-single-mother-heres-the-real-reason-why-8a7fd7c5611d - 2023-10-06 - monthly - 1.0 - - - - https://bettermarketing.pub/how-k-pop-took-over-the-global-music-industry-62726ae4878f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/10-steps-to-master-python-for-data-science-f54199bb328d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@alex_27209/hitlers-attitude-on-different-races-7bf15170fc1a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/invisible-illness/are-you-a-rose-that-grew-from-concrete-94f5715a2a4f - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/the-awesome-new-1password-feature-for-developers-to-secure-and-manage-your-secrets-b583e47e8693 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/nietzsches-philosophy/live-dangerously-nietzsches-secret-for-greatest-fruitfulness-db36637ea2cb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/awesome-cloud/aws-vpc-endpoints-overview-intro-getting-started-guide-91ca23b5af8d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/dns-over-https-vs-dns-over-tls-cbfc96c283db - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/the-toxic-dating-advice-you-need-to-stray-away-from-3b765889aa05 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mobile-app-development-publication/kotlin-for-loop-vs-foreach-7eb594960333 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bytehide/serilog-vs-log4net-vs-nlog-detailed-comparison-e4677a8b7b66 - 2023-10-06 - monthly - 1.0 - - - - https://ali.medium.com/richard-feynman-the-man-who-only-used-his-intellect-to-enjoy-life-dbfd2d2e4fa8 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/clustering-out-of-the-black-box-5e8285220717 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/worlds-most-iconic-graduate-school-recommendation-letter-3c2539fa4942 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-ensemble-clustering-algorithms-bf78d7602265 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/asynchronous-programming-in-python-for-making-more-api-calls-faster-419a1d2ee058 - 2023-10-06 - monthly - 1.0 - - - - https://ai.plainenglish.io/vector-search-is-not-all-you-need-ecd0f16ad65e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/4-ways-of-playing-animation-related-sounds-in-unity-2a845e44cb29 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/introduction-to-knowledge-graph-based-recommender-systems-34254efd1960 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/wordle-solver-using-python-3-3c3bccd3b4fb - 2023-10-06 - monthly - 1.0 - - - - https://www.cantorsparadise.com/the-riemann-hypothesis-explained-fa01c1f75d3f - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/spark-questions-interview-series-c31cedf41652 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@olgaokrut/the-quantum-computing-course-by-qubit-by-qubit-is-it-worth-it-49670bf885b7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-knowledge-of-freedom/women-do-not-think-80-percent-of-men-are-below-average-904c738bbade - 2023-10-06 - monthly - 1.0 - - - - https://tomaszs2.medium.com/svelte-5-introduces-runes-streamlining-reactivity-b99c5f619024 - 2023-10-06 - monthly - 1.0 - - - - https://myerotica.com/wifey-enjoys-my-friends-huge-package-86763b3bd99b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/erotic-fantasies/too-big-embarrassed-so-i-gave-my-sons-friend-relief-7839b565d8ad - 2023-10-06 - monthly - 1.0 - - - - https://mayhemmchan.medium.com/daddy-teaches-a-teen-the-pleasures-of-sex-9c57695358b7 - 2023-10-06 - monthly - 1.0 - - - - https://mayhemmchan.medium.com/playing-with-my-ex-pornstar-mother-in-law-42ca59ec33d2 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/the-dos-and-don-ts-of-python-list-comprehension-5cd0f5d18500 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@webdev_59507/integrating-the-youtube-data-api-into-a-website-5ee2a7dc2370 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/belover/the-secret-sex-life-of-billy-graham-669734837461 - 2023-10-06 - monthly - 1.0 - - - - https://s-a-ozbourne.medium.com/the-suicide-forum-killer-22928e8ba1c7 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/making-deep-learning-models-ready-for-the-worst-case-scenario-and-cross-platform-ready-with-c62284f87808 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/query-metabase-data-in-python-ea7f866e6782 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/introduction-to-survival-analysis-6f7e19c31d96 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/japonica-publication/nova-brewing-making-premium-sake-in-los-angeles-76e22be9458e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/why-having-many-features-can-hinder-your-models-performance-865369b6b8b1 - 2023-10-06 - monthly - 1.0 - - - - https://jacquelineatulip.medium.com/cunnilingus-the-ultimate-guide-on-how-to-eat-pussy-like-a-champ-75bfde35c39b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@containeroo/traefik-2-0-paranoid-about-mounting-var-run-docker-sock-22da9cb3e78c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@containeroo/traefik-2-0-docker-a-simple-step-by-step-guide-e0be0c17cfa5 - 2023-10-06 - monthly - 1.0 - - - - https://joebathelt.medium.com/the-best-mac-apps-for-researchers-and-academics-8f9c0563cb26 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/ssense-tech/mvc-to-microservices-from-a-students-perspective-c29f9cf799d5 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-i-learned-tableau-in-1-day-8db80c167f9d - 2023-10-06 - monthly - 1.0 - - - - https://www.cantorsparadise.com/the-paradox-that-broke-set-theory-658a83b1abf9 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-i-passed-the-microsoft-azure-fundamentals-certification-in-5-days-75b8e261d5d1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/sexography/my-sleepy-sex-fantasy-came-true-9672f3747e1d - 2023-10-06 - monthly - 1.0 - - - - https://wesodonnell.medium.com/ukraine-using-inflatable-decoys-to-make-russia-waste-their-precision-munitions-5aa5f9c822d6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/im-tired-of-living-in-a-clickbait-society-b335d409eedf - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/2d-or-3d-a-simple-comparison-of-convolutional-neural-networks-for-automatic-segmentation-of-625308f52aa7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@UnbecomingStories/my-secret-to-winning-in-divorce-court-f6d39ec320a9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@UnbecomingStories/my-life-with-a-porn-addicted-husband-92ecb9124a47 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tsecretdeveloper/my-colleague-got-fired-for-this-1%EF%B8%8F%E2%83%A3-mistake-356da12d7636 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@redeaddiscolll/stock-prediction-using-3-methods-lstm-arima-mcmc-800d46fceea7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/front-end-weekly/custom-list-styles-using-marker-710ad80ce760 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@UnbecomingStories/the-many-ways-i-embarrassed-my-husband-14d7cfd242fe - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/quant-factory/building-a-mean-reverting-algorithmic-trading-strategy-using-cointegration-in-python-a17a17dc3c24 - 2023-10-06 - monthly - 1.0 - - - - https://nickefy.medium.com/how-i-built-a-data-lakehouse-with-delta-lake-architecture-c7cdf0d18ee5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@vanrijn/an-overview-of-the-ssl-handshake-3885c37c3e0f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@maydin/kotlin-coroutine-basics-quiz-refresh-your-kotlin-knowledge-e408a601cb59 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@UnbecomingStories/my-affair-c8de7a668848 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@crisvelasquez/predictive-prowess-of-monte-carlo-navigating-stock-future-movements-with-historical-implied-35c70387ea40 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@UnbecomingStories/after-the-affair-97d11a774b89 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/game-global/7-dark-and-manipulative-tactics-to-make-women-obsess-over-you-7af55378ce4d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/hello-love/why-im-telling-about-my-husband-s-stalking-ce76b64fb15f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@UnbecomingStories/telling-my-family-the-truth-bb6aed839f54 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@redeaddiscolll/deep-learning-with-pytorch-2f677b43e7b2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@corymaklin/the-star-schema-is-dead-long-live-wide-tables-4c5ca8e2a89a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@UnbecomingStories/welcome-home-sex-87b9c083ebb5 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/getting-started-with-airflow-using-docker-cd8b44dbff98 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/m2-macbook-air-guide-8gb-vs-16gb-vs-24gb-fcff57031acf - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/real-m2-macbook-air-performance-cf0cda1bda0b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/7-great-youtube-channels-to-learn-the-latest-advancements-in-machine-learning-and-ai-f3a9b5f56b65 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/why-now-is-the-hardest-time-to-buy-an-ipad-a6d99c420509 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/all-the-pandas-shift-you-should-know-for-data-analysis-791c1692b5e - 2023-10-06 - monthly - 1.0 - - - - https://reefwing.medium.com/a-review-of-open-source-flight-control-systems-2fe37239c9b6 - 2023-10-06 - monthly - 1.0 - - - - https://debharman.medium.com/why-i-stopped-going-to-the-nude-beach-fec27e70a8d8 - 2023-10-06 - monthly - 1.0 - - - - https://reefwing.medium.com/how-to-write-your-own-flight-controller-software-part-2-bc7f27214bb2 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/learning-to-make-drones-see-with-artificial-intelligence-8a2ac0570db - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/gaming-technews/review-crucial-bx500-240gb-ssd-42e1a517791e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/3-fundamental-reasons-why-quantization-is-important-for-tinyml-92df82234b91 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/counterarts/mathematics-in-art-vitruvian-man-by-leonardo-da-vinci-edae2989f162 - 2023-10-06 - monthly - 1.0 - - - - https://ngwaifoong92.medium.com/how-to-fine-tune-sdxl-using-lora-f6d77192170a - 2023-10-06 - monthly - 1.0 - - - - https://artificialcorner.com/bye-bye-chatgpt-here-are-4-reasons-why-openai-should-be-scared-now-165a33910568 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/how-to-make-kafka-producer-consumer-production-ready-d40915b78c9 - 2023-10-06 - monthly - 1.0 - - - - https://blog.startupstash.com/the-fantastic-four-of-analytics-what-they-are-and-how-to-use-them-9c47cac261d8 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/an-easy-beginners-guide-to-sqlite-in-python-and-pandas-fbf1f38f6800 - 2023-10-06 - monthly - 1.0 - - - - https://andywatt83.medium.com/testing-entity-framework-migrations-9bc5dc25190b - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/node-js-websockets-on-aws-2fba33bef9be - 2023-10-06 - monthly - 1.0 - - - - https://artificialcorner.com/the-chatbot-competition-a-hands-on-comparison-of-chatgpt-and-google-bard-aa4e7b62b8 - 2023-10-06 - monthly - 1.0 - - - - https://artificialcorner.com/google-bards-new-image-recognition-means-serious-competition-to-chatgpt-here-are-6-best-use-cases-55d69eae1b27 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@redeaddiscolll/harnessing-the-power-of-ai-predicting-stock-prices-using-deep-learning-and-lstm-neural-networks-c32f30cc8e0b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@redeaddiscolll/sophisticated-algorithmic-strategies-which-you-need-to-learn-41b4babedc46 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/what-is-low-rank-adaptation-lora-and-why-you-cant-afford-to-ignore-it-808f816b296b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coinmonks/my-profitable-delta-hedging-strategy-a-guide-to-consistent-monthly-income-in-options-trading-13cd699104cc - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-build-an-interactive-confidence-interval-calculator-in-python-6aea08d69be3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/8-exciting-new-ios-17-features-i-would-probably-never-use-dc122fc3154b - 2023-10-06 - monthly - 1.0 - - - - https://tomsmith585.medium.com/the-disturbing-colonial-history-of-pumpkin-spice-fbe62b7e213a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/scribe/goodbye-is-your-eyes-closing-over-my-life-797267eacc8c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/age-of-empathy/the-frivolity-of-youth-and-the-challenge-of-parenting-it-6ea887255ac6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@hugolu87/why-being-a-head-of-data-isnt-what-you-think-it-is-f1ddcefa73a1 - 2023-10-06 - monthly - 1.0 - - - - https://pub.aimind.so/this-is-why-you-cant-use-llama-2-d33701ce0766 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-upper-confidence-bound-ucb-bandit-algorithm-c05c2bf4c13f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-step-by-step-guide-to-speech-recognition-and-audio-signal-processing-in-python-136e37236c24 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/solidity-tutorial-all-about-data-locations-dabd33212471 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/5-bad-practices-in-go-learn-from-mistakes-13afb4d303b3 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/all-about-solidity-data-locations-part-i-storage-e50604bfc1ad - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@vanillaxiangshuyang/self-supervised-learning-on-tabular-data-with-tabnet-544b3ec85cee - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@sidharth.shukla19/how-to-automate-soap-api-using-rest-assured-with-real-time-examples-ad71a4a8d740 - 2023-10-06 - monthly - 1.0 - - - - https://scollay.medium.com/squeezing-pandas-89-less-ram-consumption-4d91a0eb9c08 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/introduction-to-prometheus-promql-local-setup-included-28f1da9cc2f8 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/controllable-medical-image-generation-with-controlnets-48ef33dde652 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@estebanthi/obsidian-excalidraw-embed-drawings-into-your-notes-bd6a3f52f73f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/jspoint/a-simple-guide-to-load-c-c-code-into-node-js-javascript-applications-3fcccf54fd32 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/solidity-tutorial-all-about-calldata-aebbe998a5fc - 2023-10-06 - monthly - 1.0 - - - - https://valeman.medium.com/conformal-prediction-forecasting-with-nixtlas-statsforecast-cc39b9e30b36 - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/kafka-streams-how-to-calculate-moving-average-for-stock-price-data-stream-in-real-time-9429617d5108 - 2023-10-06 - monthly - 1.0 - - - - https://becomingahacker.org/leveraging-open-interpreter-ai-driven-automated-coding-with-code-llama-and-gpt-4-5361b944fa0 - 2023-10-06 - monthly - 1.0 - - - - https://albertoromgar.medium.com/openai-has-just-killed-prompt-engineering-with-dall-e-3-13a438a7d36b - 2023-10-06 - monthly - 1.0 - - - - https://ppujari.medium.com/multi-objective-recommender-system-a-need-of-the-hour-82fb61a145f3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/acid-sugar/men-dont-marry-the-woman-they-love-they-marry-the-woman-in-front-of-them-718cac0a7eac - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/10-side-hustles-to-make-extra-money-as-a-software-engineer-a290e66c7ce9 - 2023-10-06 - monthly - 1.0 - - - - https://faun.pub/initialize-mongodb-running-on-a-docker-container-889a43c5668a - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/the-potential-evils-of-code-generation-in-swift-9fcbe495b421 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/pieces-of-a-scalable-ios-app-architecture-7c182f9dcd2c - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-to-create-development-staging-and-production-configs-in-xcode-ec58b2cc1df4 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/an-example-of-a-scalable-ios-project-dce56a256106 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/an-example-of-a-scalable-ios-project-part-2-5c703d41f585 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/toward-a-quantum-transformer-a51566ed42c2 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/enhance-your-node-js-performance-through-clustering-part-1-4cf9cc710774 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@hnasr/network-engineering-doesnt-have-to-be-dry-82bb5b6e0a6a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@hnasr/multi-threaded-backend-at-100-cpu-a6dbd4a94099 - 2023-10-06 - monthly - 1.0 - - - - https://rruntsch.medium.com/how-to-choose-the-best-date-and-time-data-types-for-a-sql-server-database-282a8dad319c - 2023-10-06 - monthly - 1.0 - - - - https://systemdesign101.com/system-design-for-splitwise-38f7a361e265 - 2023-10-06 - monthly - 1.0 - - - - https://themakingofamillionaire.com/5-lessons-i-learned-from-my-millionaire-father-d9d0d66d42f5 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/an-in-depth-look-at-database-indexing-for-performanceand-what-are-the-trade-offs-for-using-them-e2debd4b5c1d - 2023-10-06 - monthly - 1.0 - - - - https://anjalisharmaaa.medium.com/a-step-by-step-guide-to-prepare-and-ace-the-off-campus-placements-95c60b18629f - 2023-10-06 - monthly - 1.0 - - - - https://fongyang.medium.com/upnote-d579029f87f7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/hello-love/how-to-be-a-powerful-attractive-and-charismatic-modern-man-3b2d402f8e9 - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/10-amazing-techniques-for-midjourney-you-probably-didnt-know-yet-78f2ab7c00c0 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/implementing-batch-normalization-in-python-a044b0369567 - 2023-10-06 - monthly - 1.0 - - - - https://markmanson.medium.com/how-to-deal-with-conflict-a-choose-your-own-adventure-guide-f61f755fe3cf - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@erfm1122/20-stunning-midjourney-logo-designs-best-prompt-ideas-37a458b338bc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@yongjin.lee0503/dbt-core-vs-dataform-a-comparative-analysis-for-gcp-bigquery-1a4ce8086faf - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@_mohan/kla-corp-algorithm-engineer-interview-experience-2020-a2508f87ed12 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@abdurrahmanmasood/implementing-star-schema-on-bigquery-943c74e7c8ff - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/pathway-to-data-analysis/beautify-the-powerbi-reports-year-on-year-charts-531ff6650af1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/pathway-to-data-analysis/beautify-the-powerbi-reports-383c1acfcf80 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/replacing-your-word-embeddings-by-contextualized-word-vectors-9508877ad65d - 2023-10-06 - monthly - 1.0 - - - - https://corneacristian.medium.com/top-25-account-takeover-bug-bounty-reports-cd855374be14 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/elmo-contextual-language-embedding-335de2268604 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/pathway-to-data-analysis/top-3-powerbi-dashboard-report-examples-865b4879603f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/chic-look-in-power-bi-with-chiclet-slicer-ad726af94a14 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/setup-for-deep-learning-with-gpu-on-your-local-laptop-3ab29eae68f2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bili%C5%9Fim-hareketi/nas%C4%B1l-daha-az-vergi-%C3%B6derim-1-b2bfe23331ce - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mali-m%C3%BC%C5%9Favir-evren-%C3%B6zmen/nas%C4%B1l-daha-az-vergi-%C3%B6derim-4-9da990a706af - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bili%C5%9Fim-hareketi/nas%C4%B1l-daha-az-vergi-%C3%B6derim-5-ed75663da447 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mali-m%C3%BC%C5%9Favir-evren-%C3%B6zmen/nas%C4%B1l-daha-az-vergi-%C3%B6derim-6-a79880e65dac - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mali-m%C3%BC%C5%9Favir-evren-%C3%B6zmen/nas%C4%B1l-daha-az-vergi-%C3%B6derim-8-52b269f1abce - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mali-m%C3%BC%C5%9Favir-evren-%C3%B6zmen/nas%C4%B1l-daha-az-vergi-%C3%B6derim-9-c71bf3fdc369 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/microsoft-power-bi/beautify-the-powerbi-reports-layout-and-navigation-9940bf15f2c6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/how-product-management-can-drive-the-key-business-metrics-22959619845b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@blueros/how-to-read-medium-articles-for-free-ec1cb2a26fa8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coinmonks/algorithmic-trading-101-from-beginner-to-pro-c435383c74b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coinmonks/introduction-to-algorithmic-trading-algorithmic-trading-101-series-93c61ae95d59 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@edwardenglish/product-manager-math-4-concepts-you-need-to-know-7eafd6e1a96a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@nomadworld/chapter-2-fundamentals-of-trading-algorithmic-trading-101-series-8f0481662eca - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@nomadworld/chapter-3-technical-analysis-algorithmic-trading-101-series-5251434151b6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coinmonks/chapter-15-portfolio-optimization-algorithmic-trading-101-series-37e1360d74d7 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/identifying-drivers-of-spotify-song-popularity-with-causal-ml-934e8347d2aa - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coinmonks/chapter-8-high-frequency-trading-algorithmic-trading-101-series-e9dfb371fa0c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-use-causal-inference-in-day-to-day-analytical-work-part-1-of-2-b5efbdbf8ab0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@mrconnor/harnessing-deep-reinforcement-learning-for-algorithmic-trading-b4c67534b33a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@salonibansal2612/uplift-modelling-a-bridge-between-causal-inference-machine-learning-and-personalization-8396079c1070 - 2023-10-06 - monthly - 1.0 - - - - https://olly-j.medium.com/james-hoffmans-ultimate-pour-over-brew-method-for-one-person-eca2dbb27bbb - 2023-10-06 - monthly - 1.0 - - - - https://dataman-ai.medium.com/reinforcement-learning-with-human-feedback-rlhf-for-algorithmic-trading-86e1c83b0e1d - 2023-10-06 - monthly - 1.0 - - - - https://markmanson.medium.com/9-books-that-explain-how-the-world-works-5b11060feea9 - 2023-10-06 - monthly - 1.0 - - - - https://markmanson.medium.com/why-im-wrong-about-everything-and-so-are-you-6c72c5e2836a - 2023-10-06 - monthly - 1.0 - - - - https://markmanson.medium.com/an-unconventional-guide-to-happiness-debe7599bdd8 - 2023-10-06 - monthly - 1.0 - - - - https://markmanson.medium.com/10-life-lessons-i-learned-from-surviving-my-20s-67a899b6a6f5 - 2023-10-06 - monthly - 1.0 - - - - https://markmanson.medium.com/motivation-what-it-is-how-it-works-and-where-to-find-it-a099c8a39c98 - 2023-10-06 - monthly - 1.0 - - - - https://markmanson.medium.com/how-to-attract-women-982a80d0ecfe - 2023-10-06 - monthly - 1.0 - - - - https://markmanson.medium.com/the-paradox-of-tolerance-340604396ede - 2023-10-06 - monthly - 1.0 - - - - https://markmanson.medium.com/when-to-say-yes-and-how-to-say-no-acc852bb9ded - 2023-10-06 - monthly - 1.0 - - - - https://markmanson.medium.com/why-everyone-on-the-internet-is-wrong-fba19fe9f024 - 2023-10-06 - monthly - 1.0 - - - - https://markmanson.medium.com/why-we-forget-that-most-people-are-good-1b3aa2a2d4d0 - 2023-10-06 - monthly - 1.0 - - - - https://markmanson.medium.com/why-some-relationships-cant-be-fixed-c555ea0c6156 - 2023-10-06 - monthly - 1.0 - - - - https://markmanson.medium.com/happiness-is-the-wrong-question-49f7eb0b27e3 - 2023-10-06 - monthly - 1.0 - - - - https://markmanson.medium.com/when-you-are-your-own-worst-enemy-5a3711e950a7 - 2023-10-06 - monthly - 1.0 - - - - https://markmanson.medium.com/how-to-wage-philosophical-warfare-45c3efc62f94 - 2023-10-06 - monthly - 1.0 - - - - https://markmanson.medium.com/you-are-not-alone-7f0c175286e5 - 2023-10-06 - monthly - 1.0 - - - - https://markmanson.medium.com/why-we-stay-in-bad-relationships-590cb88272ac - 2023-10-06 - monthly - 1.0 - - - - https://markmanson.medium.com/3-tips-to-read-more-books-1f9cf1ff23e - 2023-10-06 - monthly - 1.0 - - - - https://markmanson.medium.com/how-to-make-the-most-of-it-4c142ce22720 - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/coursera-i-just-finished-the-cal-arts-ux-design-specialization-and-this-is-my-100-unsponsored-c4e7ec75ad53 - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/start-your-ux-career-with-these-6-easy-steps-hint-no-you-dont-need-a-freaking-master-s-degree-e59cd0ef8e88 - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/coursera-the-university-of-michigan-user-experience-and-design-specialization-kicked-my-butt-fae7f5aeb889 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/create-phone-number-textfield-with-country-codes-and-flags-in-swiftui-fa3ad981c5f6 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/softmax-activation-function-how-it-actually-works-d292d335bd78 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/basics-of-countvectorizer-e26677900f9c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/simple-lightweight-web-scraping-in-python-67ee3cea10b2 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/chat-gpt3-handle-with-care-8b6634781608 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coinmonks/mark-yusko-predicts-a-bitcoin-price-with-300-billion-after-the-advent-of-the-etf-3939a61ea810 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@mlubbad/the-ultimate-guide-to-gpt-4-parameters-everything-you-need-to-know-about-nlps-game-changer-109b8767855a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/pm101/systems-thinking-in-project-management-807fce01b9c9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/how-i-run-a-5-500-per-month-side-hustle-empire-in-3-hours-a-day-8ce3c97226c1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/the-power-of-personal-knowledge-management-a-journey-from-chaos-to-clarity-c62474001029 - 2023-10-06 - monthly - 1.0 - - - - https://nickwignall.medium.com/4-mindsets-of-highly-disciplined-people-8ed92edacbf3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mind-cafe/there-are-only-two-forces-that-motivate-people-according-to-tony-robbins-cf9bea052293 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@CloudTopG/how-to-install-and-set-up-laravel-nginx-and-mysql-with-docker-compose-on-ubuntu-20-04-291462d7202d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-build-a-model-based-recommendation-system-using-python-surprise-2df3b77ab3e5 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/how-to-set-up-a-local-environment-for-kafka-e6427bde5c20 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/is-star-schema-dead-a14826333de1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/using-monte-carlo-simulation-to-determine-the-optimal-portfolio-of-stocks-d7aabfddd6a1 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-uber-data-scientist-interview-7ba9ca95f4e3 - 2023-10-06 - monthly - 1.0 - - - - https://algo-trading.medium.com/momentum-retracement-system-606d42585998 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/making-a-rts-game-8-boosting-our-selection-feature-unity-c-8552bffd2f8b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/aws-athena-dbt-integration-4e1dce0d97fc - 2023-10-06 - monthly - 1.0 - - - - https://nickwignall.medium.com/4-things-mentally-tough-people-dont-do-76858737bcb6 - 2023-10-06 - monthly - 1.0 - - - - https://nickwignall.medium.com/5-habits-of-emotionally-strong-people-e12d2ef27f65 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/how-to-boost-your-salary-with-these-high-paying-programming-skills-6ad9d3643e3e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/start-cultivating-the-rare-trait-of-deep-kindness-today-c9626b4d0d65 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/best-practices-for-using-abortcontroller-87892b72d07e - 2023-10-06 - monthly - 1.0 - - - - https://nickwignall.medium.com/4-habits-emotionally-mature-people-avoid-7c85b824e616 - 2023-10-06 - monthly - 1.0 - - - - https://iphelix.medium.com/ios-data-interception-b3a393e80c82 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mobile-app-development-publication/android-lifecycle-interview-questions-that-some-got-wrong-926b39b19a61 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/from-technical-project-manager-to-machine-learning-engineer-ecb185c16968 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/erotic-fantasies/sharing-my-husbands-cock-with-my-baby-sister-part-one-fbc35ad48281 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@grdustin/elevate-your-aws-journey-my-experience-as-an-aws-community-builder-1b900f62381 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/erotic-fantasies/sharing-my-husbands-cock-with-my-baby-sister-part-two-4f45146203e7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/erotic-fantasies/sharing-my-husbands-cock-with-my-baby-sister-part-three-a4ed8a47db06 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/purposeful-life/how-self-help-has-created-more-work-for-you-462a0674d2f9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/change-your-mind/move-through-sadness-and-not-away-from-it-c28316194a7f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/erotic-fantasies/sharing-my-husbands-cock-with-my-baby-sister-part-four-1485a58bcf81 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/exceptional-erotica/i-fucked-my-wifes-sister-while-she-was-out-of-town-b058eb920a1b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/build-more-capable-llms-with-retrieval-augmented-generation-99d5f86e9779 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/yardcouch-com/buzzfeed-is-now-dead-and-every-writer-should-be-happy-636105500be3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/erotic-fantasies/my-stepsister-was-dying-to-eat-my-ass-5342b00839d6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/stories-from-heart/these-3-companies-own-everything-in-the-world-and-are-the-reason-for-the-majority-of-our-problems-5d9ae432c057 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/using-python-to-send-telegram-messages-in-3-simple-steps-419a8b5e5e2 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/building-a-color-recognizer-in-python-4783dfc72456 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/writing-a-network-scanner-using-python-a41273baf1e2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@digitalvault.marketing/how-i-earn-1000-per-month-with-crypto-b2972004c33c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@SovereignCrypto/eth-and-btc-options-strategy-update-safest-50x-out-there-60fc169a5670 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-use-dataset-in-tensorflow-c758ef9e4428 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/duolingos-redesign-4-things-they-got-right-1-possible-improvement-acec8af9ec10 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@digitalgiraffes/7-awesome-and-free-ai-tools-you-should-know-43a1630ea409 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@SovereignCrypto/best-bear-market-opportunity-yet-6e0a1ae37bc4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/dall-e2-vs-stable-diffusion-same-prompt-different-results-e795c84adc56 - 2023-10-06 - monthly - 1.0 - - - - https://matt-croak.medium.com/just-because-you-can-afford-the-down-payment-doesnt-mean-you-should-buy-a-house-part-i-fba8a86cdeab - 2023-10-06 - monthly - 1.0 - - - - https://technospace.medium.com/gc-allocation-failures-42c68e8e5e04 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mali-m%C3%BC%C5%9Favir-evren-%C3%B6zmen/nas%C4%B1l-daha-az-vergi-%C3%B6derim-10-2ea6d88260a1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mali-m%C3%BC%C5%9Favir-evren-%C3%B6zmen/%C5%9Firket-kurulu%C5%9Fu-sonras%C4%B1-check-list-f68447306bc4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mali-m%C3%BC%C5%9Favir-evren-%C3%B6zmen/nas%C4%B1l-daha-az-vergi-%C3%B6derim-12-3c54ae2cd2a6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mali-m%C3%BC%C5%9Favir-evren-%C3%B6zmen/nas%C4%B1l-daha-az-vergi-%C3%B6derim-13-2ac2081ecf07 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mali-m%C3%BC%C5%9Favir-evren-%C3%B6zmen/nas%C4%B1l-daha-az-vergi-%C3%B6derim-14-d6284e49068b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mali-m%C3%BC%C5%9Favir-evren-%C3%B6zmen/nas%C4%B1l-daha-az-vergi-%C3%B6derim-15-e1aa9a6821ae - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mali-m%C3%BC%C5%9Favir-evren-%C3%B6zmen/nas%C4%B1l-daha-az-vergi-%C3%B6derim-17-409203106710 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mali-m%C3%BC%C5%9Favir-evren-%C3%B6zmen/nas%C4%B1l-daha-az-vergi-%C3%B6derim-18-3e34d06c2945 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mali-m%C3%BC%C5%9Favir-evren-%C3%B6zmen/nas%C4%B1l-daha-az-vergi-%C3%B6derim-19-73defbaf9244 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mali-m%C3%BC%C5%9Favir-evren-%C3%B6zmen/nas%C4%B1l-daha-az-vergi-%C3%B6derim-20-d74f5f1f29b0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mali-m%C3%BC%C5%9Favir-evren-%C3%B6zmen/nas%C4%B1l-daha-az-vergi-%C3%B6derim-25-9d8cc4d0748a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mali-m%C3%BC%C5%9Favir-evren-%C3%B6zmen/her-%C5%9Firket-sahibinin-bilmesi-gereken-5-basit-vergiden-ka%C3%A7%C4%B1nma-y%C3%B6ntemi-690d652788d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mali-m%C3%BC%C5%9Favir-evren-%C3%B6zmen/nas%C4%B1l-daha-az-vergi-%C3%B6derim-23-8e1a100c24b8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mali-m%C3%BC%C5%9Favir-evren-%C3%B6zmen/nas%C4%B1l-daha-az-vergi-%C3%B6derim-24-6f07b23b95ea - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mali-m%C3%BC%C5%9Favir-evren-%C3%B6zmen/nas%C4%B1l-daha-az-vergi-%C3%B6derim-26-75f1c5e3fe0d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mali-m%C3%BC%C5%9Favir-evren-%C3%B6zmen/rimuut-%C3%BCzerinden-%C3%A7al%C4%B1%C5%9Fanlar-dikkat-e1c5b9b2dfc9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mali-m%C3%BC%C5%9Favir-evren-%C3%B6zmen/nas%C4%B1l-daha-az-vergi-%C3%B6derim-42-578f06b1389 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mali-m%C3%BC%C5%9Favir-evren-%C3%B6zmen/tatil-d%C3%B6nemi-yakla%C5%9F%C4%B1yor-hangi-harcamalar%C4%B1n%C4%B1z-%C3%B6denecek-vergilerinizi-azalt%C4%B1r-58bc06b8bcea - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mali-m%C3%BC%C5%9Favir-evren-%C3%B6zmen/dakikal%C4%B1k-araba-kiralaman%C4%B1n-vergisel-boyutu-nedir-b8c9fe76768f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mali-m%C3%BC%C5%9Favir-evren-%C3%B6zmen/nas%C4%B1l-daha-az-vergi-%C3%B6derim-41-450cb91c6e2d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mali-m%C3%BC%C5%9Favir-evren-%C3%B6zmen/k%C4%B1br%C4%B1sta-kumar-oynay%C4%B1p-kazand%C4%B1m-vergi-%C3%B6deyecek-miyim-5589d456dff0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/sensible-biohacking-transhumanism/what-deltafosb-is-and-why-it-matters-in-solving-addiction-problems-624bbfdcd849 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mali-m%C3%BC%C5%9Favir-evren-%C3%B6zmen/%C5%9Firketinize-demirba%C5%9F-al%C4%B1rken-bilmeniz-gereken-her-%C5%9Fey-f95f010e8c79 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mali-m%C3%BC%C5%9Favir-evren-%C3%B6zmen/%C5%9Firketim-oldu%C4%9Fu-i%CC%87%C3%A7in-hisse-senedi-gelirime-fatura-m%C4%B1-d%C3%BCzenlemem-gerekli-9f80872e4e84 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/the-landscape-of-postgresql-databases-9a38b17e2817 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/how-to-stop-polluting-the-global-environment-using-namespace-in-javascript-1ac65863c895 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jankammerath/how-browsers-work-everything-developers-need-to-know-f58c3560c53d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coinmonks/guide-to-curve-finance-153f34ce693f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@brechtcorbeel/what-is-the-average-iq-of-nobel-laureates-c146c1cba177 - 2023-10-06 - monthly - 1.0 - - - - https://nerdjfpb.medium.com/15-vue-js-project-ideas-beginner-to-expert-with-tutorial-9a315d184a91 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/multinomial-logistic-regression-adb2a76eedcf - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/mastering-the-skills-of-bug-bounty-2201eb6a9f4 - 2023-10-06 - monthly - 1.0 - - - - https://michelleloucadoux.medium.com/how-to-format-your-medium-article-for-the-innovation-287294d1d08c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/3-apps-for-visual-note-taking-in-2023-bd3a76a84745 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/from-zero-to-server-side-rendering-ssr-in-angular-ec0cbd4a0f9a - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/17-pro-javascript-tricks-you-didnt-know-b419c018dd19 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@kyawsawhtoon/log-transformation-purpose-and-interpretation-9444b4b049c9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.muz.li/what-is-design-thinking-and-how-to-use-it-design-councils-framework-cb1f426b4748 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/i-wrote-an-article-a-day-for-950-days-heres-what-happened-aa0b8b2e64d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/how-i-made-16-000-in-july-50a02e4dfdd5 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/es2023-is-here-hurry-up-to-learn-2de85c61f0ae - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/24-powerful-html-attributes-every-senior-web-engineer-should-master-ad8a4df0776e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/better-ways-to-organise-css-properties-9a066e7ded62 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@CGA1123/reducing-rails-memory-usage-by-15-56090b6294bd - 2023-10-06 - monthly - 1.0 - - - - https://therightstuff.medium.com/the-trust-thermocline-explains-how-companies-suddenly-lose-customers-and-employees-2657c9535e6a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/pca-clearly-explained-how-when-why-to-use-it-and-feature-importance-a-guide-in-python-7c274582c37e - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/say-goodbye-to-the-local-development-environment-594e9c2e0c1b - 2023-10-06 - monthly - 1.0 - - - - https://abstarreveld.medium.com/why-you-shouldnt-use-access-tokens-in-your-front-end-any-more-490545665125 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-build-an-llm-from-scratch-8c477768f1f9 - 2023-10-06 - monthly - 1.0 - - - - https://generativeai.pub/graph-of-thoughts-explained-f25b51afefab - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/neovim-for-beginners-fuzzy-file-search-part-1-9df21c0e2c84 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/blankpage/going-viral-6-lessons-from-my-article-that-got-134-000-views-28d42e8ae993 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@kat.anders0n/johnny-depps-lawyer-said-they-sprayed-depp-s-cologne-in-courthouse-toilets-to-wage-psychological-90176cc5ada0 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/background-tasks-for-nlp-a2fa2771b07b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/scanning-all-the-things-with-projectdiscoverys-nuclei-b5ceff93b56e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/brainchronicles/10-amazing-books-that-will-satisfy-your-neuroscience-curiosity-83c09a1e680d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/8-easy-things-you-did-not-know-your-brain-needs-44a1aff51d60 - 2023-10-06 - monthly - 1.0 - - - - https://davisonpro.medium.com/an-advanced-guide-on-setting-up-a-react-and-php-web-app-acaedb21ab3a - 2023-10-06 - monthly - 1.0 - - - - https://ideaswithwings.org/apple-just-silently-wrecked-7-startups-in-less-than-1-hour-5a6fe7ce8ac3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/introduction-hierarchical-clustering-d3066c6b560e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@infinitepassion/what-to-do-to-a-woman-in-bed-so-she-never-leaves-you-371004ecd0f5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-narrative-arc/my-college-roommate-hated-my-guts-6903cddfab60 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@swickbethany2019/ten-things-i-learned-as-a-nude-model-d375275f689e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/practical-growth/are-you-really-asking-too-much-c2f981f56345 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/light-on-math-machine-learning-intuitive-guide-to-latent-dirichlet-allocation-437c81220158 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/practical-growth/relationship-red-flags-67842e332627 - 2023-10-06 - monthly - 1.0 - - - - https://gibsonbiddle.medium.com/10-habits-for-making-wicked-hard-decisions-872fda5eda91 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ryanntk/a-guide-to-installing-chromadb-on-your-local-machine-and-aws-cloud-290a1098fd5d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-program-a-neural-network-f28e3f38e811 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/hello-love/women-say-80-of-men-are-below-average-bab0b8af2606 - 2023-10-06 - monthly - 1.0 - - - - https://moon-walker.medium.com/llm%EC%9D%98-context-window-size%EA%B0%80-%ED%81%AC%EB%8B%A4%EA%B3%A0-%EC%A2%8B%EC%9D%80-%EA%B2%83%EC%9D%BC%EA%B9%8C-57870a3e315e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@philpearl/bad-go-slices-of-pointers-ed3c06b8bb41 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-practical-introduction-to-the-use-of-molecular-fingerprints-in-drug-discovery-7f15021be2b1 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/introducing-reloading-never-re-run-your-python-code-again-to-print-more-details-374bee33473d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/run-docker-in-windows-10-11-wsl-without-docker-desktop-a2a7eb90556d - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/how-to-solve-problems-with-bitwise-operators-in-swift-90c370502ece - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@josiassena/using-the-android-keystore-system-to-store-sensitive-information-3a56175a454b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-post-grad-survival-guide/lifes-success-is-about-making-hard-choices-here-s-how-to-do-it-fed9c1906243 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/getting-started-with-amazon-mq-b14fff70fac4 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/uikit-mvvm-combine-912c80c02262 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@arkady.zagdan/how-to-dynamically-change-the-date-frequency-across-all-your-charts-in-the-looker-studio-dashboard-4ca823af23bd - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/writing-neovim-plugins-a-beginner-guide-part-i-e169d5fd1a58 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-to-safely-work-with-nested-objects-in-javascript-aed39fb8bad2 - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/writing-neovim-plugins-a-beginner-guide-part-2-c1afa4a7f1b4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/how-to-create-a-fastapi-uvicorn-server-windows-service-af41f075dabf - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/deploy-fastapi-with-hypercorn-http-2-asgi-8cfc304e9e7a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/the-6-easiest-and-most-effective-time-management-strategies-3e089a545eb - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-three-decoding-methods-for-nlp-23ca59cb1e9d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/say-goodbye-to-designers-discover-6-ai-tools-that-make-design-effortless-fa5dcdc6dbf8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/double-pointer/list-of-all-the-courses-on-educative-io-9532f08344fe - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/inverse-reinforcement-learning-6453b7cdc90d - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/neovim-for-beginners-cheatsheet-and-coding-assistant-137d5a15c934 - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/neovim-101-coding-assistant-1df31c63913e - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/neovim-101-plugin-development-using-lua-9deb02ca4570 - 2023-10-06 - monthly - 1.0 - - - - https://alpha2phi.medium.com/faster-neovim-plugin-development-with-plenary-nvim-e5ba8dcd12a3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-ascent/derek-sivers-20-paradoxical-truths-for-a-good-life-3156553f0aea - 2023-10-06 - monthly - 1.0 - - - - https://eand.co/how-donald-trump-failed-america-3eb179822462 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/aiguys/attention-u-net-resunet-many-more-65709b90ac8b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/ocr-free-document-data-extraction-with-transformers-1-2-b5a826bc2ac3 - 2023-10-06 - monthly - 1.0 - - - - https://zora.medium.com/why-the-friends-vs-living-single-twitter-beef-really-matters-ce54d9559457 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/fearless-she-wrote/lily-james-didnt-cheat-by-herself-cf4742aae15a - 2023-10-06 - monthly - 1.0 - - - - https://mattthenomad.medium.com/how-to-eliminate-anxiety-in-four-minutes-4bf293f5fc85 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/ocr-free-document-data-extraction-with-transformers-2-2-38ce26f41951 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/chapters-interludes/how-to-help-others-and-yourself-conquer-the-stressors-of-life-84f903c1ab2d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@meditateawake/just-for-today-the-science-behind-present-moment-awareness-5adca735a9ca - 2023-10-06 - monthly - 1.0 - - - - https://forge.medium.com/a-3-part-exercise-to-reconnect-with-your-values-4e5ef09c34de - 2023-10-06 - monthly - 1.0 - - - - https://coronavirus.medium.com/why-herd-immunity-is-a-bad-public-health-policy-f9a91e409625 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/microsoftazure/recommendation-systems-enhanced-by-llms-fe1fc8e23a58 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/effective-data-augmentation-for-ocr-8013080aa9fa - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/40-midjourney-prompts-to-create-stunning-packaging-design-388b1f120f0d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/hidden-markov-model-implemented-from-scratch-72865bda430e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ignacio.de.gregorio.noblejas/ai-more-impressive-than-chatgpt-4cc9cf343185 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/how-to-create-a-configurable-net-project-template-2b78c8d7c8e0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/flm-1o1b-929eef448e06 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/mlops-mastering-machine-learning-deployment-an-intro-to-docker-kubernetes-helm-and-modern-web-b14dd140a9bf - 2023-10-06 - monthly - 1.0 - - - - https://joets.medium.com/take-beautiful-screenshots-of-your-code-in-vs-code-88a68864dee - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/gpt-vs-bert-which-is-better-2f1cf92af21a - 2023-10-06 - monthly - 1.0 - - - - https://makinhs.medium.com/an-introduction-to-apollo-federation-in-nestjs-e513327c1f9c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/intro-to-gaussian-process-regression-14f7c647d74d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/customize-your-jupyter-notebook-theme-in-2-lines-of-code-fc726cea1513 - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/how-to-quickly-build-a-semantic-search-system-with-txtai-and-weaviate-fd4084e93aaa - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-ultimate-guide-to-training-bert-from-scratch-prepare-the-dataset-beaae6febfd5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/ios-share-extension-swift-5-1-1606263746b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/nlnetlabs/privacy-using-dns-over-tls-with-the-new-quad9-dns-service-1ff2d2b687c5 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/top-3-swift-animations-libraries-for-your-ios-app-4fab9503d056 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/gender-bias-word-embeddings-76d9806a0e17 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/dataman-in-ai/explain-your-model-with-lime-5a1a5867b423 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/coco-data-format-for-object-detection-a4c5eaf518c5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/a-lecture-note-on-random-forest-gradient-boosting-and-regularization-834fc9a7fa52 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/dataman-in-ai/the-shap-with-more-elegant-charts-bc3e73fa1c0c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@Lost_Fresco/linea-potential-airdrop-83fcebe66ce - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mind-cafe/if-you-want-to-know-if-someone-is-worth-your-time-use-the-ted-lasso-curiosity-rule-23311d1ddce3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/neurodiversified/dsm-5-criteria-for-adhd-ca07985d18fc - 2023-10-06 - monthly - 1.0 - - - - https://writingcooperative.com/why-you-should-work-on-a-million-drafts-at-once-d88b687e222b - 2023-10-06 - monthly - 1.0 - - - - https://tedbauer.medium.com/now-women-are-pissed-off-that-we-discuss-male-loneliness-hmmm-e51cb4d241a3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-secret-to-improved-nlp-an-in-depth-look-at-the-nn-embedding-layer-in-pytorch-6e901e193e16 - 2023-10-06 - monthly - 1.0 - - - - https://tedbauer.medium.com/marriage-is-a-form-of-negligence-8173043d3990 - 2023-10-06 - monthly - 1.0 - - - - https://tedbauer.medium.com/marriage-has-declined-because-the-sex-for-stability-model-is-outdated-cb29ff83e34c - 2023-10-06 - monthly - 1.0 - - - - https://ganeshprasad227.medium.com/key-concepts-and-terms-of-system-design-interview-notes-9bf882cf3730 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-complete-guide-to-the-system-design-interview-ba118f48bdfc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/erotic-fantasies/my-dads-ex-girlfriend-turns-out-to-be-a-three-hole-slut-c5f6b60c7fa5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/jonathans-musings/ab-testing-101-5576de6466b - 2023-10-06 - monthly - 1.0 - - - - https://myerotica.com/on-the-edge-and-begging-for-release-10a13303c540 - 2023-10-06 - monthly - 1.0 - - - - https://myerotica.com/getting-caught-by-my-best-friends-brother-12088d729640 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/how-to-create-structure-a-complex-tkinter-application-2022-26e4a9907a6d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/optimizing-llms-with-c-and-running-gpt-lama-whisper-on-your-laptop-460c8bdd047e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/building-an-ai-powered-language-learning-app-learning-from-two-ai-chatting-6db7f9b0d7cd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/voice-tech-podcast/making-a-chatbot-that-teaches-languages-19b0cbcddd23 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/implementing-a-file-watcher-in-python-73f8356a425d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/comparing-sh-bash-ksh-and-zsh-speed-82a72bbc20ed - 2023-10-06 - monthly - 1.0 - - - - https://artgor.medium.com/paper-review-fast-segment-anything-912d198557ca - 2023-10-06 - monthly - 1.0 - - - - https://myerotica.com/our-newlywed-neighbours-needed-a-swap-9fe4164f6bd - 2023-10-06 - monthly - 1.0 - - - - https://karenbanes.medium.com/how-did-the-double-shift-somehow-become-the-triple-burden-e15e9ba5397b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@andkemal/optimizing-kotlin-best-practices-for-high-performing-apps-df144493485a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/attn-illustrated-attention-5ec4ad276ee3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@cndro/how-to-install-airflow-with-docker-on-ubuntu-b295463aea43 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/this-is-what-you-need-to-know-to-build-an-mlops-end-to-end-architecture-c0be1deaa3ce - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/tabu-search-simply-explained-ee2852339d78 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/database-101-row-based-vs-column-based-databases-7c48ea3cf7a0 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/interviewer-can-sesstionstorage-share-data-between-multiple-tabs-a8d850328e89 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/django-implementing-star-rating-e1deff03bb1c - 2023-10-06 - monthly - 1.0 - - - - https://latteandcode.medium.com/cap%C3%ADtulo-5-eventos-de-dominio-6743439a72bd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/fixmatch-semi-supervised-learning-method-that-can-be-learned-even-if-there-is-only-one-labeled-e7e1b37e8935 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/hands-on-setup-your-data-environment-with-docker-dca629607148 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/towards-data-engineering/understanding-sync-vs-async-methods-in-fast-api-fa4aec9dd233 - 2023-10-06 - monthly - 1.0 - - - - https://ashutosh-bitmesra.medium.com/oltp-and-olap-what-are-the-differences-a6e21f25bfe0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/intuitionmath/what-is-column-space-with-a-machine-learning-example-8f8a8d4ec6c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@p.yun1994/p-np-np-hard-and-np-complete-problems-fe679bd1cf9c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-crowdlinker-chronicle/best-way-to-structure-your-directory-code-nestjs-a06c7a641401 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/kong-api-gateway-zero-to-production-5b8431495ee - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@CompSciUser/simplify-your-cuda-cudnn-experience-using-docker-an-install-guide-for-ubuntu-20-04-5782df0b890d - 2023-10-06 - monthly - 1.0 - - - - https://artificialcorner.com/mastering-llama-2-a-comprehensive-guide-to-fine-tuning-in-google-colab-bedfcc692b7f - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/top-10-ai-tools-to-post-edit-your-midjourney-images-c3ee17724f19 - 2023-10-06 - monthly - 1.0 - - - - https://elemental.medium.com/why-youre-obsessed-with-sea-shanties-5aea2a6572de - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bigger-picture/how-did-america-get-so-polarized-b5904cae94be - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/conversational-agent-a-more-assertive-form-of-chatbots-de6f1c8da8dd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/how-to-understand-linear-independence-linear-algebra-8bab1d918509 - 2023-10-06 - monthly - 1.0 - - - - https://sudalo.medium.com/tofflers-future-shock-a-prophetic-vision-of-the-future-ee366d88aca - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-to-create-react-infinite-slider-22b76cbd7a9 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/shap-for-categorical-features-7c63e6a554ea - 2023-10-06 - monthly - 1.0 - - - - https://mcode-app.medium.com/modularization-898d5bc63617 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/scuzzbucket/waiting-to-see-myself-c0fc0f7dabdd - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/zettelkastens-3-note-taking-levels-help-you-harvest-your-thoughts-58326840f969 - 2023-10-06 - monthly - 1.0 - - - - https://shalithasuranga.medium.com/here-is-my-minimalist-linux-configuration-that-i-will-use-forever-ad691310ef2b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/jinja-sql-%EF%B8%8F-7e4dff8d8778 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/embeds/how-to-embed-a-youtube-video-52e8aecd7fd - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/15-practical-exercises-help-you-master-java-stream-api-3f9c86b1cf82 - 2023-10-06 - monthly - 1.0 - - - - https://wesodonnell.medium.com/biden-just-offered-ukraine-a-small-number-of-atacms-502a197fa6a2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/scribe/the-forest-of-the-deep-c6442be63ebd - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-elephant-in-the-room-how-to-write-pyspark-unit-tests-a5073acabc34 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/what-is-saga-pattern-in-microservice-architecture-which-problem-does-it-solve-de45d7d01d2b - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/how-to-journal-to-structure-your-thoughts-and-gain-clarity-on-what-you-desire-799a26e494a1 - 2023-10-06 - monthly - 1.0 - - - - https://clivethompson.medium.com/the-paperless-office-is-finally-arriving-92ce060e6070 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/invisible-illness/a-researcher-studied-the-most-common-last-words-of-suicidal-men-e3b5e5c19c9c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/the-more-i-use-ios-17s-standby-the-more-i-dislike-it-614ebd715e9a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/move-me-poetry/the-choice-of-the-black-forest-7e6e19888b85 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-scarlett-letter/confessions-i-watched-you-breed-my-sister-515c25f92a52 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/scribe/hold-fast-to-the-vision-of-the-bright-new-world-7d85f1ca3789 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@theminimaljess/free-coding-bootcamp-everything-you-need-to-know-to-get-started-3f1053136d9e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/nerd-for-tech/flutter-state-management-with-changenotifier-6630f54763f7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/my-learning-journal/the-complete-to-do-app-guide-2023-find-your-dream-task-planner-app-32ce56e5b463 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-scarlett-letter/my-brother-in-law-walked-in-on-me-b025c7ba96b8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/weekly-webtips/vs-code-extensions-for-react-native-developers-c7b9c3dfa850 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-scarlett-letter/my-tongue-tickled-and-teased-him-until-i-swallowed-every-drop-82197d2648ab - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/50-key-spring-boot-interview-questions-for-programmers-and-software-engineers-in-2023-f56da1d05b16 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/kubernetes-practical-intro-for-data-scientists-739c263efa06 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/mlops-dockers-and-kubernetes-essentials-for-a-data-scientist-8bc7b5866957 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/mlops-end-to-end-machine-learning-pipeline-cicd-1a7907698a8e - 2023-10-06 - monthly - 1.0 - - - - https://ununu.medium.com/linux-minimalism-with-fluxbox-26549006f613 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@Land2Cyber/bug-bounty-hunting-as-a-career-opportunities-and-growth-potential-747c9767eda8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-scarlett-letter/affairs-of-a-housewife-part-1-38970a65e305 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/50-spring-boot-interview-questions-and-answers-for-java-programmers-7a850437a9e6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/10-object-oriented-design-patterns-every-programmer-should-learn-design-pattern-cheat-sheet-23dfdcc5ebe8 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/masked-language-modelling-with-bert-7d49793e5d2c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/10-tips-and-best-practices-for-creating-microservices-with-spring-cloud-and-java-86b2b635e50f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/18-advanced-microservices-interview-questions-for-experienced-developers-challenges-and-insights-58c6e5b5911f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-scarlett-letter/affairs-of-a-housewife-part-2-de549002ea2b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/top-20-spring-framework-and-spring-boot-scenario-based-questions-for-java-developers-d84c440864bf - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bb-tutorials-and-thoughts/angular-how-to-load-settings-data-from-server-before-initializing-an-app-78ea206818ee - 2023-10-06 - monthly - 1.0 - - - - https://elemental.medium.com/how-to-hack-your-brain-with-sound-166371c85a66 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/data-structures-in-c-part-1-b64613b0138d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-scarlett-letter/affairs-of-a-housewife-part-3-8bb69a7e1239 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-analyse-your-time-series-model-using-residuals-f980f597332e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-scarlett-letter/affairs-of-a-housewife-part-4-a6b641f3524b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-scarlett-letter/affairs-of-a-housewife-part-5-345f9a1a5a52 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-scarlett-letter/affairs-of-a-housewife-part-6-8fcb7f90aa22 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-scarlett-letter/affairs-of-a-housewife-part-7-1f8d55a348c2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/brlink/how-to-create-a-python-layer-in-aws-lambda-287235215b79 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-scarlett-letter/affairs-of-a-housewife-part-8-e1a38a52b180 - 2023-10-06 - monthly - 1.0 - - - - https://blog.healwithsumit.com/i-hypnotized-a-narcissist-and-this-is-what-i-found-dc5efeb90be8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-scarlett-letter/affairs-of-a-housewife-part-9-98e6d0cf0ce1 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/complete-architectural-details-of-all-efficientnet-models-5fd5b736142 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@sharifuli/running-spark-on-local-machine-c38957d022f4 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/design-deserves-more-respect-7a6302039be0 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/introduction-to-asyncio-57a5a1290ce0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/double-pointer/system-design-interview-dropbox-or-a-similar-file-storage-sharing-service-google-drive-34912a4c1c21 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/a-simple-shop-system-for-a-unity-2d-game-part-2-ui-mechanics-8e68c535c431 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@avra42/build-your-own-chatbot-with-openai-gpt-3-and-streamlit-6f1330876846 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/a-simple-shop-system-for-a-unity-2d-game-part-3-game-mechanics-5bd674a33287 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/introduction-to-dvc-data-version-control-tool-for-machine-learning-projects-7cb49c229fe0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@FrontendJirachi/how-to-ace-your-frontend-system-design-42c7b357416b - 2023-10-06 - monthly - 1.0 - - - - https://wire.insiderfinance.io/unlocking-more-market-profits-achieving-over-75-win-rate-with-the-volatility-with-bb-strategy-ef4c0a83ec10 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-detect-seasonality-outliers-and-changepoints-in-your-time-series-5d0901498cff - 2023-10-06 - monthly - 1.0 - - - - https://aschilken.medium.com/experiments-with-the-new-riverpod-2-0-notifier-d65bc2c51a57 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lydtech-consulting/kafka-consumer-retry-646aa5aad2e4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/asana-design/cause-for-celebration-dd4cfbb01fa0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tobiathanm/moral-foundations-theory-and-u-s-public-discourse-in-2020-886ab26e9e8b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/practical-technique-for-filling-missing-values-in-a-data-set-f8d541492b1f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/6-different-ways-to-compensate-for-missing-values-data-imputation-with-examples-6022d9ca0779 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/mermaid-create-charts-and-diagrams-with-markdown-88a9e639ab14 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/how-to-create-an-svg-element-with-vanilla-javascript-a6b140745196 - 2023-10-06 - monthly - 1.0 - - - - https://elemental.medium.com/the-bizarre-and-racist-history-of-the-bmi-7d8dc2aa33bb - 2023-10-06 - monthly - 1.0 - - - - https://danielle-l-gruber.medium.com/dead-head-or-dan-fan-whos-the-bigger-asshole-1f9b85018a6 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/causal-python-five-novel-causal-ideas-at-neurips-2023-13bb68c5ed56 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-connect-to-gcp-cloud-sql-with-cloud-sql-auth-proxy-in-docker-99bdf810c498 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@twothirdsmath/5-great-resources-to-help-you-write-better-medium-articles-4a1fbcda3634 - 2023-10-06 - monthly - 1.0 - - - - https://alexandrev.medium.com/prometheus-concepts-servicemonitor-and-podmonitor-8110ce904908 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-complete-guide-to-recommender-system-tutorial-with-sklearn-surprise-keras-recommender-5e52e8ceace1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@data.dev.backyard/ultimate-machine-learning-cheatsheet-part-2-classical-ml-algorithms-e71e610cb8aa - 2023-10-06 - monthly - 1.0 - - - - https://federicabenacquista.medium.com/localizing-an-ios-app-programmatically-made-easy-526f19f664d5 - 2023-10-06 - monthly - 1.0 - - - - https://bettermarketing.pub/amazon-accidentally-sent-out-their-email-template-33e6ecbc0875 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/4-web-scraping-projects-that-will-help-automate-your-life-6c6d43aefeb5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/jane-austens-wastebasket/alternative-education-programs-from-classic-lit-c669c5e1ad6 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/ai-music-source-separation-how-it-works-and-why-it-is-so-hard-187852e54752 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/yolov4-in-google-colab-train-your-custom-dataset-traffic-signs-with-ease-3243ca91c81d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-create-an-answer-from-a-question-with-dpr-d76e29cc5d60 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coinmonks/how-to-make-1000-with-zksync-airdrop-complete-updated-guide-for-april-2023-40c3853998f8 - 2023-10-06 - monthly - 1.0 - - - - https://aaweg-i.medium.com/pca-vs-t-sne-dimensionality-reduction-techniques-fdd7908973a4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ramkunwarboo/set-up-apache-airflow-on-ubuntu-22-04-20-04-using-docker-image-2dc56aa75dce - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/should-you-take-the-google-data-analytics-certification-fc02304cec8c - 2023-10-06 - monthly - 1.0 - - - - https://rashidesai2424.medium.com/10-lessons-ive-learned-working-as-a-healthcare-data-analyst-1b0e6fbb3cf0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@viratpatel75/the-future-of-data-analyst-jobs-world-economic-forum-report-bcefc61f478 - 2023-10-06 - monthly - 1.0 - - - - https://iamalexmathers.medium.com/9-curious-little-tricks-to-create-an-insanely-unfair-advantage-in-your-life-dcbde769367d - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/how-to-setup-chatgpt-in-fastapi-and-display-the-conversation-in-reactjs-5d1ce7c7a288 - 2023-10-06 - monthly - 1.0 - - - - https://faun.pub/building-a-multi-region-kubernetes-worker-nodes-cluster-with-tailscale-vpn-646f6767bda6 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-run-apache-airflow-as-daemon-using-linux-systemd-63a1d85f9702 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@josiah.alen.brown/building-a-react-tailwindcss-project-with-vite-and-docker-664cb82d02f8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/9-mac-apps-i-rely-on-every-single-week-80074485a9f6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/python-with-docker-compose-fastapi-part-2-88e164d6ef86 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coders-mojo/day-19-of-system-design-series-system-design-important-terms-45002fbbb789 - 2023-10-06 - monthly - 1.0 - - - - https://wire.insiderfinance.io/how-to-trade-without-indicators-a7ef71f84ffe - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@foolproofoptions/how-i-turned-10-437-into-111-669-in-13-months-trading-options-ce9bfd4d5802 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/why-you-should-learn-machine-learning-engineering-and-not-data-science-e616141ea866 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/in-fitness-and-in-health/how-i-boosted-my-metabolism-from-1-700-to-2-200-calories-day-aa5b5b9fb024 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@junxie2/kubernetes-statefulset-for-db-applications-7fd186c6ccb9 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/workflow-orchestration-vs-data-orchestration-are-those-different-a661c46d2e88 - 2023-10-06 - monthly - 1.0 - - - - https://react.thisweekin.io/react-weekly-issue-98-c05606bbe141 - 2023-10-06 - monthly - 1.0 - - - - https://nick-nolan.medium.com/heres-how-73-experts-shortened-their-learning-curve-f3cdce00af75 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/team-gpt-simulating-multi-agent-collaboration-with-role-playing-prompts-7f94304d71be - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/can-you-learn-machine-learning-in-a-year-6edf66623121 - 2023-10-06 - monthly - 1.0 - - - - https://uxmovement.medium.com/10-design-tips-for-a-better-data-table-interface-8d6705e56be2 - 2023-10-06 - monthly - 1.0 - - - - https://uxmovement.medium.com/the-best-filter-ui-design-for-large-scale-apps-45921e823f38 - 2023-10-06 - monthly - 1.0 - - - - https://uxmovement.medium.com/a-guide-to-designing-better-filter-ui-components-8091ff975115 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@exolith/automated-crypto-trading-data-retrieval-made-easy-76fa1813934 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/7-jetbrains-ide-themes-to-make-your-life-beautiful-8b66294cd038 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/exploring-snowflake-and-streamlit-with-llamaindex-text-to-sql-f66fec6e321b - 2023-10-06 - monthly - 1.0 - - - - https://fischerbach.medium.com/how-to-create-online-survey-for-free-with-surveyjs-and-google-sheets-d9a782d0f458 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/tech-pulse/500k-offer-from-square-block-senior-software-engineer-interview-2022-ea5f2843e377 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/udemy-engineering/understanding-k-means-clustering-and-kernel-methods-afad4eec3c11 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-programmer/kubernetes-fundamentals-for-absolute-beginners-architecture-components-1f7cda8ea536 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/dzerolabs/turbocharge-argocd-with-app-of-apps-pattern-and-kustomized-helm-ea4993190e7c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ranrubin/a-robust-implementation-of-argocds-app-of-apps-pattern-97f8071e0de - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/your-everyday-cheatsheet-for-pythons-matplotlib-c03345ca390d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-collection-of-advanced-data-visualization-in-matplotlib-and-seaborn-f08136172e14 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/a-beginners-guide-to-analysing-time-and-space-complexity-31e1677f5f5b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@manuelmourato25/elk-stack-alerting-how-to-monitor-your-business-and-infrastructure-data-part-one-a4a1c3427745 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@BerryTips.Org/6-ways-to-use-green-tea-to-depuff-your-eyes-cb20aeb0f35 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@DrPsychMom/men-here-are-9-things-that-women-really-think-about-all-day-a18f679b50e5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/how-to-become-a-senior-backend-developer-and-beyond-846e8a8ae4a0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jonathacz99/guess-what-youre-probably-not-the-oral-sex-pro-you-think-you-are-fff3b1e2cd83 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jesum/optimizing-rest-api-performance-2f554d5bfef - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-implement-hierarchical-clustering-for-direct-marketing-campaigns-with-python-code-ef897f52d1c5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@WriteupsTHM_HTB_CTF/weaponizing-vulnerabilities-tryhackme-b82449606952 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/11-microservice-best-practices-for-building-scalable-and-resilient-applications-1a19feb46f0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/exceptional-erotica/my-wife-yearned-for-a-good-gangbang-part-1-6c8ab52934e5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/how-to-learn-spring-boot-and-microservices-road-map-series-32c2e246f1a4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/erotic-fantasies/playing-with-the-piano-teacher-c9f54b0440a0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/rungo/everything-you-need-to-know-about-packages-in-go-b8bac62b74cc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/deploying-click-stream-data-pipelines-on-aws-1e2b5d38b8b9 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/make-beautiful-and-useful-spaghetti-plots-with-python-ec4269d7e8c9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@nawalalansaari/achieve-your-goals-using-the-woop-method-206a6d9fef30 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/beyond-bar-charts-data-with-sankey-circular-packing-and-network-graphs-fd1d50478b68 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/predicting-used-car-prices-with-machine-learning-techniques-8a9d8313952 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/stop-hardcoding-your-unit-tests-e6643dfd254b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/grief-book-club/the-book-of-life-is-long-and-boring-d521e478a8dc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@matt_middlo/after-all-these-years-the-complete-story-of-how-i-lost-my-eye-not-just-the-gory-ending-3950844a8d43 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/can-you-call-yourself-a-senior-developer-a-comprehensive-list-bfb839267bb0 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/a-complete-guide-to-node-js-logging-1ba70a4a346d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/do-you-know-about-microservices-and-their-design-patterns-e8d7c8193dfe - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/rungo/working-in-go-workspace-3b0576e0534a - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/creating-your-first-docker-application-b0ce40ac67d1 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/a-beginners-guide-to-deploying-a-docker-application-to-production-using-docker-compose-de1feccd2893 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/how-to-choose-a-programming-language-to-learn-4b5bc66114cc - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-create-a-data-quality-framework-6887dea268ae - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/btech-engineering/api-gateway-with-kong-f4077a5b265a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@champsuvadeep/should-organizations-go-for-unity-catalog-or-purview-896bcf54511e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@laners.org/what-is-kong-api-gateway-9bdebd0426e1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/tri-petch-digital/kong-api-gateway-101-ac367f6cfffe - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/obsidian-plugins-review-8-2e2bc5166623 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/technology-hits/obsidian-plugins-review-9-c30347e1f3c0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/jspoint/a-beginners-guide-to-creating-desktop-applications-using-electron-824da5665047 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/top-6-reasons-to-hate-tailwind-css-8009ea96e300 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/9-visualizations-that-catch-more-attention-than-a-bar-chart-72d3aeb2e091 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/obsidian-plugins-review-20-cee0eabb4fa5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/obsidian-plugins-review-21-9b7e2eb97a55 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-optimization-behind-svm-primal-and-dual-form-5cca1b052f45 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/obsidian-plugins-review-22-8c12f79b6b29 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/coordinating-goroutines-errgroup-c78bb5d80232 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/lock-free-stacks-are-even-cooler-in-kotlin-5ccccb37bae0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mind-cafe/physicist-claims-sagrada-familia-is-a-portal-to-interstellar-space-18744d5fdad2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/a-bit-of-qubit/spooky-computers-at-cern-c08f8756444 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/data-preprocessing-for-machine-learning-in-python-2d465f83f18c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-quantum-enhanced-lstm-layer-38a8c135dbfa - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/cleansoftware/swift-how-to-create-a-timer-in-combine-43192dab4d3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/visualizing-svm-with-python-4b4b238a7a92 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/7-keystone-habits-to-rebuild-your-life-into-something-magical-c4db469d1174 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/heres-why-people-aren-t-reading-your-articles-89ab6631351 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/do-you-know-about-the-12-factor-app-in-microservices-architecture-50bd34551bd8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@redeaddiscolll/forecasting-stock-prices-using-textual-data-and-time-series-analysis-a-hybrid-approach-499f7a62ef13 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/the-2018-devops-roadmap-31588d8670cb - 2023-10-06 - monthly - 1.0 - - - - https://abdulazizalghannami.medium.com/from-tossing-coins-to-predicting-stock-prices-dca55f5bceed - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/pythons-inspect-module-how-to-save-time-and-effort-in-your-next-python-project-8f2d269b8ed - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/my-aws-devops-dop-c01-professional-exam-experience-410ae88b622a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@roy-pstr/fastapi-server-errors-and-logs-take-back-control-696405437983 - 2023-10-06 - monthly - 1.0 - - - - https://blog.det.life/data-engineering-3bfd2e55ae79 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/discovering-the-magic-of-chatgpts-typewriter-reply-animation-b2a751db784a - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/maximize-your-trading-potential-using-this-powerful-indicator-ee63b502214b - 2023-10-06 - monthly - 1.0 - - - - https://fanfare.pub/my-top-5-pixar-films-now-that-im-a-parent-127be5174063 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/fundamentalised/embrace-digital-minimalism-to-unleash-your-productivity-fundamentalised-001-4244c654ba32 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/in-12-minutes-stocks-analysis-with-pandas-and-scikit-learn-a8d8a7b50ee7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/ios-swift-uicollectionview-with-horizontal-pagination-13ba1e4d21ef - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/building-a-modern-web-app-without-frameworks-classes-components-inheritance-1bfd314fc582 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/motionlayout-collapsing-toolbar-d0ce8dd874b6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-erudite-elders/russias-military-mirage-crumbles-in-ukraine-bd0d5d7eaf46 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/how-to-upload-and-serve-data-using-amazon-cloudfront-and-amazon-s3-in-node-js-dda06213e9a1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swift2go/declarative-uicollectionview-list-header-and-footer-bd49d4a832b5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/nerd-for-tech/wireguard-vpn-monitoring-alerting-e1e1d1eaaa4e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/upskilling/data-visualization-part-7-correlations-differentiation-and-linear-regression-d1474bd2f3f2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-riff/a-strong-opinion-loosely-held-the-case-for-a-triumphant-return-to-vinyl-a50e17375db4 - 2023-10-06 - monthly - 1.0 - - - - https://el3um4s.medium.com/how-to-add-google-maps-to-arcgis-pro-ecf2f6c15c79 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/3-ways-to-reduce-distraction-in-obsidian-95e188194bec - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/machine-learning-algorithms-from-start-to-finish-in-python-svm-d9ff9b48fd1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/predict/feature-engineering-for-stock-price-movement-54669d4a7efc - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/machine-learning-and-signal-processing-103281d27c4b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-riff/the-best-time-to-go-to-the-record-store-is-when-you-arent-really-looking-for-anything-867a0f4808f9 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-definitive-explanation-to-hinge-loss-for-support-vector-machines-ab6d8d3178f1 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/the-ultimate-guide-to-midjourney-v5-2-with-images-prompts-5bc536e04470 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/how-to-test-the-timer-publisher-in-combine-swift-ed5cf0190402 - 2023-10-06 - monthly - 1.0 - - - - https://gmusumeci.medium.com/how-to-create-route-53-records-from-aws-cross-accounts-with-terraform-ef242528d606 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/rungo/introduction-to-go-programming-language-golang-89d16ca72bbf - 2023-10-06 - monthly - 1.0 - - - - https://infosecwriteups.com/350-xss-in-15-minutes-dcb74ad93d5f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/awesome-cloud/aws-vpc-route-table-overview-intro-getting-started-guide-5b5d65ec875f - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/how-to-create-a-doc-chatbot-that-learns-everything-for-you-in-15-minutes-364fef481307 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swift-productions/ios-start-a-project-without-storyboard-xcode-12-253d785af5e7 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/dont-start-your-data-science-journey-without-these-5-must-do-steps-from-a-spotify-data-scientist-c9cec11fd1b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/top-10-resources-to-become-a-data-scientist-in-2020-99a315194701 - 2023-10-06 - monthly - 1.0 - - - - https://michalmalewicz.medium.com/duck-your-figma-workflow-33afaefb4c8a - 2023-10-06 - monthly - 1.0 - - - - https://aaweg-i.medium.com/a-comprehensive-guide-to-anova-analysis-and-its-applications-e2b55b487643 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/grammofy/handling-complex-json-schemas-in-python-9eacc04a60cf - 2023-10-06 - monthly - 1.0 - - - - https://wilhawes.medium.com/the-rise-of-the-terminally-online-digital-subjectivity-and-simulation-of-the-social-465545aa59eb - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/react-native-safely-passing-callable-param-with-react-navigation-156124122747 - 2023-10-06 - monthly - 1.0 - - - - https://twilightdema-14017.medium.com/coding-with-pytorch-in-android-phone-termux-fb07b5aa772f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/building-rnn-lstm-and-gru-for-time-series-using-pytorch-a46e5b094e7b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/improve-your-sql-with-these-templates-for-formatting-and-documentation-f090a3259c89 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/importing-exporting-libraries-in-typescript-80c9869b8eae - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/enjoy-algorithm/pre-processing-of-time-series-data-c50f8a3e7a98 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/avi-parshan-studios/cracking-wireds-paywall-in-two-seconds-fb246514aec2 - 2023-10-06 - monthly - 1.0 - - - - https://amy-blankenship.medium.com/how-i-found-a-new-tech-job-in-3-months-ed359baf2dba - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/how-to-handle-date-and-time-columns-in-python-feature-engineering-machine-learning-254e45a031ae - 2023-10-06 - monthly - 1.0 - - - - https://jonathan-hui.medium.com/rl-reinforcement-learning-algorithms-comparison-76df90f180cf - 2023-10-06 - monthly - 1.0 - - - - https://rajeshbudhiraja5.medium.com/tipkit-with-swiftui-part-1-23d4b33c06ec - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/how-to-code-like-a-stoic-2c7866d333e5 - 2023-10-06 - monthly - 1.0 - - - - https://tnmthai.medium.com/creating-an-arcgis-toolbox-for-python-scripts-f7570d24ebe6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/trading-stocks-using-bollinger-bands-keltner-channel-and-rsi-in-python-980e87e8109d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/itech-publication/how-to-create-a-web-map-in-arcgis-online-7c44e1f01694 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@techynilesh/linear-regression-explained-in-less-than-5-minutes-5f90a26a33a8 - 2023-10-06 - monthly - 1.0 - - - - https://pub.towardsai.net/how-to-detect-outliers-using-visualization-tools-and-statistical-methods-f475b6d99849 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/temporal-difference-learning-and-the-importance-of-exploration-an-illustrated-guide-5f9c3371413a - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/mathematics-of-music-in-python-b7d838c84f72 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/google-cloud/how-to-reduce-your-ml-model-inference-costs-on-google-cloud-e3d5e043980f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/cracking-open-the-openai-python-api-230e4cae7971 - 2023-10-06 - monthly - 1.0 - - - - https://kargarisaac.medium.com/life-long-learning-part-a-2380bfe6bb99 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jonathan.lethem/be-kind-be-kind-be-kind-da3feb013f00 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/manage-iptables-firewall-for-docker-kubernetes-daa5870aca4d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/data-science-365/using-a-for-loop-to-efficiently-build-a-stack-of-convolutional-layers-ee8578d823c1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/making-money-with-algorithmic-trading-mastering-the-advanced-bollinger-band-strategy-44973078b80c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/thoughts-on-machine-learning/spacy-llm-is-so-robust-do-we-still-need-langchain-ce7c3e3dbd8d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/pipeline-a-data-engineering-resource/3-data-science-projects-that-got-me-12-interviews-and-1-that-got-me-in-trouble-f376682b4e21 - 2023-10-06 - monthly - 1.0 - - - - https://gmusumeci.medium.com/using-private-endpoint-in-azure-storage-account-with-terraform-49b4734ada34 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/a-journey-with-go/go-story-of-trylock-function-a69ef6dbb410 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/convolution-neural-networks-a-beginners-guide-implementing-a-mnist-hand-written-digit-8aa60330d022 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/purple-team/discovering-and-enumerating-with-metasploit-94f59ddf5d13 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/cohens-kappa-9786ceceab58 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mobile-app-development-publication/passing-intent-data-to-viewmodel-711d72db20ad - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/personal-growth/platos-rhetoric-6-timeless-ideas-that-can-make-you-a-master-communicator-1f87b3245dcb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/intro-to-metasploit-19e3d07ff725 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/spring-boot-with-prometheus-and-grafana-local-setup-included-66190be08986 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/readytowork-org/defer-panic-and-recover-in-go-for-error-handling-ca34792f00d8 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/independent-component-analysis-ica-a3eba0ccec35 - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/exploratory-data-analysis-pyspark-part-1-6f1733074b13 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/how-to-build-trust-with-others-by-cleaning-your-figma-files-f283e72cb057 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/thoughts-on-machine-learning/building-knowledge-graphs-with-spacy-networkx-and-matplotlib-a-glimpse-into-semantic-role-e49c9dbe26b4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/building-an-ai-agent-that-can-use-tools-without-langchain-part-1-13a7043482c9 - 2023-10-06 - monthly - 1.0 - - - - https://justlv.medium.com/using-ai-to-read-your-thoughts-with-keras-and-an-eeg-sensor-167ace32e84a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/pyspark-cheat-sheet-big-data-analytics-161a8e1f6185 - 2023-10-06 - monthly - 1.0 - - - - https://davidliira.medium.com/if-i-had-to-pick-just-one-exercise-for-back-pain-relief-ae9c6529c557 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@GenerousDataAnalyst/10-years-of-s-p500-data-brought-me-295-profit-ml-model-ff4399ae4355 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/building-a-knowledge-graph-using-gpt-3-fefc32fd7303 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/how-to-resolve-mysql-deadlocks-16542135c796 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/create-a-web-app-from-your-jupyter-notebook-with-mercury-21239b7abb37 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/10-essential-jupyter-notebook-extensions-for-data-scientists-86b68ec7a66e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/how-to-measure-the-non-linear-correlation-between-multiple-variables-804d896760b8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bytehide/senior-c-developer-shows-5-tips-to-master-your-c-level-a03b2619358b - 2023-10-06 - monthly - 1.0 - - - - https://fredgrott.medium.com/customize-material-design-3-with-rydmikes-flex-color-scheme-1bd853e4a946 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/android-embedded-server-with-ktor-26e7c576263d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/nightingale/your-guide-to-table-design-from-a-data-viz-practitioner-d83f14dbfdc6 - 2023-10-06 - monthly - 1.0 - - - - https://humanparts.medium.com/why-do-we-have-to-be-so-efficient-fb1f91577ae4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mobile-app-development-publication/managing-compose-state-variable-with-and-without-viewmodel-8da72abef1e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/thedevproject/streamlining-code-reviews-focused-approach-and-layered-refinement-1a7a9e2d81e5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/allermedia-techblog/cloudformation-example-log-retention-for-lambda-and-codebuild-a11e74516bb6 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/enhancing-categorical-features-with-entity-embeddings-e6850a5e34ff - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@caserobertson/intro-to-geodatabase-domains-11540a6751d3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/text-classification-using-tf-idf-7404e75565b8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/write-ups-hackthebox/m0rsarchive-misc-writeup-htb-c11ad8b6063d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/produclivity/ptpl-071-file-based-knowledge-management-a-subtle-but-profund-shift-in-pkm-thinking-d34dc88742f9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/devtechie/fetching-app-and-device-info-in-swiftui-f9a7b16e5e04 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@aaronfulton/pywebview-the-better-alternative-to-electron-for-python-programmers-471d3c13693f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mind-cafe/marcus-aurelius-8-surprising-traits-of-people-who-excel-at-life-288eb62afd7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@aaronfulton/vue-quasar-pywebview-for-beautiful-desktop-development-9038534ad90f - 2023-10-06 - monthly - 1.0 - - - - https://tayknoble.medium.com/ice-floats-and-we-should-all-be-grateful-38936c3c6958 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@aaronfulton/what-effect-does-the-season-have-on-currency-movements-a5516764c73d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/copywriting-secrets/20-of-the-best-free-online-tools-for-writers-8a1ce9fb725b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jamieeduncan/i-recently-moved-to-a-macbook-for-my-primary-work-laptop-7c704dbaff59 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/text-classification-using-word-embeddings-and-deep-learning-in-python-classifying-tweets-from-6fe644fcfc81 - 2023-10-06 - monthly - 1.0 - - - - https://awstip.com/zero-code-file-type-conversions-in-aws-4ab38d3a95e6 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/apples-miss-blurry-creativity-figma-file-org-value-of-tokens-948ccc0dd4ef - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/theres-no-such-thing-as-a-desktop-screen-b9e300c0b128 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/blockchain-developer/build-your-own-blockchain-network-with-hyperledger-fabric-composer-part-ii-35897bf9e7ab - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/data-pipeline-design-patterns-100afa4b93e3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/from-business-student-to-data-scientist-in-tech-eb7bbaab1784 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@Stan_DS/how-to-qa-your-pdf-file-and-evaluate-llm-performance-using-langchain-and-openai-b89fdf111cc8 - 2023-10-06 - monthly - 1.0 - - - - https://thepaulo.medium.com/eager-loading-polymorphic-associations-in-ruby-on-rails-155a356c39d7 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/gitops-in-kubernetes-with-gitlab-ci-and-argocd-9e20b5d3b55b - 2023-10-06 - monthly - 1.0 - - - - https://uxplanet.org/choose-correct-menu-icon-for-your-navigation-7ffc22df80ac - 2023-10-06 - monthly - 1.0 - - - - https://trainindata.medium.com/discover-the-best-resources-to-learn-data-science-2978499fc804 - 2023-10-06 - monthly - 1.0 - - - - https://aws.plainenglish.io/spark-on-aws-lambda-c65877c0ac96 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/hetman-software/how-to-enable-ahci-mode-for-sata-in-bios-without-reinstalling-windows-fdef2efec02e - 2023-10-06 - monthly - 1.0 - - - - https://mikebeneschan.medium.com/how-to-understand-span-linear-algebra-cf3baa12edda - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/thecyberfibre/f2fs-versus-ext4-our-take-on-the-ongoing-battle-c0324f46d040 - 2023-10-06 - monthly - 1.0 - - - - https://valeman.medium.com/what-truly-works-in-time-series-forecasting-the-results-from-nixtlas-mega-study-78eda5133622 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lydtech-consulting/kafka-transactions-part-1-exactly-once-messaging-9949350281ff - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lydtech-consulting/kafka-idempotent-consumer-transactional-outbox-74b304815550 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/mle-vs-map-a989f423ae5c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@knowledge.cafe/distributed-transaction-in-spring-boot-microservices-7962e048adfc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@steinsfu/stable-diffusion-controlnet-clearly-explained-f86092b62c89 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/titansoft-engineering/docker-build-cache-sharing-on-multi-hosts-with-buildkit-and-buildx-eb8f7005918e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/crows-feet/im-a-tech-savvy-know-it-all-lawyer-and-i-fell-for-the-online-birkenstock-scam-3b2aabc282ca - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-code-your-own-python-pre-commit-hooks-with-bash-171298c6ee05 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/getting-started-with-python-pre-commit-hooks-28be2b2d09d5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/nerd-for-tech/moving-platforms-in-unity-86d0c6f05d85 - 2023-10-06 - monthly - 1.0 - - - - https://towardsaws.com/local-development-with-serverless-46a219876a67 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/outlier-detection-part-2-6839f6199768 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@WenxinZhang98/data-science-interview-prepara-e98e40b91c0a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@theo.seeds/how-to-have-deeper-conversations-7e13501ec160 - 2023-10-06 - monthly - 1.0 - - - - https://nickwignall.medium.com/3-habits-that-will-make-you-emotionally-strong-ec9dbf12aa5d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/datamindedbe/unleash-the-spark-create-an-amazon-emr-serverless-cluster-with-terraform-and-run-pyspark-jobs-e9882c4095b9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/titansoft-engineering/hpa-failed-to-work-on-gke-and-how-we-fixed-it-babdef32e4fc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/titansoft-engineering/decision-tree-easily-explained-c775c80abecb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/titansoft-engineering/rate-limiting-for-your-kubernetes-applications-with-nginx-ingress-2e32721f7f57 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/implementing-an-end-to-end-machine-learning-workflow-with-azure-data-factory-f16cbeeffd94 - 2023-10-06 - monthly - 1.0 - - - - https://marympembee.medium.com/20-creativity-lessons-from-the-book-keep-going-f54b364c14fa - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/linear-regression-with-ols-unbiased-consistent-blue-best-efficient-estimator-359a859f757e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/adhd-productivity/the-freelancers-guide-to-adhd-strategies-and-tools-for-productivity-519ee49c3841 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/dealing-with-outliers-using-three-robust-linear-regression-models-544cfbd00767 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/exploring-viewbinding-in-depth-598925821e41 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/beware-of-using-json-stringify-for-logging-933f18626d51 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@arifulislam14/use-different-firebase-environments-for-different-build-configurations-in-ios-adbbeb5196f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/enrique-dans/i-like-claude-anthropics-generative-algorithm-ce9df76c59b9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@kevinnokiawriting/change-your-life-the-easiest-method-68f5d8a556d5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@roanmonteiro/clean-code-with-java-replace-the-logical-condition-using-enum-if-else-statements-898bd6a85327 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-create-a-simple-object-detection-system-with-python-and-imageai-ee1bcaf6b111 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-practical-guide-to-feature-selection-using-sklearn-b3efa176bd96 - 2023-10-06 - monthly - 1.0 - - - - https://taimurcloud123.medium.com/here-is-a-90-day-career-plan-to-enter-the-cybersecurity-industry-b443ccc8a5dc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@sulistef/how-i-use-obsidian-for-personal-knowledge-management-insights-from-my-2-years-experience-f5e55012d163 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@rhwebster.scifi/what-is-science-fiction-fb785c4edd7e - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/how-to-integrate-chatgpt-into-power-bi-for-faster-more-accurate-analysis-67d33430507 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/5-feature-selection-method-from-scikit-learn-you-should-know-ed4d116e4172 - 2023-10-06 - monthly - 1.0 - - - - https://revolutionai.medium.com/claude-2-real-competitor-for-chatgpt-ec9b8035a63a - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/the-secrets-of-json-stringify-cf592f53b0f0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/the-best-way-to-organize-your-iphone-home-screen-1a14a76fe3bd - 2023-10-06 - monthly - 1.0 - - - - https://athekunal.medium.com/lora-low-rank-adaptation-paper-in-depth-explanation-417f5fa40668 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@wwwbbb8510/setting-up-on-premise-data-lake-is-much-easier-than-we-expected-71370f19645e - 2023-10-06 - monthly - 1.0 - - - - https://medium.aifastcash.com/prompt-engineering-the-most-valuable-ai-skill-in-2023-75ad9e035349 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/generating-a-requirements-file-jupyter-notebook-385f1c315b52 - 2023-10-06 - monthly - 1.0 - - - - https://odsc.medium.com/what-its-like-to-be-a-prompt-engineer-73a834f658e5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@rubentak/talk-to-your-data-base-with-gpt-models-using-langchain-csv-19e2b32aa729 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@renduh/making-an-instagram-stories-graphic-generator-with-fabric-js-part-1-eca51d1e8b5d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@black.jedAi/gaboogle-better-ai-writing-the-ultimate-guide-for-using-ai-text-compression-for-better-quality-15c568b739ab - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tomarpari90/the-ultimate-guide-to-smart-contract-auditing-86612cf10edd - 2023-10-06 - monthly - 1.0 - - - - https://zora.medium.com/sorry-yall-but-climate-change-ain-t-the-first-existential-threat-b3c999267aa0 - 2023-10-06 - monthly - 1.0 - - - - https://rajshamani.medium.com/the-only-3-life-skills-you-need-to-master-fa292b78ba4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/how-to-create-a-music-visualizer-7fad401f5a69 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@harshppatel7/you-deserve-better-8fa330ce0b0d - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/easy-audio-visualization-python-d3c6aa935212 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/use-the-new-apple-sf-symbols-in-your-applications-6feb75ef294b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/dashboards-in-angular-65cbeb4bbb4c - 2023-10-06 - monthly - 1.0 - - - - https://bettermarketing.pub/how-ben-and-jerry-created-an-ice-cream-brand-worth-326-million-393f290e978d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/quantum-error-correction-using-qiskit-1d6b708490b9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/an-advanced-guide-to-writing-prompts-for-midjourney-text-to-image-aa12a1e33b6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/learning-sql/sql-users-reduce-your-case-statements-with-a-lookup-table-d09da47bf65 - 2023-10-06 - monthly - 1.0 - - - - https://krishankantsinghal.medium.com/building-a-pdf-chatbot-with-streamlit-and-langchain-ed6c567ce6fe - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/autogpt-the-new-kid-on-the-ai-block-thats-changing-everything-6d6ee8cf169f - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/i-asked-chatgpt-to-build-a-data-pipeline-and-then-i-ran-it-4537670a60ca - 2023-10-06 - monthly - 1.0 - - - - https://ai.plainenglish.io/using-embedchain-a-powerful-langchain-python-wrapper-to-build-chat-bots-even-faster-35c12994a360 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bb-tutorials-and-thoughts/angular-how-to-read-environment-info-at-runtime-for-ci-cd-9a788478aa9b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/geospatial-data-science-points-pattern-analysis-a61e04a6ddb8 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/spatial-data-science/the-future-of-geospatial-ai-d29756df6ac3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@MTrax/golang-options-vs-builder-pattern-4123bfcc3c5c - 2023-10-06 - monthly - 1.0 - - - - https://ammarmerakli.medium.com/pure-functions-high-cohesion-low-coupling-174b0a47ef24 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/how-to-make-a-simple-recommendation-system-in-using-pandas-6370a887fb19 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@christian.freischlag/embeddings-in-practice-deploying-embedding-based-machine-learning-systems-7b5e4b2c6f05 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@koki_noda/ultimate-guide-to-graph-neural-networks-2-texas-dataset-f70782190f80 - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/golang-name-convention-gophers-should-follow-e4397fba5dce - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@Aaron0928/the-rumour-has-it-rust-or-go-the-biggest-technology-divide-of-2023-26d100b2af04 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@chris_42047/calculating-price-chart-pivot-points-with-python-d29bf9d28c07 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/train-all-classification-or-regression-models-in-one-line-of-python-code-4ccdcaf01f0c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/python-automl-sklearn-fd85d3b3c5e - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/how-to-build-basic-trading-strategy-using-python-fc7bfd065614 - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/beyond-the-basics-a-deep-dive-into-stock-analysis-with-python-6f3aa2942178 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-implement-random-forest-regression-in-pyspark-9582f4964285 - 2023-10-06 - monthly - 1.0 - - - - https://tugrulbayrak.medium.com/jvm-garbage-collector-nedir-96e76b6f6239 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/dead-letter-queue-f5ed22d5594a - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/bitwarden-self-hosting-12-months-later-b2c0e0d9d62d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/techtofreedom/10-remarkable-python-oop-tips-that-will-optimize-your-code-significantly-a47e4103b44d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/in-fitness-and-in-health/5-unusual-tiny-tweaks-to-make-cold-showers-even-more-powerful-1241783214a3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/macbook-touchbar-flicker-fix-bafa754aae13 - 2023-10-06 - monthly - 1.0 - - - - https://caiomsouza.medium.com/build-your-own-large-language-model-like-dolly-e958aeeb553a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@lordmoma/6-tips-on-high-performance-go-advanced-go-topics-37b601fa329d - 2023-10-06 - monthly - 1.0 - - - - https://iamalexmathers.medium.com/9-subtle-behaviours-that-make-people-admire-you-1a08538b55fd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/curious/6-uncommon-behaviors-that-will-make-people-admire-you-immediately-1928043e8188 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/5-best-backend-for-frontend-tools-you-should-be-using-1a8cea3ed17c - 2023-10-06 - monthly - 1.0 - - - - https://andrew-long.medium.com/web-scraping-like-your-time-is-valuable-65194b1dfe02 - 2023-10-06 - monthly - 1.0 - - - - https://blog.varunsingh.in/fastapi-coroutines-and-async-await-c1854bee527 - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/execvp-system-call-in-python-everything-you-need-to-know-c402fe6886eb - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/writing-a-fully-fledged-api-using-postgresql-gin-and-gorm-4d5ba73114da - 2023-10-06 - monthly - 1.0 - - - - https://oyvindwashere.medium.com/owh-film-fujifilm-recipe-f7e1771812cf - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/interpreting-acf-or-auto-correlation-plot-d12e9051cd14 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/croston-forecast-model-for-intermittent-demand-360287a17f5f - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/using-iam-roles-to-allow-the-pods-in-aws-eks-to-read-the-aws-s3-bucket-be493fbdda84 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@brianridolcedev/how-to-make-a-responsive-grid-like-a-pro-d3e660c7d955 - 2023-10-06 - monthly - 1.0 - - - - https://nicolas-vandeput.medium.com/stop-using-segmented-forecasting-cf66b232d6ae - 2023-10-06 - monthly - 1.0 - - - - https://nicolas-vandeput.medium.com/how-to-forecast-intermittent-products-c5d477b90176 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/compose-your-android-navigation-with-custom-arguments-20d4467b5dfd - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/twenty-five-sql-practice-exercises-5fc791e24082 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/comparing-python-libraries-for-visualization-b2eb6c862542 - 2023-10-06 - monthly - 1.0 - - - - https://oyvindwashere.medium.com/owh-recipe-pack-1cc13f3df779 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/infinite-scroll-vs-pagination-in-ux-design-70d9c4956405 - 2023-10-06 - monthly - 1.0 - - - - https://oyvindwashere.medium.com/modern-documentary-recipe-4fed3fe1895d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@elena.caballero/how-i-organize-my-life-4529729d6f68 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/an-introduction-to-gradient-descent-and-backpropagation-in-machine-learning-algorithms-a14727be70e9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/dlabs-ai/fatsecret-food-database-rest-api-client-with-typescript-2319e6144546 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/pandas-tutorial-indexing-slicing-date-times-e02d230ff485 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/hidden-markov-model-a-statespace-probabilistic-forecasting-approach-in-quantitative-finance-df308e259856 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/the-power-of-doing-nothing-at-all-73eeea488b8b - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/50-hilarious-git-commit-messages-597537764bbe - 2023-10-06 - monthly - 1.0 - - - - https://tomaszs2.medium.com/ruby-3-2-0-is-from-another-dimension-5249e3186ec9 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/30-funny-git-commit-message-people-actually-wrote-6ec9cc7853 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-create-latex-tables-directly-from-python-code-5228c5cea09a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/rapids-ai/combining-speed-scale-to-accelerate-k-means-in-rapids-cuml-8d45e5ce39f5 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-troubleshoot-python-scripts-with-the-logging-module-aaf630c35fe3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-complete-guide-to-plotting-categorical-variables-with-seaborn-bfe54db66bec - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/the-10-3-2-1-0-bedtime-routine-that-makes-your-mornings-2x-productive-b0da1bce7234 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/how-to-eliminate-loops-from-your-python-code-6dfb7c3578fa - 2023-10-06 - monthly - 1.0 - - - - https://pkmjournal.com/the-para-method-10d79c1e86b3 - 2023-10-06 - monthly - 1.0 - - - - https://blog.developerpurpose.com/working-for-faang-is-a-terrible-goal-21f5f51a6c70 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@atef.ataya/building-summarization-apps-using-stuffdocumentschain-with-langchain-openai-6627c486424d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@rubentak/langchain-using-different-langchain-chains-to-write-a-new-episode-for-the-office-us-7c45d869d895 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@benhui.ca/how-to-insert-images-to-powerpoint-by-using-python-a95dce620a1b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/stop-doing-this-on-chatgpt-get-ahead-99-users-ai-artificial-intelligence-productivity-prompt-engineering-4-f3441bf7a25a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/how-to-use-chatgpt-effectively-every-day-51d6b8588c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/one-datum-at-a-time/time-series-and-autocorrelation-an-exploration-3cbe414e537a - 2023-10-06 - monthly - 1.0 - - - - https://iamalexmathers.medium.com/7-subtle-behaviours-that-are-highly-attractive-to-most-people-c7313a48f2f8 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/10-lessons-i-learned-training-generative-adversarial-networks-gans-for-a-year-c9071159628 - 2023-10-06 - monthly - 1.0 - - - - https://blog.det.life/create-first-data-engineering-project-incremental-roadmap-6f0e66e7a5bf - 2023-10-06 - monthly - 1.0 - - - - https://rahuldighe.medium.com/how-do-to-demo-an-api-3de303b964d7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@grdustin/enabling-mlops-in-three-simple-steps-a5b4e1f0dd11 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/coinmonks/how-to-reach-100-at-followers-on-medium-in-less-than-5-days-55b43ae287db - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/change-your-mind/adversity-becomes-the-path-to-realizing-your-full-potential-db66ce230e63 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/taking-my-university-course-computer-science-notes-in-latex-7565875fdde7 - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/replace-your-to-do-list-with-interstitial-journaling-to-increase-productivity-4e43109d15ef - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/%E5%8B%95%E6%BC%AB%E6%98%9F%E6%9C%9F%E5%A4%A9/comics008-8bea87a7a374 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@mariana.carvalho/how-to-get-the-most-out-of-the-virtual-ghc-edae7541a755 - 2023-10-06 - monthly - 1.0 - - - - https://entrepreneurshandbook.co/how-to-reach-1-billion-in-revenue-with-no-marketing-team-26129a9415af - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/practice-in-public/the-most-obvious-thing-about-the-top-performers-that-nobody-talks-about-57ef13a70e3a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/how-to-improve-your-luck-the-concept-of-a-luck-surface-area-2357a722e1d9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@chris_42047/a-very-bollinger-trading-strategy-python-tutorial-2c6cc6a643ca - 2023-10-06 - monthly - 1.0 - - - - https://tlcooper0001.medium.com/do-you-know-what-your-medium-id-is-b9085393b5c4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/scripting-that-medium-com-post-2dd761f9a894 - 2023-10-06 - monthly - 1.0 - - - - https://markwschaefer.medium.com/why-inbound-marketing-costs-inevitably-increase-over-time-558c5e78f071 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/textmaster-engineering/performance-of-regular-expressions-81371f569698 - 2023-10-06 - monthly - 1.0 - - - - https://iamalexmathers.medium.com/13-naughty-secrets-that-will-propel-you-into-the-top-2-of-online-writers-6bd641856998 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/stories-from-heart/the-sick-reason-why-companies-lay-off-their-best-high-performing-employees-364eeea7aa34 - 2023-10-06 - monthly - 1.0 - - - - https://nick-nolan.medium.com/bankrate-stopped-using-ai-to-write-articles-225c0d713bcf - 2023-10-06 - monthly - 1.0 - - - - https://blog.pacific-content.com/whats-the-real-value-of-podcast-listener-attention-da3949383737 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/wealthy-bytes/the-easiest-way-to-use-a-python-virtual-environment-with-git-401e07c39cde - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/bleu-bilingual-evaluation-understudy-2b4eab9bcfd1 - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/the-complete-guide-to-deliberate-practice-3a70319be3af - 2023-10-06 - monthly - 1.0 - - - - https://benjaminsledge.medium.com/no-one-has-addressed-why-russia-invaded-ukraine-so-ill-do-it-45892616c10e - 2023-10-06 - monthly - 1.0 - - - - https://wire.insiderfinance.io/the-people-who-run-the-world-26d8d82e3370 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/hello-love/these-subtle-signs-let-you-know-whether-or-not-shes-attracted-to-you-97d2d5934571 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@mj174400/the-silent-flames-30-signs-she-is-secretly-attracted-to-you-93cd71f4d29 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@whitep/7-surefire-signs-that-a-woman-likes-you-cf3183f84fb5 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/what-are-pca-loadings-and-biplots-9a7897f2e559 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/hello-love/how-to-really-know-a-woman-likes-you-c6776e41a4ff - 2023-10-06 - monthly - 1.0 - - - - https://maskedwriter.medium.com/8-undeniable-signs-someone-is-highly-attracted-to-you-672193a11450 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mind-cafe/6-signs-someone-is-emotionally-attracted-to-you-acbc4db9aafd - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/writers-blokke/the-expert-guide-to-making-thousands-of-dollars-on-royal-road-2f2b1c415301 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@dianameresc/8-signs-someone-is-attracted-to-you-817ff2a8cff4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/hello-love/5-signs-women-want-you-to-talk-to-them-ee2daa0c1f20 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/publicis-sapient-france/how-to-deploy-your-own-ml-model-to-gcp-in-5-simple-steps-bf2b5898c1ab - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@replytoak10/hedge-fund-secrets-anyone-can-use-probabilistic-options-strategies-i-3c127115e5ff - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/lessons-from-history/everything-you-learned-about-world-war-two-is-wrong-2b127c9f7205 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/how-to-use-reinforcement-learning-for-profitable-investing-ebe8662f13cc - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-test-ml-models-in-the-real-world-e83bf223d340 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/the-mean-misleads-why-the-minimum-is-the-true-measure-of-a-functions-run-time-47fa079075b0 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/the-mean-misleads-part-ii-more-data-for-the-doubters-7f11881f7337 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@morrison_octavia/do-women-have-easier-access-to-sex-113bcfb03420 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/2d-tokenization-for-large-language-models-46b295dd1904 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/moments-of-passion/7-undeniable-signs-a-woman-likes-you-more-than-a-friend-8e0e09b2a6a8 - 2023-10-06 - monthly - 1.0 - - - - https://sophiabelli.medium.com/the-narcissist-provokes-you-b8b589559ed9 - 2023-10-06 - monthly - 1.0 - - - - https://entreprenal.com/my-4-step-methodology-to-raise-funds-for-a-startup-e703cf0d7ea3 - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/can-controlnet-be-used-to-control-the-position-of-a-light-source-in-stable-diffusion-4298555451f0 - 2023-10-06 - monthly - 1.0 - - - - https://mikebeneschan.medium.com/how-to-understand-basis-linear-algebra-27a3bc759ae9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/programmingnotes/aws-auto-scaling-and-load-balancing-b1c6eeb4d074 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/run-blocking-functions-asynchronously-in-python-17cd268bb069 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@rebekah.arana/this-weeks-productivity-trick-75e0368b5d7d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/humans-with-adhd/habitica-the-app-that-runs-my-adhd-life-464d11ec4df0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/jane-austens-wastebasket/how-to-politely-decline-those-ridiculous-requests-coworkers-feel-entitled-to-ask-of-you-71bd7bb15a8f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-narrative-arc/my-disability-or-diffability-forces-me-to-go-slow-8ed33f8a2e99 - 2023-10-06 - monthly - 1.0 - - - - https://jinlow.medium.com/database-design-methodology-1-320ad33a7b85 - 2023-10-06 - monthly - 1.0 - - - - https://maherz.medium.com/10-mind-blowing-c-hacks-95fa629cfcef - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bouncin-and-behavin-blogs/different-worlds-55b7719ec30b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/new-writers-welcome/incredible-word-counts-70c147f8b7c5 - 2023-10-06 - monthly - 1.0 - - - - https://johschmidt42.medium.com/train-your-own-object-detector-with-faster-rcnn-pytorch-8d3c759cfc70 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/career-advice-from-a-tech-dinosaur-who-sold-his-10m-company-4383cd856a47 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/end-to-end-computer-vision-pipeline-in-5-minutes-e43e47a9c04a - 2023-10-06 - monthly - 1.0 - - - - https://halimshams.medium.com/2-minute-rule-to-become-a-master-at-coding-atomic-habits-ec5d48d1a3ba - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/statistically-you-will-marry-the-wrong-person-heres-why-17931d99e9e0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@Slasherwick/how-to-overcome-the-fear-of-coding-and-what-you-can-do-to-succeed-fcf9c84c8408 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-gpus-accelerate-deep-learning-3d9dec44667a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/creativeai/how-to-use-chatgpt-4-for-free-5de29b1ba2ba - 2023-10-06 - monthly - 1.0 - - - - https://thisisananya.medium.com/10-things-that-are-wasting-your-time-on-a-daily-basis-71af1f05a8fb - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/code-writers/the-basics-of-flex-box-in-css-99a9106a37c7 - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/tired-of-the-modern-web-try-the-gemini-protocol-ba847f102fe6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@money_mentor/earn-700-watching-youtube-videos-9c24dda9b4d0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/japonica-publication/2023-058-land-of-sunshine-50f6b5eeb5d3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-break-gpu-memory-boundaries-even-with-large-batch-sizes-7a9c27a400ce - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/why-do-you-need-to-use-sql-grouping-sets-for-aggregating-data-3d172ff5c088 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/5-easy-steps-to-create-a-quiz-generator-with-vercel-ai-sdk-and-next-js-fe317b1e8031 - 2023-10-06 - monthly - 1.0 - - - - https://nickychristensen.medium.com/how-to-destructure-props-in-vue-3-without-losing-reactivity-72e1eb05f6c0 - 2023-10-06 - monthly - 1.0 - - - - https://bigattichouse.medium.com/diy-appliance-backup-power-from-repurposed-48v-power-tools-abc924e7804e - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/enrique-dans/how-ai-can-help-protect-minority-languages-6e070ca91169 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@keisuke_w/10-youtube-chrome-extensions-for-better-watching-experience-f40af215bafa - 2023-10-06 - monthly - 1.0 - - - - https://fmunz.medium.com/kafkacat-on-amazonlinux-centos-d7ded88042e8 - 2023-10-06 - monthly - 1.0 - - - - https://brookewrites.medium.com/how-to-start-taking-notes-in-a-text-editor-like-obsidian-8cdfd047055f - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/using-golang-to-listen-to-and-parsing-github-webhooks-1e072686b55f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/scribe/no-exit-no-escape-55ae8075b5e1 - 2023-10-06 - monthly - 1.0 - - - - https://joel-tokple.medium.com/pytorch-the-theory-behind-distributed-data-parallel-cc29606ded2d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/visual-intuition-on-ring-allreduce-for-distributed-deep-learning-d1f34b4911da - 2023-10-06 - monthly - 1.0 - - - - https://bklim.medium.com/deploying-serverless-gcp-cloud-function-via-bitbucket-pipelines-5480795d5564 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/git-worktree-user-guide-an-efficient-tool-that-is-neglected-ef73e3b7edde - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/k-means-clustering-with-scikit-learn-e2af706450e4 - 2023-10-06 - monthly - 1.0 - - - - https://tantingli.medium.com/quick-pro-tips-for-bitbucket-pipeline-b4dda132ee3f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/mysql-vs-oracle-sql-a97a7659f992 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/what-is-natural-language-processing-a-gentle-introduction-to-nlp-4ed219a768ad - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/introduction-to-natural-language-processing-part-1-777f972cc7b3 - 2023-10-06 - monthly - 1.0 - - - - https://pyqml.medium.com/the-quantum-bit-comparator-463911f7bcd3 - 2023-10-06 - monthly - 1.0 - - - - https://ux.shopify.com/how-to-push-the-limits-of-a-design-system-b44fac420be - 2023-10-06 - monthly - 1.0 - - - - https://codeeverywhere.medium.com/creating-your-own-live-tv-channel-with-node-js-html-and-webrtc-a-step-by-step-guide-2077c57b194b - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/emotional-design-how-to-improve-products-with-emotions-1bbdc879ddfb - 2023-10-06 - monthly - 1.0 - - - - https://www.cantorsparadise.com/longstanding-number-theory-puzzle-successfully-resolved-fc336a7ffb90 - 2023-10-06 - monthly - 1.0 - - - - https://sam-ngu.medium.com/avoiding-infinite-nested-relationship-loop-in-laravel-api-resource-35685898b360 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/apis-with-valentine/getting-started-with-the-chatgpt-api-4d884b20f6d0 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/implementing-svm-from-scratch-784e4ad0bc6a - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/object-oriented-programming-the-trillion-dollar-disaster-92a4b666c7c7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/top-10-microservices-problem-solving-questions-for-5-to-10-years-experienced-developers-3391e4f6b591 - 2023-10-06 - monthly - 1.0 - - - - https://python.plainenglish.io/use-statsmodels-varma-to-predict-on-the-cost-of-waste-collection-ff4c0f73dcaf - 2023-10-06 - monthly - 1.0 - - - - https://sgkantamani.medium.com/how-to-show-date-picker-in-jetpack-compose-8bc77a3ce408 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/litslink/adonisjs-file-storage-upload-and-download-files-from-server-a8dbf7ab0528 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/time-series-modeling-with-orbit-a38e03a2a4ea - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/leap-academy/blood-sacrifice-e3d23b1cc62d - 2023-10-06 - monthly - 1.0 - - - - https://barry-gander.medium.com/how-chinas-bri-infected-the-global-economy-with-unpayable-debt-5b119744d6a0 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/optimal-forecast-reconciliation-for-hierarchical-time-series-ea892ca105a9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/my-top-7-paid-subscriptions-ill-never-cancel-as-a-content-creator-b050a373bad5 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@uzmanali/6-best-and-free-data-visualization-courses-to-add-to-your-resume-193a05912d03 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/illumination/heres-how-much-i-ve-made-for-an-article-with-4-3k-views-copy-my-exact-formula-471a03bf84b0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@uzmanali/5-sql-projects-to-build-your-strong-data-analytics-portfolio-in-2023-8933066f6302 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-narrative-arc/the-taj-mahal-dirt-and-all-308bd9a083ed - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tballz/market-regime-detection-and-prediction-lesson-3-prediction-via-supervised-learning-methods-16646428e602 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tballz/regime-detection-and-prediction-in-financial-markets-lesson-1-simple-tutorial-42ee5bf18d61 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tballz/regime-detection-and-prediction-in-financial-markets-lesson-2-application-of-gaussian-mixture-5ee6c0199676 - 2023-10-06 - monthly - 1.0 - - - - https://robinpokorny.medium.com/why-developers-should-stop-using-iso-8601-for-date-time-e6ee5fc8ad87 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/spatial-data-science/what-is-lidar-point-cloud-data-a547ed29edf5 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-speed-up-your-k-means-clustering-by-up-to-10x-over-scikit-learn-5aec980ebb72 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/second-chance/how-to-marry-well-in-the-21st-century-91d7388b902 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-choose-an-ai-program-course-at-university-19bbb4588ed4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/creating-equity-curves-in-python-to-visualise-trading-strategy-performance-17711bc4376f - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/how-to-use-vercel-ai-sdk-with-hugging-face-inference-to-generate-text-summaries-b4d16d25c84b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/forecasting-with-machine-learning-models-95a6b6579090 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@miniChang8/leetcode-remove-duplicate-letters-632be3e0703b - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/jwt-json-web-tokens-user-authentication-in-next-js-web-application-51deab8f2e96 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/android-tech-stack/retrofit-with-coroutine-flows-using-mvvm-f0eb397bfc0a - 2023-10-06 - monthly - 1.0 - - - - https://rossbulat.medium.com/react-native-working-with-error-boundaries-2ac213977383 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/its-ok-to-code-it-s-ok-to-no-code-but-there-s-a-cost-to-both-5808ee12e657 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/obsidian-library-how-to-keep-track-of-your-books-with-book-search-and-projects-plugins-716599633715 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/the-obsidian-templates-that-i-still-use-after-simplifying-my-vault-c8024de44dc9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/obsidian-cinema-how-to-keep-track-of-movies-with-movie-plugin-5c20ef2e03ab - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/the-7-best-obsidian-plugins-under-20-000-downloads-f112d210fbbc - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/machine-learning-intuition/retrieval-augmented-generation-rag-control-your-models-knowledge-and-hallucinations-ea3c6345a659 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/codex/3-best-practices-for-data-engineers-in-bigquery-28ad9ad4fdda - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/creating-animation-to-show-4-centroid-based-clustering-algorithms-using-python-and-sklearn-d397ade89cb3 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bytehide/50-csharp-performance-tips-21ccbcaa7642 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/cultural-competencies-for-machine-learning-risk-management-c38616c2ccdf - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-markov-and-the-bienaym%C3%A9-chebyshev-inequalities-cbf7ccc856f9 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/mlearning-ai/bigquery-materialized-views-without-aggregation-183856209a8 - 2023-10-06 - monthly - 1.0 - - - - https://christianlauer90.medium.com/best-practices-when-working-with-googles-bigquery-f008f3b538d2 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/sentiment-analysis-and-structural-breaks-in-time-series-text-data-8109c712ca2 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/applying-two-ideas-from-advances-in-financial-machine-learning-433c7950858a - 2023-10-06 - monthly - 1.0 - - - - https://bootcamp.uxdesign.cc/creating-a-profitable-bot-with-python-60fe9f0d0194 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-work-with-nested-data-in-bigquery-84f15646b0b1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/devops-techable/install-efs-csi-driver-into-your-aws-eks-cluster-kubernetes-infrastructure-as-code-3e832c5c2b73 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/obsidian-observer/obsidian-theme-i-choose-minimal-ad5c3bc1b61a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@sandyonmars/how-to-get-google-cloud-certification-free-voucher-and-1000-1300-credit-using-google-cloud-2c5629c10145 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/why-feature-correlation-matters-a-lot-847e8ba439c4 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/analytics-vidhya/build-your-own-technical-analysis-stock-screener-using-python-5d1bb3d091f0 - 2023-10-06 - monthly - 1.0 - - - - https://iorilan.medium.com/all-you-need-to-know-about-database-transaction-concurrency-control-locks-isolation-level-mvcc-ed1bacd9d1d2 - 2023-10-06 - monthly - 1.0 - - - - https://francescod.medium.com/roams-biggest-threat-obsidian-shares-all-26c83f0a000b - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/5-changepoint-detection-algorithms-every-data-scientist-should-know-e2ebb83d215f - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/20x-times-faster-k-means-clustering-with-faiss-5e1681fa2654 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/understanding-k-means-k-means-and-k-medoids-clustering-algorithms-ad9c9fbf47ca - 2023-10-06 - monthly - 1.0 - - - - https://baos.pub/two-books-that-supercharged-my-journaling-habit-9bdc2ec91569 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/how-to-take-notes-4575193db335 - 2023-10-06 - monthly - 1.0 - - - - https://artificialcorner.com/chatgpts-code-interpreter-was-just-released-here-s-how-it-will-change-data-science-forever-b1581c452f47 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@tony.infisical/guide-to-building-audit-logs-for-application-software-b0083bb58604 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@addyosmani/building-a-better-web-a-faster-youtube-on-web-24b1dc03716 - 2023-10-06 - monthly - 1.0 - - - - https://fadamakis.com/15-terrible-advice-for-web-developers-e821e95f5d18 - 2023-10-06 - monthly - 1.0 - - - - https://emmanuelibok505.medium.com/junior-devops-portfolio-a91fa69a2e5e - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-visualize-databases-as-network-graphs-in-python-2ce3851f8458 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/the-easiest-way-to-evaluate-the-performance-of-trading-strategies-in-python-4959fd798bb3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/minirocket-fast-er-and-accurate-time-series-classification-cdacca2dcbfa - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/devops-cloud-it-career/install-and-run-azure-cli-on-mac-610556521 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-apply-k-means-clustering-to-time-series-data-28d04a8f7da3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-run-jupyter-notebook-on-docker-7c9748ed209f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jkimera5/build-and-deploy-machine-learning-pipelines-with-pycaret-docker-kubernetes-and-aws-ecs-fargate-2213d7128499 - 2023-10-06 - monthly - 1.0 - - - - https://benenewton.medium.com/my-obsidian-daily-note-template-a4bdab53dc62 - 2023-10-06 - monthly - 1.0 - - - - https://itnext.io/a-beginners-guide-to-networking-in-docker-ca5b822fb935 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/jspoint/a-beginners-guide-to-react-server-side-rendering-ssr-bf3853841d55 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/performance-testing-note-of-diffusers-with-pytorch-2-0-fbe96054258c - 2023-10-06 - monthly - 1.0 - - - - https://benenewton.medium.com/automating-my-obsidian-daily-note-e3cdf4591c5c - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/hackernoon/learn-code-for-free-online-31c623514fca - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/building-a-python-data-pipeline-to-apache-cassandra-on-a-docker-container-fc757fbfafdd - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/optimize-pytorch-performance-for-speed-and-memory-efficiency-2022-84f453916ea6 - 2023-10-06 - monthly - 1.0 - - - - https://stevenpcurtis.medium.com/use-uicollectionviewflowlayout-and-let-it-rotate-dbc42bdb0b0 - 2023-10-06 - monthly - 1.0 - - - - https://www.cantorsparadise.com/1988-imo-question-six-2ef095cd23c6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/backyard-theology/guess-whos-going-to-hell-according-to-my-high-school-bible-teacher-3876ab4e0c66 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/multiple-instance-learning-c49bd21f5620 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@justmcLaughlin/common-personal-branding-mistakes-60d07451274b - 2023-10-06 - monthly - 1.0 - - - - https://lawtonpybus.medium.com/building-and-evaluating-ux-research-portfolios-f191f83bd713 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/ios-17-the-top-5-killer-new-features-ecc32ce2a633 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/single-sign-on-sso-saml-oauth2-oidc-simplified-cf54b749ef39 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/advanced-typescript-with-code-challenges-conditional-types-8dd4e63818a5 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/bayesian-marketing-mix-modeling-in-python-via-pymc3-7b2071f6001a - 2023-10-06 - monthly - 1.0 - - - - https://blog.devgenius.io/running-kafka-servers-with-testcontainers-in-node-js-53ab2ad9d453 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-hotwife-collective/giving-him-what-my-husband-cant-have-1a60ce5c3e67 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/6-pandas-display-options-you-should-memories-84adf8887bc3 - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/heres-how-to-take-better-notes-according-to-research-3cc3aac726d2 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@maria.hatfield/apache-kafka-optimization-587b07c3ab07 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/bert-s-for-relation-extraction-in-nlp-2c7c3ab487c4 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/how-to-automate-entity-extraction-from-pdf-using-llms-ea9c1351f531 - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/pomodoro-technique-magic-leverage-it-to-improve-well-being-not-just-focus-b0281e3f3f79 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/multi-class-metrics-made-simple-part-ii-the-f1-score-ebe8b2c2ca1 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/a-tale-of-two-macro-f1s-8811ddcf8f04 - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/ive-journaled-5x-per-week-for-3-years-here-s-what-i-learned-1cc9c104db24 - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/a-directory-of-advice-that-works-e7a177844a46 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/towards-data-engineering/solutions-to-aws-glue-errors-21be806eddd6 - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/the-japanese-concept-ikigai-is-a-formula-for-happiness-and-meaning-8e497e5afa99 - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/why-you-should-write-a-personal-constitution-69dbe1c7da7d - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/how-to-chart-a-new-course-for-your-life-with-3-simple-diagrams-e9cc6b59c49d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/altostra/multipart-uploads-with-s3-pre-signed-urls-d98712cc4da2 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/data-mesh-pain-points-b4bebca37357 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/recommendation-system-in-python-lightfm-61c85010ce17 - 2023-10-06 - monthly - 1.0 - - - - https://survivingtomorrow.org/an-open-letter-to-airbnb-users-451ebd9ba4eb - 2023-10-06 - monthly - 1.0 - - - - https://betterhumans.pub/five-zone-5-protocols-for-longevity-861a0d09c9ce - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/linuxstories/comparison-of-gzip-bzip2-and-xz-compression-tools-7348ed910c68 - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/animations-inside-a-scrollview-with-swiftui-3b550c18a442 - 2023-10-06 - monthly - 1.0 - - - - https://blog.det.life/why-should-data-engineers-use-docker-81918fd7e90f - 2023-10-06 - monthly - 1.0 - - - - https://nivaaz.medium.com/electrical-engineer-to-software-engineer-131737957554 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@onmyway133/how-to-fit-scrollview-to-content-in-swiftui-1e8c99d517ce - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@daniellefranca96/rumors-about-openai-having-a-model-more-powerful-then-gpt4-bce4f2520603 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/the-stupidly-simple-pieces-of-advice-that-made-me-a-millionaire-faba42c4d550 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@manbobo2012/host-a-minecraft-server-on-google-cloud-with-automatic-deployment-and-backup-f00d49a1a306 - 2023-10-06 - monthly - 1.0 - - - - https://uxdesign.cc/here-are-the-accessibility-scores-for-5-the-most-popular-websites-491085b3bd07 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/design-guide-alerts-f563fa139853 - 2023-10-06 - monthly - 1.0 - - - - https://blog.prototypr.io/10-more-beautiful-icon-sites-for-your-next-project-f8cd3dc12f2e - 2023-10-06 - monthly - 1.0 - - - - https://ryanhouk.medium.com/10-creative-websites-worth-wasting-your-time-on-39844e4e808a - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@jvftuo/mongodb-atlas-worry-free-backups-24093b1e0879 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@selfmasteryguide/10-tested-ways-to-increase-productivity-8dc3348905a1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/chisel-network-tunneling-on-steroids-a28e6273c683 - 2023-10-06 - monthly - 1.0 - - - - https://bin3xish477.medium.com/encrypting-and-decrypting-in-powershell-5990a039ce0 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/the-marcy-lab-school/what-is-the-n-1-problem-in-graphql-dd4921cb3c1a - 2023-10-06 - monthly - 1.0 - - - - https://bin3xish477.medium.com/intro-to-yara-rules-bcedcd49cdc4 - 2023-10-06 - monthly - 1.0 - - - - https://ryanhouk.medium.com/five-daily-use-mac-apps-from-setapp-2322b2792261 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@yuichkun/how-to-retrieve-contribution-graph-data-from-the-github-api-dc3a151b4af - 2023-10-06 - monthly - 1.0 - - - - https://thexssrat.medium.com/the-road-to-oscp-in-2023-ed88f695f349 - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/10-modern-css-layouts-with-one-line-a059846c2140 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/its-time-to-say-goodbye-to-pd-read-csv-and-pd-to-csv-27fbc74e84c5 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/when-pandas-is-not-enough-use-pandasql-d762b9b84b38 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@khew/how-to-setup-freeglut-opengl-toolkit-on-windows-c-45f46acecc20 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/12-difficult-python-questions-you-might-take-days-to-solve-161bba5ad206 - 2023-10-06 - monthly - 1.0 - - - - https://keith-mcnulty.medium.com/a-critical-and-often-misunderstood-fact-about-linear-regression-d2214207cbb4 - 2023-10-06 - monthly - 1.0 - - - - https://madelinetoy.medium.com/my-long-covid-story-symptoms-and-healing-1e9a9886e93a - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/automate-your-stock-screening-using-python-9107dda724c3 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/solid-coding-in-python-1281392a6a94 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/macoclock/ios-16-developer-beta-5-is-out-whats-new-204eefb99013 - 2023-10-06 - monthly - 1.0 - - - - https://akhaledblog.medium.com/alex-battaglia-digital-foundry-interview-d3efa7652c1d - 2023-10-06 - monthly - 1.0 - - - - https://javascript.plainenglish.io/top-10-math-ideas-every-programmer-should-master-8c3c8ccfc175 - 2023-10-06 - monthly - 1.0 - - - - https://zlliu.medium.com/quickstart-coding-your-own-python-telegram-bot-1c3168e04d9d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/ultimate-guide-to-github-student-developer-pack-in-2022-5bebb639bad4 - 2023-10-06 - monthly - 1.0 - - - - https://sweemeng.medium.com/setting-content-disposition-in-s3-9598cefc2ea7 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@timothymugayi/7-ways-to-execute-scheduled-jobs-with-python-47d481d22b91 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@ion28/bit-scrubber-usb-sanitization-kiosk-2d79fe5e29fc - 2023-10-06 - monthly - 1.0 - - - - https://ferie.medium.com/how-to-pass-environment-variables-at-building-time-in-an-angular-application-using-env-files-4ae1a80383c - 2023-10-06 - monthly - 1.0 - - - - https://blog.stackademic.com/why-big-stable-apps-dont-do-flutter-my-personal-observation-2ea9503f07 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/erotica-writing-academy/the-best-self-publishing-companies-for-erotica-shorts-cd0e11399668 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/%EF%B8%8F-sentiment-analysis-aspect-based-opinion-mining-72a75e8c8a6d - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/domain-vs-data-models-the-critical-choice-every-developer-faces-1774714987ea - 2023-10-06 - monthly - 1.0 - - - - https://amir-tech.medium.com/how-i-made-my-first-advanced-telegram-bot-using-python-72f1210c0900 - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/shap-explained-the-way-i-wish-someone-explained-it-to-me-ab81cc69ef30 - 2023-10-06 - monthly - 1.0 - - - - https://levelup.gitconnected.com/efficient-data-model-migration-mastering-core-data-with-swift-for-ios-c12a73a18676 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@marvelgomulya/dont-be-a-nice-person-9aa3f9bca28d - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/data-preprocessing-with-python-pandas-part-5-binning-c5bd5fd1b950 - 2023-10-06 - monthly - 1.0 - - - - https://medium.datadriveninvestor.com/the-supertrend-implementing-screening-backtesting-in-python-70e8f88f383d - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/geekculture/how-to-make-real-money-with-python-and-youtube-494bb34ca9ac - 2023-10-06 - monthly - 1.0 - - - - https://betterprogramming.pub/managing-environments-for-provisional-builds-with-react-app-1fb411e3597 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/javarevisited/five-mistakes-to-avoid-in-reactive-java-786927ffd2f6 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/databasss/on-disk-io-part-1-flavours-of-io-8e1ace1de017 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/@islizeqiang/openai-and-andrew-ngs-chatgpt-prompt-engineering-course-guidelines-and-summary-f2fef07b226f - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/bytehide/net-webhooks-your-dummys-guide-1dfd92b963c1 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/swlh/understanding-closures-in-rust-21f286ed1759 - 2023-10-06 - monthly - 1.0 - - - - https://medium.com/avi-parshan-studios/how-to-unlock-country-restricted-apps-in-the-samsung-galaxy-store-b9b0ca9e1d6c - 2023-10-06 - monthly - 1.0 - - - - https://towardsdatascience.com/natural-language-to-sql-use-it-on-your-own-database-d4cd5784d081 - 2023-10-06 - monthly - 1.0 - - - \ No newline at end of file diff --git a/.env_template b/web/.env_template similarity index 100% rename from .env_template rename to web/.env_template diff --git a/poetry.lock b/web/poetry.lock similarity index 60% rename from poetry.lock rename to web/poetry.lock index 6c28745..46b50cc 100644 --- a/poetry.lock +++ b/web/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.3 and should not be changed by hand. [[package]] name = "annotated-types" @@ -32,32 +32,48 @@ test = ["anyio[trio]", "coverage[toml] (>=7)", "hypothesis (>=4.0)", "psutil (>= trio = ["trio (>=0.22)"] [[package]] -name = "apscheduler" -version = "3.10.4" -description = "In-process task scheduler with Cron-like capabilities" +name = "black" +version = "24.8.0" +description = "The uncompromising code formatter." optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "APScheduler-3.10.4-py3-none-any.whl", hash = "sha256:fb91e8a768632a4756a585f79ec834e0e27aad5860bac7eaa523d9ccefd87661"}, - {file = "APScheduler-3.10.4.tar.gz", hash = "sha256:e6df071b27d9be898e486bc7940a7be50b4af2e9da7c08f0744a96d4bd4cef4a"}, + {file = "black-24.8.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:09cdeb74d494ec023ded657f7092ba518e8cf78fa8386155e4a03fdcc44679e6"}, + {file = "black-24.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:81c6742da39f33b08e791da38410f32e27d632260e599df7245cccee2064afeb"}, + {file = "black-24.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:707a1ca89221bc8a1a64fb5e15ef39cd755633daa672a9db7498d1c19de66a42"}, + {file = "black-24.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:d6417535d99c37cee4091a2f24eb2b6d5ec42b144d50f1f2e436d9fe1916fe1a"}, + {file = "black-24.8.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fb6e2c0b86bbd43dee042e48059c9ad7830abd5c94b0bc518c0eeec57c3eddc1"}, + {file = "black-24.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:837fd281f1908d0076844bc2b801ad2d369c78c45cf800cad7b61686051041af"}, + {file = "black-24.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:62e8730977f0b77998029da7971fa896ceefa2c4c4933fcd593fa599ecbf97a4"}, + {file = "black-24.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:72901b4913cbac8972ad911dc4098d5753704d1f3c56e44ae8dce99eecb0e3af"}, + {file = "black-24.8.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:7c046c1d1eeb7aea9335da62472481d3bbf3fd986e093cffd35f4385c94ae368"}, + {file = "black-24.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:649f6d84ccbae73ab767e206772cc2d7a393a001070a4c814a546afd0d423aed"}, + {file = "black-24.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2b59b250fdba5f9a9cd9d0ece6e6d993d91ce877d121d161e4698af3eb9c1018"}, + {file = "black-24.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:6e55d30d44bed36593c3163b9bc63bf58b3b30e4611e4d88a0c3c239930ed5b2"}, + {file = "black-24.8.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:505289f17ceda596658ae81b61ebbe2d9b25aa78067035184ed0a9d855d18afd"}, + {file = "black-24.8.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b19c9ad992c7883ad84c9b22aaa73562a16b819c1d8db7a1a1a49fb7ec13c7d2"}, + {file = "black-24.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1f13f7f386f86f8121d76599114bb8c17b69d962137fc70efe56137727c7047e"}, + {file = "black-24.8.0-cp38-cp38-win_amd64.whl", hash = "sha256:f490dbd59680d809ca31efdae20e634f3fae27fba3ce0ba3208333b713bc3920"}, + {file = "black-24.8.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:eab4dd44ce80dea27dc69db40dab62d4ca96112f87996bca68cd75639aeb2e4c"}, + {file = "black-24.8.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3c4285573d4897a7610054af5a890bde7c65cb466040c5f0c8b732812d7f0e5e"}, + {file = "black-24.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9e84e33b37be070ba135176c123ae52a51f82306def9f7d063ee302ecab2cf47"}, + {file = "black-24.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:73bbf84ed136e45d451a260c6b73ed674652f90a2b3211d6a35e78054563a9bb"}, + {file = "black-24.8.0-py3-none-any.whl", hash = "sha256:972085c618ee94f402da1af548a4f218c754ea7e5dc70acb168bfaca4c2542ed"}, + {file = "black-24.8.0.tar.gz", hash = "sha256:2500945420b6784c38b9ee885af039f5e7471ef284ab03fa35ecdde4688cd83f"}, ] [package.dependencies] -pytz = "*" -six = ">=1.4.0" -tzlocal = ">=2.0,<3.dev0 || >=4.dev0" +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" [package.extras] -doc = ["sphinx", "sphinx-rtd-theme"] -gevent = ["gevent"] -mongodb = ["pymongo (>=3.0)"] -redis = ["redis (>=3.0)"] -rethinkdb = ["rethinkdb (>=2.4.0)"] -sqlalchemy = ["sqlalchemy (>=1.4)"] -testing = ["pytest", "pytest-asyncio", "pytest-cov", "pytest-tornado5"] -tornado = ["tornado (>=4.3)"] -twisted = ["twisted"] -zookeeper = ["kazoo"] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)", "aiohttp (>=3.7.4,!=3.9.0)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] [[package]] name = "certifi" @@ -95,6 +111,55 @@ files = [ {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, ] +[[package]] +name = "cssbeautifier" +version = "1.15.1" +description = "CSS unobfuscator and beautifier." +optional = false +python-versions = "*" +files = [ + {file = "cssbeautifier-1.15.1.tar.gz", hash = "sha256:9f7064362aedd559c55eeecf6b6bed65e05f33488dcbe39044f0403c26e1c006"}, +] + +[package.dependencies] +editorconfig = ">=0.12.2" +jsbeautifier = "*" +six = ">=1.13.0" + +[[package]] +name = "djlint" +version = "1.35.2" +description = "HTML Template Linter and Formatter" +optional = false +python-versions = "<4.0,>=3.8" +files = [ + {file = "djlint-1.35.2-py3-none-any.whl", hash = "sha256:4ba995bad378f2afa77c8ea56ba1c14429d9ff26a18e8ae23bc71eedb9152243"}, + {file = "djlint-1.35.2.tar.gz", hash = "sha256:318de9d4b9b0061a111f8f5164ecbacd8215f449dd4bd5a76d2a691c815ee103"}, +] + +[package.dependencies] +click = ">=8.0.1" +colorama = ">=0.4.4" +cssbeautifier = ">=1.14.4" +html-tag-names = ">=0.1.2" +html-void-elements = ">=0.1.0" +jsbeautifier = ">=1.14.4" +json5 = ">=0.9.11" +pathspec = ">=0.12.0" +PyYAML = ">=6.0" +regex = ">=2023" +tqdm = ">=4.62.2" + +[[package]] +name = "editorconfig" +version = "0.12.4" +description = "EditorConfig File Locator and Interpreter for Python" +optional = false +python-versions = "*" +files = [ + {file = "EditorConfig-0.12.4.tar.gz", hash = "sha256:24857fa1793917dd9ccf0c7810a07e05404ce9b823521c7dce22a4fb5d125f80"}, +] + [[package]] name = "fastapi" version = "0.108.0" @@ -248,6 +313,28 @@ files = [ {file = "hiredis-3.0.0.tar.gz", hash = "sha256:fed8581ae26345dea1f1e0d1a96e05041a727a45e7d8d459164583e23c6ac441"}, ] +[[package]] +name = "html-tag-names" +version = "0.1.2" +description = "List of known HTML tag names" +optional = false +python-versions = ">=3.7,<4.0" +files = [ + {file = "html-tag-names-0.1.2.tar.gz", hash = "sha256:04924aca48770f36b5a41c27e4d917062507be05118acb0ba869c97389084297"}, + {file = "html_tag_names-0.1.2-py3-none-any.whl", hash = "sha256:eeb69ef21078486b615241f0393a72b41352c5219ee648e7c61f5632d26f0420"}, +] + +[[package]] +name = "html-void-elements" +version = "0.1.0" +description = "List of HTML void tag names." +optional = false +python-versions = ">=3.7,<4.0" +files = [ + {file = "html-void-elements-0.1.0.tar.gz", hash = "sha256:931b88f84cd606fee0b582c28fcd00e41d7149421fb673e1e1abd2f0c4f231f0"}, + {file = "html_void_elements-0.1.0-py3-none-any.whl", hash = "sha256:784cf39db03cdeb017320d9301009f8f3480f9d7b254d0974272e80e0cb5e0d2"}, +] + [[package]] name = "html5lib" version = "1.1" @@ -297,6 +384,31 @@ MarkupSafe = ">=2.0" [package.extras] i18n = ["Babel (>=2.7)"] +[[package]] +name = "jsbeautifier" +version = "1.15.1" +description = "JavaScript unobfuscator and beautifier." +optional = false +python-versions = "*" +files = [ + {file = "jsbeautifier-1.15.1.tar.gz", hash = "sha256:ebd733b560704c602d744eafc839db60a1ee9326e30a2a80c4adb8718adc1b24"}, +] + +[package.dependencies] +editorconfig = ">=0.12.2" +six = ">=1.13.0" + +[[package]] +name = "json5" +version = "0.9.25" +description = "A Python implementation of the JSON5 data format." +optional = false +python-versions = ">=3.8" +files = [ + {file = "json5-0.9.25-py3-none-any.whl", hash = "sha256:34ed7d834b1341a86987ed52f3f76cd8ee184394906b6e22a1e0deb9ab294e8f"}, + {file = "json5-0.9.25.tar.gz", hash = "sha256:548e41b9be043f9426776f05df8635a00fe06104ea51ed24b67f908856e151ae"}, +] + [[package]] name = "loguru" version = "0.6.0" @@ -384,6 +496,17 @@ files = [ {file = "MarkupSafe-2.1.5.tar.gz", hash = "sha256:d283d37a890ba4c1ae73ffadf8046435c76e7bc2247bbb63c00bd1a709c6544b"}, ] +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + [[package]] name = "packaging" version = "24.1" @@ -395,6 +518,17 @@ files = [ {file = "packaging-24.1.tar.gz", hash = "sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002"}, ] +[[package]] +name = "pathspec" +version = "0.12.1" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.8" +files = [ + {file = "pathspec-0.12.1-py3-none-any.whl", hash = "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08"}, + {file = "pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712"}, +] + [[package]] name = "pickledb" version = "0.9.2" @@ -405,6 +539,22 @@ files = [ {file = "pickleDB-0.9.2.tar.gz", hash = "sha256:ec6973e65d7d112849e78ce522840aa908efb2523470bb8ce5c7942310192240"}, ] +[[package]] +name = "platformdirs" +version = "4.3.6" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`." +optional = false +python-versions = ">=3.8" +files = [ + {file = "platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb"}, + {file = "platformdirs-4.3.6.tar.gz", hash = "sha256:357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907"}, +] + +[package.extras] +docs = ["furo (>=2024.8.6)", "proselint (>=0.14)", "sphinx (>=8.0.2)", "sphinx-autodoc-typehints (>=2.4)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.3.2)", "pytest-cov (>=5)", "pytest-mock (>=3.14)"] +type = ["mypy (>=1.11.2)"] + [[package]] name = "pydantic" version = "2.8.2" @@ -529,14 +679,65 @@ files = [ typing-extensions = ">=4.6.0,<4.7.0 || >4.7.0" [[package]] -name = "pytz" -version = "2024.1" -description = "World timezone definitions, modern and historical" +name = "pyyaml" +version = "6.0.2" +description = "YAML parser and emitter for Python" optional = false -python-versions = "*" +python-versions = ">=3.8" files = [ - {file = "pytz-2024.1-py2.py3-none-any.whl", hash = "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319"}, - {file = "pytz-2024.1.tar.gz", hash = "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812"}, + {file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086"}, + {file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed"}, + {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180"}, + {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68"}, + {file = "PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99"}, + {file = "PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e"}, + {file = "PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774"}, + {file = "PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85"}, + {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4"}, + {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e"}, + {file = "PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5"}, + {file = "PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44"}, + {file = "PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab"}, + {file = "PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476"}, + {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48"}, + {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b"}, + {file = "PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4"}, + {file = "PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8"}, + {file = "PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba"}, + {file = "PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5"}, + {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc"}, + {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652"}, + {file = "PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183"}, + {file = "PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563"}, + {file = "PyYAML-6.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083"}, + {file = "PyYAML-6.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706"}, + {file = "PyYAML-6.0.2-cp38-cp38-win32.whl", hash = "sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a"}, + {file = "PyYAML-6.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff"}, + {file = "PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d"}, + {file = "PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19"}, + {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e"}, + {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725"}, + {file = "PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631"}, + {file = "PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8"}, + {file = "pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"}, ] [[package]] @@ -557,6 +758,136 @@ hiredis = {version = ">=1.0.0", optional = true, markers = "extra == \"hiredis\" hiredis = ["hiredis (>=1.0.0)"] ocsp = ["cryptography (>=36.0.1)", "pyopenssl (==20.0.1)", "requests (>=2.26.0)"] +[[package]] +name = "regex" +version = "2024.9.11" +description = "Alternative regular expression module, to replace re." +optional = false +python-versions = ">=3.8" +files = [ + {file = "regex-2024.9.11-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:1494fa8725c285a81d01dc8c06b55287a1ee5e0e382d8413adc0a9197aac6408"}, + {file = "regex-2024.9.11-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0e12c481ad92d129c78f13a2a3662317e46ee7ef96c94fd332e1c29131875b7d"}, + {file = "regex-2024.9.11-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:16e13a7929791ac1216afde26f712802e3df7bf0360b32e4914dca3ab8baeea5"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:46989629904bad940bbec2106528140a218b4a36bb3042d8406980be1941429c"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a906ed5e47a0ce5f04b2c981af1c9acf9e8696066900bf03b9d7879a6f679fc8"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e9a091b0550b3b0207784a7d6d0f1a00d1d1c8a11699c1a4d93db3fbefc3ad35"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ddcd9a179c0a6fa8add279a4444015acddcd7f232a49071ae57fa6e278f1f71"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6b41e1adc61fa347662b09398e31ad446afadff932a24807d3ceb955ed865cc8"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ced479f601cd2f8ca1fd7b23925a7e0ad512a56d6e9476f79b8f381d9d37090a"}, + {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:635a1d96665f84b292e401c3d62775851aedc31d4f8784117b3c68c4fcd4118d"}, + {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:c0256beda696edcf7d97ef16b2a33a8e5a875affd6fa6567b54f7c577b30a137"}, + {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:3ce4f1185db3fbde8ed8aa223fc9620f276c58de8b0d4f8cc86fd1360829edb6"}, + {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:09d77559e80dcc9d24570da3745ab859a9cf91953062e4ab126ba9d5993688ca"}, + {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7a22ccefd4db3f12b526eccb129390942fe874a3a9fdbdd24cf55773a1faab1a"}, + {file = "regex-2024.9.11-cp310-cp310-win32.whl", hash = "sha256:f745ec09bc1b0bd15cfc73df6fa4f726dcc26bb16c23a03f9e3367d357eeedd0"}, + {file = "regex-2024.9.11-cp310-cp310-win_amd64.whl", hash = "sha256:01c2acb51f8a7d6494c8c5eafe3d8e06d76563d8a8a4643b37e9b2dd8a2ff623"}, + {file = "regex-2024.9.11-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:2cce2449e5927a0bf084d346da6cd5eb016b2beca10d0013ab50e3c226ffc0df"}, + {file = "regex-2024.9.11-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3b37fa423beefa44919e009745ccbf353d8c981516e807995b2bd11c2c77d268"}, + {file = "regex-2024.9.11-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:64ce2799bd75039b480cc0360907c4fb2f50022f030bf9e7a8705b636e408fad"}, + {file = "regex-2024.9.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a4cc92bb6db56ab0c1cbd17294e14f5e9224f0cc6521167ef388332604e92679"}, + {file = "regex-2024.9.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d05ac6fa06959c4172eccd99a222e1fbf17b5670c4d596cb1e5cde99600674c4"}, + {file = "regex-2024.9.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:040562757795eeea356394a7fb13076ad4f99d3c62ab0f8bdfb21f99a1f85664"}, + {file = "regex-2024.9.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6113c008a7780792efc80f9dfe10ba0cd043cbf8dc9a76ef757850f51b4edc50"}, + {file = "regex-2024.9.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8e5fb5f77c8745a60105403a774fe2c1759b71d3e7b4ca237a5e67ad066c7199"}, + {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:54d9ff35d4515debf14bc27f1e3b38bfc453eff3220f5bce159642fa762fe5d4"}, + {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:df5cbb1fbc74a8305b6065d4ade43b993be03dbe0f8b30032cced0d7740994bd"}, + {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:7fb89ee5d106e4a7a51bce305ac4efb981536301895f7bdcf93ec92ae0d91c7f"}, + {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:a738b937d512b30bf75995c0159c0ddf9eec0775c9d72ac0202076c72f24aa96"}, + {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e28f9faeb14b6f23ac55bfbbfd3643f5c7c18ede093977f1df249f73fd22c7b1"}, + {file = "regex-2024.9.11-cp311-cp311-win32.whl", hash = "sha256:18e707ce6c92d7282dfce370cd205098384b8ee21544e7cb29b8aab955b66fa9"}, + {file = "regex-2024.9.11-cp311-cp311-win_amd64.whl", hash = "sha256:313ea15e5ff2a8cbbad96ccef6be638393041b0a7863183c2d31e0c6116688cf"}, + {file = "regex-2024.9.11-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:b0d0a6c64fcc4ef9c69bd5b3b3626cc3776520a1637d8abaa62b9edc147a58f7"}, + {file = "regex-2024.9.11-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:49b0e06786ea663f933f3710a51e9385ce0cba0ea56b67107fd841a55d56a231"}, + {file = "regex-2024.9.11-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5b513b6997a0b2f10e4fd3a1313568e373926e8c252bd76c960f96fd039cd28d"}, + {file = "regex-2024.9.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ee439691d8c23e76f9802c42a95cfeebf9d47cf4ffd06f18489122dbb0a7ad64"}, + {file = "regex-2024.9.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a8f877c89719d759e52783f7fe6e1c67121076b87b40542966c02de5503ace42"}, + {file = "regex-2024.9.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23b30c62d0f16827f2ae9f2bb87619bc4fba2044911e2e6c2eb1af0161cdb766"}, + {file = "regex-2024.9.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:85ab7824093d8f10d44330fe1e6493f756f252d145323dd17ab6b48733ff6c0a"}, + {file = "regex-2024.9.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8dee5b4810a89447151999428fe096977346cf2f29f4d5e29609d2e19e0199c9"}, + {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:98eeee2f2e63edae2181c886d7911ce502e1292794f4c5ee71e60e23e8d26b5d"}, + {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:57fdd2e0b2694ce6fc2e5ccf189789c3e2962916fb38779d3e3521ff8fe7a822"}, + {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:d552c78411f60b1fdaafd117a1fca2f02e562e309223b9d44b7de8be451ec5e0"}, + {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:a0b2b80321c2ed3fcf0385ec9e51a12253c50f146fddb2abbb10f033fe3d049a"}, + {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:18406efb2f5a0e57e3a5881cd9354c1512d3bb4f5c45d96d110a66114d84d23a"}, + {file = "regex-2024.9.11-cp312-cp312-win32.whl", hash = "sha256:e464b467f1588e2c42d26814231edecbcfe77f5ac414d92cbf4e7b55b2c2a776"}, + {file = "regex-2024.9.11-cp312-cp312-win_amd64.whl", hash = "sha256:9e8719792ca63c6b8340380352c24dcb8cd7ec49dae36e963742a275dfae6009"}, + {file = "regex-2024.9.11-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:c157bb447303070f256e084668b702073db99bbb61d44f85d811025fcf38f784"}, + {file = "regex-2024.9.11-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:4db21ece84dfeefc5d8a3863f101995de646c6cb0536952c321a2650aa202c36"}, + {file = "regex-2024.9.11-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:220e92a30b426daf23bb67a7962900ed4613589bab80382be09b48896d211e92"}, + {file = "regex-2024.9.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eb1ae19e64c14c7ec1995f40bd932448713d3c73509e82d8cd7744dc00e29e86"}, + {file = "regex-2024.9.11-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f47cd43a5bfa48f86925fe26fbdd0a488ff15b62468abb5d2a1e092a4fb10e85"}, + {file = "regex-2024.9.11-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9d4a76b96f398697fe01117093613166e6aa8195d63f1b4ec3f21ab637632963"}, + {file = "regex-2024.9.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ea51dcc0835eea2ea31d66456210a4e01a076d820e9039b04ae8d17ac11dee6"}, + {file = "regex-2024.9.11-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b7aaa315101c6567a9a45d2839322c51c8d6e81f67683d529512f5bcfb99c802"}, + {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c57d08ad67aba97af57a7263c2d9006d5c404d721c5f7542f077f109ec2a4a29"}, + {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:f8404bf61298bb6f8224bb9176c1424548ee1181130818fcd2cbffddc768bed8"}, + {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:dd4490a33eb909ef5078ab20f5f000087afa2a4daa27b4c072ccb3cb3050ad84"}, + {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:eee9130eaad130649fd73e5cd92f60e55708952260ede70da64de420cdcad554"}, + {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a2644a93da36c784e546de579ec1806bfd2763ef47babc1b03d765fe560c9f8"}, + {file = "regex-2024.9.11-cp313-cp313-win32.whl", hash = "sha256:e997fd30430c57138adc06bba4c7c2968fb13d101e57dd5bb9355bf8ce3fa7e8"}, + {file = "regex-2024.9.11-cp313-cp313-win_amd64.whl", hash = "sha256:042c55879cfeb21a8adacc84ea347721d3d83a159da6acdf1116859e2427c43f"}, + {file = "regex-2024.9.11-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:35f4a6f96aa6cb3f2f7247027b07b15a374f0d5b912c0001418d1d55024d5cb4"}, + {file = "regex-2024.9.11-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:55b96e7ce3a69a8449a66984c268062fbaa0d8ae437b285428e12797baefce7e"}, + {file = "regex-2024.9.11-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:cb130fccd1a37ed894824b8c046321540263013da72745d755f2d35114b81a60"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:323c1f04be6b2968944d730e5c2091c8c89767903ecaa135203eec4565ed2b2b"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:be1c8ed48c4c4065ecb19d882a0ce1afe0745dfad8ce48c49586b90a55f02366"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b5b029322e6e7b94fff16cd120ab35a253236a5f99a79fb04fda7ae71ca20ae8"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f6fff13ef6b5f29221d6904aa816c34701462956aa72a77f1f151a8ec4f56aeb"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:587d4af3979376652010e400accc30404e6c16b7df574048ab1f581af82065e4"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:079400a8269544b955ffa9e31f186f01d96829110a3bf79dc338e9910f794fca"}, + {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:f9268774428ec173654985ce55fc6caf4c6d11ade0f6f914d48ef4719eb05ebb"}, + {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:23f9985c8784e544d53fc2930fc1ac1a7319f5d5332d228437acc9f418f2f168"}, + {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:ae2941333154baff9838e88aa71c1d84f4438189ecc6021a12c7573728b5838e"}, + {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:e93f1c331ca8e86fe877a48ad64e77882c0c4da0097f2212873a69bbfea95d0c"}, + {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:846bc79ee753acf93aef4184c040d709940c9d001029ceb7b7a52747b80ed2dd"}, + {file = "regex-2024.9.11-cp38-cp38-win32.whl", hash = "sha256:c94bb0a9f1db10a1d16c00880bdebd5f9faf267273b8f5bd1878126e0fbde771"}, + {file = "regex-2024.9.11-cp38-cp38-win_amd64.whl", hash = "sha256:2b08fce89fbd45664d3df6ad93e554b6c16933ffa9d55cb7e01182baaf971508"}, + {file = "regex-2024.9.11-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:07f45f287469039ffc2c53caf6803cd506eb5f5f637f1d4acb37a738f71dd066"}, + {file = "regex-2024.9.11-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4838e24ee015101d9f901988001038f7f0d90dc0c3b115541a1365fb439add62"}, + {file = "regex-2024.9.11-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6edd623bae6a737f10ce853ea076f56f507fd7726bee96a41ee3d68d347e4d16"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c69ada171c2d0e97a4b5aa78fbb835e0ffbb6b13fc5da968c09811346564f0d3"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:02087ea0a03b4af1ed6ebab2c54d7118127fee8d71b26398e8e4b05b78963199"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:69dee6a020693d12a3cf892aba4808fe168d2a4cef368eb9bf74f5398bfd4ee8"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:297f54910247508e6e5cae669f2bc308985c60540a4edd1c77203ef19bfa63ca"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ecea58b43a67b1b79805f1a0255730edaf5191ecef84dbc4cc85eb30bc8b63b9"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:eab4bb380f15e189d1313195b062a6aa908f5bd687a0ceccd47c8211e9cf0d4a"}, + {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:0cbff728659ce4bbf4c30b2a1be040faafaa9eca6ecde40aaff86f7889f4ab39"}, + {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:54c4a097b8bc5bb0dfc83ae498061d53ad7b5762e00f4adaa23bee22b012e6ba"}, + {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:73d6d2f64f4d894c96626a75578b0bf7d9e56dcda8c3d037a2118fdfe9b1c664"}, + {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:e53b5fbab5d675aec9f0c501274c467c0f9a5d23696cfc94247e1fb56501ed89"}, + {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0ffbcf9221e04502fc35e54d1ce9567541979c3fdfb93d2c554f0ca583a19b35"}, + {file = "regex-2024.9.11-cp39-cp39-win32.whl", hash = "sha256:e4c22e1ac1f1ec1e09f72e6c44d8f2244173db7eb9629cc3a346a8d7ccc31142"}, + {file = "regex-2024.9.11-cp39-cp39-win_amd64.whl", hash = "sha256:faa3c142464efec496967359ca99696c896c591c56c53506bac1ad465f66e919"}, + {file = "regex-2024.9.11.tar.gz", hash = "sha256:6c188c307e8433bcb63dc1915022deb553b4203a70722fc542c363bf120a01fd"}, +] + +[[package]] +name = "ruff" +version = "0.6.6" +description = "An extremely fast Python linter and code formatter, written in Rust." +optional = false +python-versions = ">=3.7" +files = [ + {file = "ruff-0.6.6-py3-none-linux_armv6l.whl", hash = "sha256:f5bc5398457484fc0374425b43b030e4668ed4d2da8ee7fdda0e926c9f11ccfb"}, + {file = "ruff-0.6.6-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:515a698254c9c47bb84335281a170213b3ee5eb47feebe903e1be10087a167ce"}, + {file = "ruff-0.6.6-py3-none-macosx_11_0_arm64.whl", hash = "sha256:6bb1b4995775f1837ab70f26698dd73852bbb82e8f70b175d2713c0354fe9182"}, + {file = "ruff-0.6.6-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69c546f412dfae8bb9cc4f27f0e45cdd554e42fecbb34f03312b93368e1cd0a6"}, + {file = "ruff-0.6.6-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:59627e97364329e4eae7d86fa7980c10e2b129e2293d25c478ebcb861b3e3fd6"}, + {file = "ruff-0.6.6-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:94c3f78c3d32190aafbb6bc5410c96cfed0a88aadb49c3f852bbc2aa9783a7d8"}, + {file = "ruff-0.6.6-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:704da526c1e137f38c8a067a4a975fe6834b9f8ba7dbc5fd7503d58148851b8f"}, + {file = "ruff-0.6.6-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:efeede5815a24104579a0f6320660536c5ffc1c91ae94f8c65659af915fb9de9"}, + {file = "ruff-0.6.6-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e368aef0cc02ca3593eae2fb8186b81c9c2b3f39acaaa1108eb6b4d04617e61f"}, + {file = "ruff-0.6.6-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2653fc3b2a9315bd809725c88dd2446550099728d077a04191febb5ea79a4f79"}, + {file = "ruff-0.6.6-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:bb858cd9ce2d062503337c5b9784d7b583bcf9d1a43c4df6ccb5eab774fbafcb"}, + {file = "ruff-0.6.6-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:488f8e15c01ea9afb8c0ba35d55bd951f484d0c1b7c5fd746ce3c47ccdedce68"}, + {file = "ruff-0.6.6-py3-none-musllinux_1_2_i686.whl", hash = "sha256:aefb0bd15f1cfa4c9c227b6120573bb3d6c4ee3b29fb54a5ad58f03859bc43c6"}, + {file = "ruff-0.6.6-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:a4c0698cc780bcb2c61496cbd56b6a3ac0ad858c966652f7dbf4ceb029252fbe"}, + {file = "ruff-0.6.6-py3-none-win32.whl", hash = "sha256:aadf81ddc8ab5b62da7aae78a91ec933cbae9f8f1663ec0325dae2c364e4ad84"}, + {file = "ruff-0.6.6-py3-none-win_amd64.whl", hash = "sha256:0adb801771bc1f1b8cf4e0a6fdc30776e7c1894810ff3b344e50da82ef50eeb1"}, + {file = "ruff-0.6.6-py3-none-win_arm64.whl", hash = "sha256:4b4d32c137bc781c298964dd4e52f07d6f7d57c03eae97a72d97856844aa510a"}, + {file = "ruff-0.6.6.tar.gz", hash = "sha256:0fc030b6fd14814d69ac0196396f6761921bd20831725c7361e1b8100b818034"}, +] + [[package]] name = "sentry-sdk" version = "1.29.2" @@ -639,6 +970,26 @@ anyio = ">=3.4.0,<5" [package.extras] full = ["httpx (>=0.22.0)", "itsdangerous", "jinja2", "python-multipart", "pyyaml"] +[[package]] +name = "tqdm" +version = "4.66.5" +description = "Fast, Extensible Progress Meter" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd"}, + {file = "tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[package.extras] +dev = ["pytest (>=6)", "pytest-cov", "pytest-timeout", "pytest-xdist"] +notebook = ["ipywidgets (>=6)"] +slack = ["slack-sdk"] +telegram = ["requests"] + [[package]] name = "typing-extensions" version = "4.12.2" @@ -650,34 +1001,6 @@ files = [ {file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"}, ] -[[package]] -name = "tzdata" -version = "2024.1" -description = "Provider of IANA time zone data" -optional = false -python-versions = ">=2" -files = [ - {file = "tzdata-2024.1-py2.py3-none-any.whl", hash = "sha256:9068bc196136463f5245e51efda838afa15aaeca9903f49050dfa2679db4d252"}, - {file = "tzdata-2024.1.tar.gz", hash = "sha256:2674120f8d891909751c38abcdfd386ac0a5a1127954fbc332af6b5ceae07efd"}, -] - -[[package]] -name = "tzlocal" -version = "5.2" -description = "tzinfo object for the local timezone" -optional = false -python-versions = ">=3.8" -files = [ - {file = "tzlocal-5.2-py3-none-any.whl", hash = "sha256:49816ef2fe65ea8ac19d19aa7a1ae0551c834303d5014c6d5a62e4cbda8047b8"}, - {file = "tzlocal-5.2.tar.gz", hash = "sha256:8d399205578f1a9342816409cc1e46a93ebd5755e39ea2d85334bea911bf0e6e"}, -] - -[package.dependencies] -tzdata = {version = "*", markers = "platform_system == \"Windows\""} - -[package.extras] -devenv = ["check-manifest", "pytest (>=4.3)", "pytest-cov", "pytest-mock (>=3.3)", "zest.releaser"] - [[package]] name = "urllib3" version = "2.2.2" @@ -751,4 +1074,4 @@ files = [ [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "c04733f92b42c7d2b4b8b89e8bb4510c7de5048a678b7ccc58969323a072a10f" +content-hash = "4015e3dbdfe37ed67baac4c18550b38bd93664462c449a8a0164134eb5497229" diff --git a/pyproject.toml b/web/pyproject.toml similarity index 86% rename from pyproject.toml rename to web/pyproject.toml index ebc744c..a9db27a 100644 --- a/pyproject.toml +++ b/web/pyproject.toml @@ -19,11 +19,15 @@ fastapi = "0.108.0" gunicorn = "21.2.0" redis = {version = "4.6.0", extras = ["hiredis"]} xkcdpass = "1.19.3" -apscheduler = "3.10.4" loguru = "0.6.0" anyio = "<=4.0.0" +[tool.poetry.group.dev.dependencies] +djlint = "^1.35.2" +ruff = "^0.6.6" +black = "^24.8.0" + [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api" diff --git a/ruff.toml b/web/ruff.toml similarity index 100% rename from ruff.toml rename to web/ruff.toml diff --git a/server/__init__.py b/web/server/__init__.py similarity index 91% rename from server/__init__.py rename to web/server/__init__.py index caba27e..98f8844 100644 --- a/server/__init__.py +++ b/web/server/__init__.py @@ -43,9 +43,9 @@ wait_for_postgres() # logging.basicConfig(handlers=[InterceptHandler()], level=0, force=True) configure_logger() -medium_cache = PostgreSQLCacheBackend("postgresql://postgres:postgres@postgres:5432/postgres") +medium_cache = PostgreSQLCacheBackend(config.DATABASE_URL) medium_cache.init_db() -# migrate_to_postgres_thread = execute_migrate_to_postgres_in_thread("medium_db_cache.sqlite", "postgresql://postgres:postgres@postgres:5432/postgres") + logger.debug(f"Database length: {medium_cache.all_length()}") medium_api = MediumApi(auth_cookies=config.MEDIUM_AUTH_COOKIES, timeout=3, proxy_list=config.PROXY_LIST) diff --git a/server/__main__.py b/web/server/__main__.py similarity index 100% rename from server/__main__.py rename to web/server/__main__.py diff --git a/server/config.py b/web/server/config.py similarity index 86% rename from server/config.py rename to web/server/config.py index cdcd068..0b4da72 100644 --- a/server/config.py +++ b/web/server/config.py @@ -30,9 +30,11 @@ REDIS_HOST = config("REDIS_HOST", default="redis_service") REDIS_PORT = config("REDIS_PORT", cast=int, default=6379) REDIS_TIMEOUT = config("REDIS_TIMEOUT", cast=int, default=1.75) +DATABASE_URL = config("DATABASE_URL", default="postgresql://postgres:postgres@postgres:5432/postgres") + SENTRY_SDK_DSN = config("SENTRY_SDK_DSN", default=None) SENTRY_TRACES_SAMPLE_RATE = config("SENTRY_TRACES_SAMPLE_RATE", cast=float, default=0.2) SENTRY_PROFILES_SAMPLE_RATE = config("SENTRY_PROFILES_SAMPLE_RATE", cast=float, default=0.2) -_PROXY_LIST = config("PROXY_LIST", cast=str, default="") -PROXY_LIST = _PROXY_LIST.split(",") if _PROXY_LIST else [] +PROXY_LIST_RAW = config("PROXY_LIST", cast=str, default="") +PROXY_LIST = PROXY_LIST_RAW.split(",") if PROXY_LIST_RAW else [] diff --git a/server/exceptions/__init__.py b/web/server/exceptions/__init__.py similarity index 100% rename from server/exceptions/__init__.py rename to web/server/exceptions/__init__.py diff --git a/server/exceptions/main.py b/web/server/exceptions/main.py similarity index 100% rename from server/exceptions/main.py rename to web/server/exceptions/main.py diff --git a/server/handlers/__init__.py b/web/server/handlers/__init__.py similarity index 100% rename from server/handlers/__init__.py rename to web/server/handlers/__init__.py diff --git a/server/handlers/iframe.py b/web/server/handlers/iframe.py similarity index 100% rename from server/handlers/iframe.py rename to web/server/handlers/iframe.py diff --git a/server/handlers/main.py b/web/server/handlers/main.py similarity index 100% rename from server/handlers/main.py rename to web/server/handlers/main.py diff --git a/server/handlers/miro.py b/web/server/handlers/miro.py similarity index 100% rename from server/handlers/miro.py rename to web/server/handlers/miro.py diff --git a/server/handlers/misc.py b/web/server/handlers/misc.py similarity index 100% rename from server/handlers/misc.py rename to web/server/handlers/misc.py diff --git a/server/handlers/post.py b/web/server/handlers/post.py similarity index 100% rename from server/handlers/post.py rename to web/server/handlers/post.py diff --git a/server/main.py b/web/server/main.py similarity index 100% rename from server/main.py rename to web/server/main.py diff --git a/server/middlewares/__init__.py b/web/server/middlewares/__init__.py similarity index 100% rename from server/middlewares/__init__.py rename to web/server/middlewares/__init__.py diff --git a/server/middlewares/logger.py b/web/server/middlewares/logger.py similarity index 100% rename from server/middlewares/logger.py rename to web/server/middlewares/logger.py diff --git a/server/middlewares/maintenance_mode.py b/web/server/middlewares/maintenance_mode.py similarity index 100% rename from server/middlewares/maintenance_mode.py rename to web/server/middlewares/maintenance_mode.py diff --git a/server/utils/__init__.py b/web/server/services/__init__.py similarity index 100% rename from server/utils/__init__.py rename to web/server/services/__init__.py diff --git a/server/services/cli.py b/web/server/services/cli.py similarity index 100% rename from server/services/cli.py rename to web/server/services/cli.py diff --git a/server/services/jinja.py b/web/server/services/jinja.py similarity index 100% rename from server/services/jinja.py rename to web/server/services/jinja.py diff --git a/server/services/server.py b/web/server/services/server.py similarity index 100% rename from server/services/server.py rename to web/server/services/server.py diff --git a/server/services/worker.py b/web/server/services/worker.py similarity index 100% rename from server/services/worker.py rename to web/server/services/worker.py diff --git a/server/templates/base.html b/web/server/templates/base.html similarity index 100% rename from server/templates/base.html rename to web/server/templates/base.html diff --git a/server/templates/error.html b/web/server/templates/error.html similarity index 100% rename from server/templates/error.html rename to web/server/templates/error.html diff --git a/server/templates/homepage.html b/web/server/templates/homepage.html similarity index 100% rename from server/templates/homepage.html rename to web/server/templates/homepage.html diff --git a/server/templates/main.html b/web/server/templates/main.html similarity index 100% rename from server/templates/main.html rename to web/server/templates/main.html diff --git a/server/templates/post.html b/web/server/templates/post.html similarity index 100% rename from server/templates/post.html rename to web/server/templates/post.html diff --git a/web/server/templates/url_box.html b/web/server/templates/url_box.html new file mode 100644 index 0000000..0b29996 --- /dev/null +++ b/web/server/templates/url_box.html @@ -0,0 +1,44 @@ +
+ +
+ diff --git a/web/server/utils/__init__.py b/web/server/utils/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/server/utils/anti_bot.py b/web/server/utils/anti_bot.py similarity index 100% rename from server/utils/anti_bot.py rename to web/server/utils/anti_bot.py diff --git a/server/utils/cache.py b/web/server/utils/cache.py similarity index 100% rename from server/utils/cache.py rename to web/server/utils/cache.py diff --git a/server/utils/error.py b/web/server/utils/error.py similarity index 100% rename from server/utils/error.py rename to web/server/utils/error.py diff --git a/server/utils/exceptions.py b/web/server/utils/exceptions.py similarity index 100% rename from server/utils/exceptions.py rename to web/server/utils/exceptions.py diff --git a/server/utils/logger.py b/web/server/utils/logger.py similarity index 100% rename from server/utils/logger.py rename to web/server/utils/logger.py diff --git a/rl_string_helper/rl_string_helper/logger_trace.py b/web/server/utils/logger_trace.py similarity index 100% rename from rl_string_helper/rl_string_helper/logger_trace.py rename to web/server/utils/logger_trace.py diff --git a/server/utils/loguru_handler.py b/web/server/utils/loguru_handler.py similarity index 100% rename from server/utils/loguru_handler.py rename to web/server/utils/loguru_handler.py diff --git a/server/utils/maintenance_scheduler.py b/web/server/utils/maintenance_scheduler.py similarity index 100% rename from server/utils/maintenance_scheduler.py rename to web/server/utils/maintenance_scheduler.py diff --git a/server/utils/notify.py b/web/server/utils/notify.py similarity index 100% rename from server/utils/notify.py rename to web/server/utils/notify.py diff --git a/server/utils/utils.py b/web/server/utils/utils.py similarity index 100% rename from server/utils/utils.py rename to web/server/utils/utils.py diff --git a/scripts/dante.config b/wgcf/dante/sockd.conf similarity index 100% rename from scripts/dante.config rename to wgcf/dante/sockd.conf diff --git a/scripts/entryWGCF.sh b/wgcf/entry.sh similarity index 100% rename from scripts/entryWGCF.sh rename to wgcf/entry.sh diff --git a/scripts/wgcf-healthcare/Dockerfile b/wgcf/wgcf-healthcare/Dockerfile similarity index 95% rename from scripts/wgcf-healthcare/Dockerfile rename to wgcf/wgcf-healthcare/Dockerfile index be2626d..150c427 100644 --- a/scripts/wgcf-healthcare/Dockerfile +++ b/wgcf/wgcf-healthcare/Dockerfile @@ -12,7 +12,6 @@ RUN CGO_ENABLED=0 GOOS=linux go build -ldflags="-s -w" -o /main ./main.go FROM alpine:3.20 WORKDIR /app -# COPY .env . COPY --from=builder /main . ENTRYPOINT ["/app/main"] \ No newline at end of file diff --git a/scripts/wgcf-healthcare/go.mod b/wgcf/wgcf-healthcare/go.mod similarity index 100% rename from scripts/wgcf-healthcare/go.mod rename to wgcf/wgcf-healthcare/go.mod diff --git a/scripts/wgcf-healthcare/go.sum b/wgcf/wgcf-healthcare/go.sum similarity index 100% rename from scripts/wgcf-healthcare/go.sum rename to wgcf/wgcf-healthcare/go.sum diff --git a/scripts/wgcf-healthcare/main.go b/wgcf/wgcf-healthcare/main.go similarity index 100% rename from scripts/wgcf-healthcare/main.go rename to wgcf/wgcf-healthcare/main.go