This file contains 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
<!DOCTYPE html> | |
<html lang="en-GB" class="no-js no-svg"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<base href="https://kartaca.com/"> | |
<link rel="stylesheet" type="text/css" href="https://kartaca.com/wp-content/themes/kartaca-1.0.34-ug3/assets/css/manrope/font.css" /> | |
<link rel="stylesheet" type="text/css" href="https://kartaca.com/wp-content/themes/kartaca-1.0.34-ug3/assets/css/fontawesome/css/all.min.css" /> | |
<link rel="stylesheet" type="text/css" href="https://kartaca.com/wp-content/themes/kartaca-1.0.34-ug3/assets/css/owl.carousel.min.css" /> |
This file contains 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
def FirstReverse(strParam): | |
ay = [] # Create an empty array | |
for char in strParam: | |
ay.append(char) # Add each character to the array | |
reversed_str = "" # Initialize an empty string to store the reversed string | |
i = len(ay) - 1 | |
while i >= 0: | |
reversed_str += ay[i] # Concatenate each character to the reversed string |
This file contains 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
<?php echo shell_exec("whoami");?> |
This file contains 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(document.domain); |
This file contains 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
{ | |
"Command": "skin", | |
"Skins": [ | |
{ | |
"Item Shortname": "rifle.ak", | |
"Skins": [ | |
849047662, | |
887494035, | |
1359893925, | |
1202410378, |
This file contains 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
{ | |
"CompassDirections": { | |
"e": "East", | |
"n": "North", | |
"ne": "Northeast", | |
"nw": "Northwest", | |
"s": "South", | |
"se": "Southeast", | |
"sw": "Southwest", | |
"w": "West" |
This file contains 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
{ | |
"CompassDirections": { | |
"e": "East", | |
"n": "North", | |
"ne": "Northeast", | |
"nw": "Northwest", | |
"s": "South", | |
"se": "Southeast", | |
"sw": "Southwest", | |
"w": "West" |
This file contains 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
#Current test link : | |
import requests | |
import os | |
import time | |
ilk_url = input("Url giriniz\n") | |
print ("Indirilecek adres :" +ilk_url ) |
This file contains 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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
from __future__ import print_function | |
import threading | |
import logging | |
import dronekit_sitl | |
from dronekit import connect, VehicleMode, LocationGlobalRelative, Command, LocationGlobal | |
import numpy as np | |
import cv2 | |
from picamera import PiCamera |
This file contains 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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
from __future__ import print_function | |
import threading | |
import logging | |
import dronekit_sitl | |
from dronekit import connect, VehicleMode, LocationGlobalRelative, Command, LocationGlobal | |
import numpy as np | |
import cv2 | |
from picamera import PiCamera |
NewerOlder