This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Current time function | |
NOW=$(date +"%Y-%m-%d_%H-%M-%S") | |
# Set output file name | |
FILE="/tmp/inactive_users.$NOW.csv" | |
#ldapsearch -x \ | |
# -H "CHANGEIT" \ # -> LDAP HOST & PORT | |
# -b "CHANGEIT" \ # -> OU USER LOCATION |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.db import models | |
from django.utils import timezone | |
class Post(models.Model): | |
author = models.ForeignKey( | |
'auth.User', | |
on_delete=models.CASCADE, #Cambio incluido | |
) | |
title = models.CharField(max_length=200) | |
text = models.TextField() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"rating": 3.6 | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"active": true, | |
"address": "Calle 32 # 38 D 10", | |
"birthDate": "1990-11-14T00:00:00-05:00", | |
"creationDate": "2017-08-20T19:15:00-05:00", | |
"email": "[email protected]", | |
"genre": "M", | |
"identification": "100", | |
"lang": "ES", | |
"lastname": "Cliente", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print "This is my first Gist!"; |