This file contains 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
my_list = [] | |
def remove_duplicates(lista): | |
no_repeat_list = list(set(lista)) | |
return no_repeat_list | |
def save_to_file(lista, filename): | |
with open(filename, 'w') as file: | |
for element in lista: | |
file.write(str(element) + '\n') |
This file contains 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
function myFunction() { | |
var foldername = 'fotosh'; | |
var folderlisting = 'listing of folder ' + foldername; | |
var folders = DriveApp.getFoldersByName('fotosh'); | |
while (folders.hasNext()) { | |
var folder = folders.next(); | |
var contents = folder.getFiles(); | |
var ss = SpreadsheetApp.create(folderlisting); |
This file contains 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
<form class="formJob" id="formRegistroBT" method="POST" autocomplete="off" data-type="form1"> | |
<!-- Step I --> | |
<fieldset> | |
<ul class="form-list"> | |
<li class="full foto"> | |
<div class="borde"></div> | |
<div class="box-foto"> | |
<div class="foto-user"> | |
<img class="lazy" id="fotoPerfil" src="assets/images/bolsa-de-trabajo/avatar.png" data-src="assets/images/bolsa-de-trabajo/avatar.png" alt="[[+username]]"> | |
</div> |
This file contains 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
models: | |
Article: | |
title: string | |
slug: string unique | |
content: longtext | |
category_id: id | |
user_id: id | |
Category: | |
name: string | |
slug: string unique |