Direito 2

4. Princípios Gerais do Direito

Podem ser:

🔹 De natureza material

  • Segurança jurídica

  • Certeza jurídica

  • Confiança legítima

🔹 De natureza formal

Exemplos:

  • Legalidade (art. 3.º CRP)

  • Universalidade (art. 12.º CRP)

  • Igualdade (art. 13.º CRP)

  • Tutela jurisdicional efetiva (art. 20.º CRP)

  • Aplicação das leis no tempo (art. 12.º CC)

➡️ Podem ser gerais, especiais ou autónomos (ex.: ne bis in idem).

5. Costume

Conjunto de práticas sociais reiteradas com convicção

...

See on Wikiteka »

french

Un accident que j'ai vu
La semaine dernière, j'ai été témoin d'un accident à la maison. C'était l'après-midi et je jouais avec quelques jouets dans le salon. Mon petit frère voulait attraper un bocal sur une étagère et il est monté sur une chaise. Il a perdu l'équilibre et est tombé par terre. Il s'est fait mal au bras et il pleurait beaucoup. J'étais très inquiet. J'ai appelé mes parents. Ma mère a nettoyé la plaie avec du désinfectant et a mis un pansement. Mon père a rangé

...

See on Wikiteka »

Political obligation 3

*Concept of Political Obligation*

Political obligation refers to the moral duty of citizens to obey the laws and rules of their government. It's about the relationship between individuals and the state, and the reasons why citizens should respect and follow authority.

*Theories of Political Obligation:*

- *Social Contract Theory*: Citizens consent to be governed in exchange for protection and services (e.g., Hobbes, Locke, Rousseau).

- *Natural Duty Theory*: Citizens have a moral duty to support

...

See on Student Notes »

odontotecnico

Sistemi dei perni a spillo 1Impronta con due elementi (34 e 35) preparati. 2. Utilizziamo in questo caso dei perni doppi, poiché rispetto a quelli singoli presentano una migliore stabilità e precisione nella base. 3. I perni a spillo vengono inseriti nell’impronta, ricercando un buon parallelismo tra i vari perni (per sfilare agevolmente le future sezioni) e mantenendoli per quanto possibile alla stessa altezza (si possono compensare eventuali piccole differenze affondando più o meno ogni perno

...

See on Wikiteka »

final exam

  • Unique Period: Adolescence is a distinct developmental period (roughly ages 10-25) characterized by rapid biological, cognitive, and social changes. It is the transition from childhood to adulthood .
  • "Storm and Stress" Stereotype:
    • Definition: Coined by G. Stanley Hall (1904), this view depicts adolescence as a time of inevitable turmoil, moodiness, and conflict with parents.
    • Accuracy: It is not accurate to say it is universal or biological "destiny." While adolescents experience more emotional
...

See on Wikiteka »

relatório

O presente relatório visa descrever a Iniciação à Prática Profissional II (IPPII) realizada no Jardim de Infância Cinderela, uma instituição integrada na Santa Casa da Misericórdia. O estágio decorreu no período compreendido entre os dias [Data de Início] e [Data de Fim], na sala destinada às crianças de 3/5 anos. Tive a oportunidade de observar a rotina, participar nas atividades propostas pela educadora e planear e implementar intervenções pedagógicas próprias .

A rotina da instituição

...

See on Wikiteka »

Englishhh

1. Word Stress 

Word stress refers to giving extra emphasis, loudness, or length to one syllable in a word so that it stands out more clearly than the others. English is a stress-timed language, which means correct stress is necessary for clear pronunciation and understanding. Incorrect stress can change the meaning or make the speaker sound unclear or unnatural. For example, words like “juDIcial,” “aPPEAL,” and “conTRACT” (noun) have fixed stress patterns, while the same spelling “conTRACT”...

See on Student Notes »

Computer Graphics

-> Visible Surface Detection

  • All these algorithms are known as Visible Surface Detection methods

  • These methods are also referred as Hidden Surface Elimination methods

  • Visible surface algorithms attempt to determine the lines, edges, surfaces or volumes that are visible to an observer located at a specific point in a space

Visible surface detection algorithms are classified as:

  1. Object space method

  2. Image space method

-> Object space method:

  • It compares objects and

...

See on Wikiteka »

aichits

hirarchy=>import matplotlib.pyplot as plt
import scipy.cluster.hierarchy as sch
import numpy as np
X = np.random.rand(50, 2)
dendrogram = sch.dendrogram(sch.linkage(X, method='ward'))
plt.title('Dendrogram')
plt.show()
from sklearn.cluster import AgglomerativeClustering
hc = AgglomerativeClustering(n_clusters=5, linkage='ward')
print('Cluster assignments:', hc.fit_predict(X))

k means=>import numpy as np
from sklearn.cluster import KMeans
import matplotlib.pyplot as plt
# Using random data as placeholder
X

...

See on Student Notes »