Skip to content

Instantly share code, notes, and snippets.

View Marhc's full-sized avatar
💡
Code First. Code Fast. Deliver ASAP.

Marcio Coutinho Marhc

💡
Code First. Code Fast. Deliver ASAP.
  • RJ, Brasil
View GitHub Profile
@Marhc
Marhc / gist:27d640d6c8d7a5bdc4adb8122d85a19f
Last active December 23, 2023 17:26 — forked from dodyg/gist:5823184
Kotlin Programming Language Cheat Sheet Part 1

Intro

Kotlin is a new programming language for the JVM. It produces Java bytecode, supports Android and generates JavaScript. The latest version of the language is Kotlin M5.3

Kotlin project website is at kotlin.jetbrains.org.

All the codes here can be copied and run on Kotlin online editor.

Let's get started.

@Marhc
Marhc / audit_mixin.py
Created November 21, 2019 22:40 — forked from techniq/audit_mixin.py
Useful SQLAlchemy Mixins
from datetime import datetime
from sqlalchemy import Column, Integer, DateTime, ForeignKey
from sqlalchemy.orm import relationship
from sqlalchemy.ext.declarative import declared_attr
from flask_security import current_user
class AuditMixin(object):
created_at = Column(DateTime, default=datetime.now)
updated_at = Column(DateTime, default=datetime.now, onupdate=datetime.now)