DOMANDE E RISPOSTE ❓❓❓🧐
#scrittura#comunicazione
DOMANDA❓
Qual è il professionista che può valutare il mio contratto editoriale?
RISPOSTA🤓
Il consulente editoriale perché ha una solida formazione nell'analisi della contrattualistica, in genere ha anche una laurea in giurisprudenza o si avvale di una consulenza legale.
Può essere anche un editor con competenze in quest'ambito (l'analisi contrattuale, per esempio, rientra nelle mie competenze con il supporto di un team legale).
La professione di consulente è regolata dalla legge?
✅ Sì, rientra nel Codice Civile, Libro V, titolo III del codice civile, art. 2222 e seguenti che disciplinano il lavoro autonomo.
🤓 Se vuoi saperne di più ti consiglio di leggere il mio articolo "Consulente editoriale: chi è e quando ne hai bisogno".
✍🏻Prima di firmare un contratto di consulenza verifica le competenze del professionista a cui ti affidi. ⏪⏪⏪
@writingway
🙌 Se pensi che questo post possa interessare ad altri, inoltralo cliccando sulla freccia a destra.
http://www.paulbrownmagic.com/blog/python_partial_application
Python Partial: Code Your Intention
Of all the functional programming inspired features in Python, partial application must be the best kept secret that you really need to know. Partial application lets you create highly abstract functions and make them more specific for use, pass a function arguments without calling it yet, and so much more.
#tuple#sort
http://wla.berkeley.edu/~cs61a/fa11/lectures/streams.html
In this chapter, we continue our discussion of real-world applications by developing new tools to process #sequential#data. In Chapter 2, we introduced a sequence interface, implemented in Python by built-in data types such as #tuple and #list. #Sequences supported two operations: querying their length and accessing an element by index. In Chapter 3, we developed a user-defined implementations of the sequence interface, the Rlist class for representing recursive lists. These sequence types proved effective for representing and accessing a wide variety of sequential #datasets.