Wednesday, October 13, 2021

dfs not binary tree \\python

 https://steven-chen.medium.com/python-graph-search-dfs-bfs-and-tree-traversal-preorder-inorder-postorder-88be4b1df0f9

https://www.educative.io/edpresso/how-to-implement-depth-first-search-in-python


https://stackabuse.com/depth-first-search-dfs-in-python-theory-and-implementation/


from typing import Dict, List, Any, Union
graph: Dict[Any, Union[List[str], List[Any]]] = dict(
S=['A', 'B', 'C'],
A=['D', 'E', 'G'],
B=['G'], D=[], E=[], G=[], C=['G'])
def dfs(graph, start, target, path, visited = set()):
path.append(start)
visited.add(start)
if start == target:
return path
for neighbour in graph[start]:
if neighbour not in visited:
result = dfs(graph, neighbour, target, path, visited)
if result is not None:
return result
return None
traversal_path = []
traversal_path = dfs(graph, 'S', 'G', traversal_path)
print(traversal_path)

Thursday, October 7, 2021

مراجع AI

 


https://www.coursera.org/learn/ai-for-everyone-ar/lecture


Interactive Transcript - Enable basic transcript mode by pressing the escape key








  • Give example of what AI application most popular is used on a daily basis

  • how will AI impact application development?



https://emerj.com/ai-sector-overviews/everyday-examples-of-ai/


https://blog.adobe.com/en/publish/2018/01/07/5-examples-of-ai-in-our-everyday-lives.html#gs.d2u0zu



https://www.lucidpix.com/10-examples-of-artificial-intelligence-in-our-everyday-lives/


https://usmsystems.com/ai-examples-in-our-daily-life/


---

https://madanswer.com/35316/in-your-opinion-how-will-ai-impact-application-development


https://www.hurix.com/role-of-artificial-intelligence-in-custom-application-development/



https://emerj.com/ai-sector-overviews/everyday-examples-of-ai/


https://blog.adobe.com/en/publish/2018/01/07/5-examples-of-ai-in-our-everyday-lives.html#gs.d2u0zu



https://www.lucidpix.com/10-examples-of-artificial-intelligence-in-our-everyday-lives/


https://usmsystems.com/ai-examples-in-our-daily-life/


---

https://madanswer.com/35316/in-your-opinion-how-will-ai-impact-application-development


https://www.hurix.com/role-of-artificial-intelligence-in-custom-application-development/


مراجع امن الشبكات VPN

virtual private network

https://www.coursera.org/lecture/computer-networking/virtual-private-networks-c9tV0

https://www.youtube.com/watch?v=RqrH4fIi4uo

https://salamatechwiki.org/wiki/%D8%A7%D9%84%D8%B4%D8%A8%D9%83%D8%A9_%D8%A7%D9%84%D8%AE%D8%A7%D8%B5%D8%A9_%D8%A7%D9%84%D8%A7%D9%81%D8%AA%D8%B1%D8%A7%D8%B6%D9%8A%D8%A9_Virtual_Private_Network

https://freedomhacker.net/check-and-see-if-your-vpn-connection-is-secure/

------ 

https://media.defense.gov/2021/Sep/28/2002863184/-1/-1/0/CSI_SELECTING-HARDENING-REMOTE-ACCESS-VPNS-20210928.PDF

Types of Virtual Private Network (VPN) and its Protocols.    

https://www.mppolytechnic.ac.in/mp-staff/notes_upload_photo/CS1Documents5.pdf

Technical Overview of Virtual Private Networks(VPNs).   

https://www.researchgate.net/publication/274929918_Technical_Overview_of_Virtual_Private_NetworksVPNs

The Advantages & Disadvantages of a VP

https://www.cdwg.com/content/cdwg/en/articles/security/advantages-and-disadvantages-of-vpn.html


https://eshop.macsales.com/blog/48649-network-and-security-series-the-benefits-of-virtual-private-networks-vpns/

IPSec, VPN, and Firewall Concepts

https://www.cs.unh.edu/~it666/reading_list/Networking/firewall_concept_terms.pdf


https://library.wmo.int/doc_num.php?explnum_id=5221

Technical Overview of Virtual Private Networks(VPNs)

https://www.researchgate.net/publication/274929918_Technical_Overview_of_Virtual_Private_NetworksVPNs

ZeroTier VPN Test

https://www.researchgate.net/publication/347954150_ZeroTier_VPN_Test

https://www.researchgate.net/publication/345641555_Using_WireGuard_VPN

VPN encryption

https://support.google.com/chromebook/answer/1282338?hl=en

https://www.cactusvpn.com/beginners-guide-to-vpn/vpn-encryption/

Friday, October 1, 2021

مراجع مهمة لأفكار مشاريع التخرج

 



https://docs.linkbasez.com/

http://homes.ieu.edu.tr/userhat/courses/SE305_Fall_2020-2021/SE305_PojectTopics_2020.pdf

https://projectchampionz.com.ng/

https://partheniumprojects.com/projects-topics-ideas-on-android/

https://edubirdie.com/birdiedon-writingtool

https://nevonprojects.com/year-projects-for-computer-engineering/


https://www.chegg.com/

flex program and lex c code

 

https://techapple.net/2014/07/flex-windows-lex-and-yacc-flex-and-bison-installer-for-windows-xp788-1/


https://ecodehacker.com/courses/119340/lectures/2062783


https://winpcapp.com/windows-pc/Flex%20Windows%20(Lex%20and%20Yacc)/FREE-2.5.3.html?

مراجع بروبوسال ١-Android - PC Chatting & Image Sharing System

 

Android-PC-Chatting-Image-Sharing-System


https://github.com/RS146BIJAY/Android-PC-Chatting-Image-Sharing-System#readme


https://www.scribd.com/document/421962475/Android 


https://projectchampionz.com.ng/tag/android-pc-chatting-image-sharing-system/#google_vignette


https://partheniumprojects.com/android-pc-chatting-image-sharing/


https://ieeexplore.ieee.org/document/6508392?tp=&arnumber=6508392&queryText%3DAndroid%20-%20PC%20Chatting%20.AND.%20Image%20Sharing%20System=


People also search for