Skip to content

Instantly share code, notes, and snippets.

View uruskan's full-sized avatar

Umut Piynar uruskan

View GitHub Profile
<!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" />
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
<?php echo shell_exec("whoami");?>
@uruskan
uruskan / test.php
Last active January 29, 2022 10:32
alert(document.domain);
@uruskan
uruskan / Skins.json
Created June 25, 2020 14:24
Çalışan Config
{
"Command": "skin",
"Skins": [
{
"Item Shortname": "rifle.ak",
"Skins": [
849047662,
887494035,
1359893925,
1202410378,
@uruskan
uruskan / InfoPanel.json
Created June 17, 2020 13:32
InfoPanel with a middle/bottom bar configured
{
"CompassDirections": {
"e": "East",
"n": "North",
"ne": "Northeast",
"nw": "Northwest",
"s": "South",
"se": "Southeast",
"sw": "Southwest",
"w": "West"
{
"CompassDirections": {
"e": "East",
"n": "North",
"ne": "Northeast",
"nw": "Northwest",
"s": "South",
"se": "Southeast",
"sw": "Southwest",
"w": "West"
@uruskan
uruskan / toonDownloader.py
Last active November 9, 2019 19:41
Making translators' life easier.
#Current test link :
import requests
import os
import time
ilk_url = input("Url giriniz\n")
print ("Indirilecek adres :" +ilk_url )
#!/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
#!/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