Cross site scripting(XSS) Get link Facebook X Pinterest Email Other Apps July 28, 2022 stored xss payload 1 (using netcat command to listen to my own host machine allowing the port 80 to accept http connection) sudo ufw allow 80/tcp comment'Accept http connection' nc -lnvp 80 Get link Facebook X Pinterest Email Other Apps Comments
Display button(kivy project) July 01, 2021 thelab.kv MainWidget: : Button: text: "hello" size: "100dp","80dp" pos: "100dp", "200dp" color: 1,0,1,1 Button: text: "hello2" size: "100dp","80dp" pos: "200dp", "400dp" color: 1,0,1,1 Read more
Tower of Hanoi problem with recursion. June 29, 2021 # Recursive Python function to solve tower of hanoi def TowerOfHanoi(n , from_rod, to_rod, aux_rod): if n == 1: print("Move disk 1 from rod",from_rod,"to rod",to_rod) return TowerOfHanoi(n-1, from_rod, aux_rod, to_rod) print("Move disk",n,"from rod",from_rod,"to rod",to_rod) TowerOfHanoi(n-1, aux_rod, to_rod, from_rod) # Driver code n = 4 TowerOfHanoi(n, 'A', 'C', 'B') Read more
Comments
Post a Comment