Skip to content

Instantly share code, notes, and snippets.

View ettoreleandrotognoli's full-sized avatar
🏠
Working from home

Éttore Leandro Tognoli ettoreleandrotognoli

🏠
Working from home
  • RedHat
  • Marília - SP, Brasil
  • X @ettotog
View GitHub Profile
@carlwgeorge
carlwgeorge / gnome.yml
Last active June 6, 2024 20:23
ansible playbook for my gnome setup
# https://docs.ansible.com/ansible/latest/modules/dconf_module.html
#
# To determine what dconf keys and values to use, you can run `dconf watch /`
# in a terminal as you make changes in settings or tweaks. You can also use
# `dconf read <key>` and `dconf write <key> <value>` to experiment with various
# settings. The dconf-editor application is also useful for exploring various
# keys along with their descriptions.
- hosts: localhost
tasks:
# models.py
from django.db import models
class Recipe(models.Model):
title = models.CharField(max_length=255)
description = models.TextField()
class Ingredient(models.Model):
# coding=utf-8
"""
LICENSE http://www.apache.org/licenses/LICENSE-2.0
"""
import datetime
import sys
import time
import threading
import traceback
import SocketServer