-
🔭 I’m currently working on a monitoring system for the school’s project
-
🌱 I’m currently learning Go
-
👯 I’m looking to collaborate on with you
-
👨💻 All of my projects are available at https://GitHub.com/SpotlightForBugs
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 Main { | |
public static void main(String[] args) { | |
System.out.println(fibonacci(10)); | |
} | |
public static int fibonacci(int n) { | |
if (n <= 1) { | |
return n; |
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 Main { | |
public static void main(String[] args) { | |
System.out.println(wasMacheIch(5, 5)); | |
} | |
/** | |
* Die Methode wasMacheIch berechnet das Produkt zweier Zahlen | |
* @param x die erste Zahl |
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
alert('xss'); |
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. Create a sentence "i do not not like not to swim" | |
2 . create a list of negations | |
2. count all negations in the sentence | |
3. if the amount of negations is even, then remove all negations from the sentence, else remove all but the first | |
""" | |
negations = ["not", "no","n't"] |
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
import os | |
import html2text | |
import pdoc | |
def main(): | |
""" |
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
//REQURIES JQUERY!!!!!! | |
/** | |
* The showNotification function displays a banner at the top of the page. | |
* | |
* | |
* @param message_text Set the text of the banner | |
* @param button_text Set the text of the button | |
* @param button_url Redirect to a specific page after the information banner is closed | |
* |
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
//manual way to solve the quiz | |
// | |
//1. start the quiz | |
//2. open the console (F12) | |
//paste this code into the console and press enter | |
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
//put this in your browser`s Console after starting a Quiz on Schlaukopf.de | |
setInterval(function () { | |
runtime.asyncEvaluate(1) | |
}, 3000); //time to wait in miliseconds | |
//a manual approach to solve the quiz can be found here: | |
// https://gist.github.com/SpotlightForBugs/8cd6dd20ba1fd6f11e0d541aa8f20b7f |
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 reads the file csv_tools.py and updates the requirements.txt file with the packages used in the file using the pipreqs module | |
import os | |
os.system("python -m pipreqs.pipreqs "+(os.getcwd())+" --force") | |