- Mi a dinamikus weboldalak alapját szolgáló HTTP metódus? Mutassa be a működését.
- Miért van szükség dinamikus weboldalak (pl. .php kiterjesztésű fájlok) futtatásához külön programra? Ismertessen pár alternatívát.
- Mutassa be mi a különbség a dev-server és a prod-server között.
- Hogyan épül fel egy GET request? Mutasson rá konkrét példát.
- Honnan eredeztethetjük egy weboldal sérülékenységét?
- Mi az alapja a webes támadásoknak?
- Mit jelképez a Pareto 80/20 elv a szoftvertervezés és -fejlesztésben?
- Mit csinál egy etikus hacker? Mire kell figyelni felbérlése során?
- Mely két oldalról támadható egy weboldal?
- Mit rövidít a HTTP? Mit ír le? Miben másabb a HTTPS?
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
// ################################################################## | |
// | |
// BLOG | |
// | |
// ################################################################## | |
[Table("Blogs")] | |
public class Blog | |
{ | |
[Key] |
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
#region INIT | |
BlogContext db = new BlogContext(); | |
Blog b1 = new Blog() { Category = "Nature", LikesCount = 43, Title = "#1 Nature Article" }; | |
b1.Comments.Add(new Comment() { Content = "Lorem ipsum dolor sit amet." }); | |
Blog b2 = new Blog() { Category = "Nature", LikesCount = 30, Title = "#2 IT life in the nature" }; | |
b2.Comments.Add(new Comment() { Content = "Great article, loved it!" }); | |
Blog b3 = new Blog() { Category = "Design", LikesCount = 120, Title = "#3 Science of Design" }; |
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
git remote rm origin | |
git remote add origin [email protected]:<YOUR-REPOS-NAME> | |
git config master.remote origin | |
git config master.merge refs/heads/master |
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
class ModelToXMLAttribute : Attribute | |
{ | |
} | |
class MethodToXMLAttribute : Attribute | |
{ | |
} |
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
{ | |
"todos": [ | |
{ | |
"id": "1e09e187-2490-4b17-a488-e281d0c6112f", | |
"text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit.", | |
"type": "alert-primary", | |
"tags": [ | |
"new", | |
"urgent" | |
] |
- Milyen tudástípusok különböztethetők meg, és ezek hogyan alkalmazhatók az informatika világára?
- Mi a BAU, mi a projekt illetve a kettő közötti különbség?
- Mi a projekt menedzsment?
- Mik a projektmenedzsment alapfogalmai és azok jelentései?
- Mi a RAID log?
- Milyen szakaszai vannak egy projektnek és ezekben mik történnek?
- Mik a mérföldkövek és hogyan tudjuk ezeket használni egy éles szoftverprojekt fejlesztése esetén?
- Milyen módszerekkel és elvek mentén mérhető egy projekt előrehaladása, illetve a projektben résztvevő emberek munkája?
- Mi a projektmenedzsment módszertan?
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
[ | |
{ | |
"id": "b8878c6c-eda2-35ee-f621-91f9b7af14dc", | |
"name": "Kiss Lajos", | |
"job": "UX designer", | |
"age": 40, | |
"salary": 350000, | |
"skills": [ | |
"User Research", | |
"Wireframing", |