Skip to content

Instantly share code, notes, and snippets.

View farhaduneci's full-sized avatar
📚
Learning

Farhad Uneci farhaduneci

📚
Learning
View GitHub Profile
@zzJinux
zzJinux / medium.user.js
Last active April 10, 2025 11:58 — forked from mathix420/medium.user.js
Bypass Medium Paywall fork: do not redirect for free posts
// ==UserScript==
// @name Medium Paywall Bypass
// @namespace Violentmonkey Scripts
// @run-at document-start
// @match *://*.medium.com/*
// @grant none
// @version 2.4_3
// @inject-into content
// @updateURL https://gist.githubusercontent.com/zzJinux/364725e7c61810719286d94e88a4e38c/raw/medium.user.js
// @downloadURL https://gist.githubusercontent.com/zzJinux/364725e7c61810719286d94e88a4e38c/raw/medium.user.js
@cgons
cgons / mac-setup-for-python.md
Last active April 9, 2025 22:58
Python Dev Setup for (M1) Macs
@imomaliev
imomaliev / fields.py
Last active January 12, 2024 14:13 — forked from jpadilla/fields.py
CharacterSeparatedManyField - A Django REST framework field that separates a string with a given separator into a native list and reverts a list into a string separated with a given separator.
from rest_framework import serializers
from rest_framework.fields import empty
from rest_framework.utils import html
class CharacterSeparatedField(serializers.ListField):
"""
Character separated ListField.
Based on https://gist.github.com/jpadilla/8792723.