Skip to content

Instantly share code, notes, and snippets.

@Andrej1A
Andrej1A / Android-Tint-LottieAnimationView.kt
Created September 11, 2019 14:07
Android Kotlin Tint LottieAnimationView JSON
/**
* Tint LottieAnimationView
*/
private fun LottieAnimationView.tintColor(@ColorInt tintColor: Int) {
addValueCallback(
KeyPath("**"),
LottieProperty.COLOR_FILTER,
{ PorterDuffColorFilter(tintColor, PorterDuff.Mode.SRC_ATOP) }
)
}
@Andrej1A
Andrej1A / Connectivity.java
Created February 14, 2019 10:51 — forked from emil2k/Connectivity.java
Android utility class for checking device's network connectivity and speed.
/*
* Copyright (c) 2017 Emil Davtyan
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
@Andrej1A
Andrej1A / premailer.py
Created February 2, 2019 19:58 — forked from isaac-jordan/premailer.py
An updated version of django-premailer that works with Django 1.9 and Python 3.
# Put in 'templatetags' folder in your Django app.
from __future__ import absolute_import
from django import template
from django.utils.encoding import smart_text
from django.contrib.staticfiles import finders
from django.contrib.staticfiles.storage import staticfiles_storage
from django.conf import settings
from premailer import Premailer
@Andrej1A
Andrej1A / translate.py
Created May 23, 2017 05:31 — forked from jseabold/translate.py
Use Google Translate API from Python
# -*- coding: utf-8 -*-
"""
You need to fill in your API key from google below. Note that querying
supported languages is not implemented.
Language Code
-------- ----
Afrikaans af
Albanian sq
Arabic ar
@Andrej1A
Andrej1A / routers.py
Created May 8, 2017 03:18 — forked from artschwagerb/routers.py
Django Database Routers Master-Slave
import random
class MasterSlaveRouter(object):
def db_for_read(self, model, **hints):
"""
Reads go to a randomly-chosen slave.
"""
return random.choice(['master','slave1', 'slave2'])
def db_for_write(self, model, **hints):
@Andrej1A
Andrej1A / fabfile.py
Created April 11, 2017 06:45 — forked from fiee/fabfile.py
fabric fabfile.py for deployment of django apps on Debian servers
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
fabfile for Django
------------------
see http://morethanseven.net/2009/07/27/fabric-django-git-apache-mod_wsgi-virtualenv-and-p/
modified for fabric 0.9/1.0 by Hraban (fiëé visuëlle)
several additions, corrections and customizations, too
@Andrej1A
Andrej1A / CsvResponse.php
Created November 14, 2015 13:02 — forked from mathewbyrne/CsvResponse.php
A small Symfony 2 class for returning a response as a CSV file. Based on the Symfony JsonResponse class.
<?php
namespace Jb\AdminBundle\Http;
use Symfony\Component\HttpFoundation\Response;
class CsvResponse extends Response
{
protected $data;