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
public interface ContradictableType { | |
boolean equivalentTo(ContradictableType other); | |
boolean cancelsOutWith(ContradictableType other); | |
} |
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
public class PedestalledLeanLinkedList<T extends ContradictableType> { | |
LinkedList<T> types = new LinkedList<>(); | |
public void insert(T type) { | |
boolean first = true; | |
for (Iterator<T> iterator = types.iterator(); iterator.hasNext(); ) { | |
ContradictableType current = iterator.next(); | |
if (first) { | |
first = false; | |
continue; |
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
public class BooleanContradictableType implements ContradictableType { | |
boolean value; | |
public BooleanContradictableType(boolean value) { | |
this.value = value; | |
} | |
public boolean getValue() { | |
return value; |
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
HashMap<String,PedestalledLeanLinkedList<BooleanContradictableType>> requestsInProgress = new HashMap<>(); | |
protected synchronized void likeDislike(String id, boolean _desiredLikeState, boolean chain) { | |
PedestalledLeanLinkedList<BooleanContradictableType> currentLinkedList = requestsInProgress.get(id); | |
if (chain && currentLinkedList != null) { | |
currentLinkedList.poll();/* Previous like state request */ | |
if (currentLinkedList.isEmpty()) { | |
requestsInProgress.remove(id); | |
return; | |
} |
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
Το PDN θα άγει για όλους τους συνδυασμούς εισόδων που απαιτούν χαμηλή έξοδο (Y=O) | |
• Το PUN θα άγει για όλους τους συνδυασμούς εισόδων που απαιτούν υψηλή έξοδο (Y=1) | |
• Το PDN απαρτίζεται απο NMOS τρανζίστορ | |
• Το PUN απαρτίζεται από PMOS τρανζίστορ | |
Σελίδα 964 και 965 τα παραδείγματα δικτύων (να χέρεις πως βγαίνει η συνάρτηση , και να θυμάσαι πολύ καλά αυτά) | |
Σελίδα 968 είχε πέσει ακριβώς το ίδιο σχήμα να βρεις την συνάρτηση όπως και τα 3 σχεδιαγράμματα στην σελίδα 969. |
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
ΑΙΣΘΗΤΙΚΗ | |
Αναγέννηση | |
Εμπειρικά, μελέτη του κόσμου και μαθηματικοί νόμοι. Ανάπτυξη θετικών επιστημών, εφεύρεση μηχανών. Οι καλλιτέχνες είναι επιστήμονες, ερευνούν τον κόσμο πριν τον απωτυπώσουν. (Ντυρέρ, Λεονάρντο) -> Παρουσίαση κόσμου ακόμα πιο τέλειου από τον κανονικό με βάση ιδεατών μαθηματικών σχέσεων. | |
Σωκράτης - Ίων | |
Η ποίηση είναι μίμηση και τέχνη (με την έννοια επαγγέλματος). Οι ποιητές πρέπει να έχουν: 1) Γνώση των αντικειμένων που παρουσιάζουν και 2) Ικανότητα παρουσίασης τους μέσω του έργου και του διαλόγου — Δεν υπάρχει καθολικό σύνολο κανόνων το οποίο να μπορεί να εφαρμόζεται αποτελεσματικά. Λόγω έμπνευσης (και ενθουσιασμού ο οποίος προέρχεται απο θεούς-μούσες) ο ραψωδός μπορεί να καταλάβει τι ένιωθε η ψυχή των χαρακτήρων και να την αποδώσει αποτελεσματικά. | |
Πραγματική γνώση != μιμητική παραστατική απομίμηση (το ωραίο). Η ουσιαστική γνώση δεν συνδέεται με την αληθοφάνεια και τον εικαστικό (ωραίο) τρόπο που παρουσιάζονται τα έργα. |
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
—BOOK— | |
ΠΛΑΤΩΝΑΣ | |
Τέχνη = ικανότητα να κάνουμε κάτι που προυποθέτει ασυνήθιστη επιδεξιότητα και εξειδίκευση | |
Διαχωρίζει σε: αποθησαυριστικές και δημιουργικές/παραγωγικές | |
(Σωκράτης -> δεν θεσπίζει κατηγορία για εικαστικές τέχνες. Ότι αφορά μουσική και μέτρο = ποίηση) | |
* Σήμερα χρησιμοποιούμε τον όρο τέχνη μόνο για εικαστικές τέχνες |
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
Theodoross-MacBook-Pro:1 zarkopafilis$ gcc -o 1.out -pthread st.c | |
Theodoross-MacBook-Pro:1 zarkopafilis$ ./1.out | |
Initialising nSeconds | |
Spawning children | |
6 | |
10 i | |
12 im | |
27 imd | |
43 imd | |
48 imd i |
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
# This file CHANGES the drive. USE IT AT YOUR OWN RISK. I'M NOT RESPONSIBLE FOR ANY LOSE. | |
# It removes the revisions of cerber2 encrpted files | |
# It also renames the file back to what it was before the adobe infection | |
# You will probably have to run it multiple times because it only removes one rev each time. | |
# Good luck! Hope you get back to a state you were before the infection. | |
# | |
from __future__ import print_function | |
import httplib2 | |
import os |
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
https://github.com/zarkopafilis/ | |
gitmemory: https://www.gitmemory.com/Zarkopafilis | |
For pages: | |
https://github.com/Zarkopafilis/site | |
https://zarkopafilis.github.io/site/me.html | |
For code review: | |
Big one - completed: https://github.com/UAVCAN/libuavcan/pull/198 C++ | |
Project initial/short - completed: https://github.com/UAVCAN/Yukon/pull/2 |