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
| console.log("---> Running"); | |
| const curl = require("curl"); | |
| const jsdom = require("jsdom"); | |
| const url = "http://www.imdb.com/list/ls004489992/"; | |
| curl.get(url, null, (err,resp,body)=>{ | |
| if(resp.statusCode == 200){ | |
| parseData(body); | |
| } |
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
| #!/usr/bin/env bash | |
| #---------------------------------------------------------------------# | |
| # addSymfonySite # | |
| # # | |
| # apache add Symfony site # | |
| # # | |
| # Script : addSymfonySite.sh # | |
| # Version : 1.0.0 # | |
| # Author : Yasin KARABULAK <yasinkarabulak@gmail.com> # | |
| # Date : 2019-04-02 # |
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
| # vim: ft=sh | |
| # | |
| # ____ | |
| # __ __/ __/ __ | |
| # / / / / /_| | /| / / | |
| # / /_/ / __/| |/ |/ / | |
| # \__,_/_/ |__/|__/ | |
| # | |
| # | |
| _ufw() { |
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
| <?php | |
| $data = [ | |
| [ | |
| 'kuzey', | |
| 'kıbrıs', | |
| 'türk', | |
| 'cumhuriyetinde', | |
| ], | |
| [ |
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
| <?php | |
| $start_first = time(); | |
| $username="admin"; | |
| $password="1234"; | |
| $pfsenseprot="http"; | |
| $pfsenseip="192.168.5.254"; | |
| $ckfile = tempnam ("./", "CURLCOOKIE"); | |
| $curl_handle = curl_init(); | |
| curl_setopt($curl_handle, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.12) Gecko/20070508 Firefox/1.5.0.12"); | |
| curl_setopt($curl_handle, CURLOPT_SSL_VERIFYPEER, FALSE); |
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
| <?php | |
| /* After 2010 | |
| $n1 = array("亜", "阿", "哀", "葵", "茜", "握", "渥", "旭", "梓", "扱", "絢", "綾", "鮎", "案", "杏", "伊", "威", "尉", "惟", "慰", "為", "異", "維", "緯", "遺", "井", "亥", "郁", "磯", "壱", "逸", "稲", "芋", "允", "姻", "胤", "陰", "隠", "韻", "卯", "丑", "渦", "唄", "浦", "叡", "影", "瑛", "衛", "詠", "疫", "益", "悦", "謁", "閲", "宴", "援", "沿", "炎", "猿", "縁", "艶", "苑", "鉛", "於", "凹", "往", "応", "旺", "殴", "翁", "沖", "憶", "乙", "卸", "恩", "穏", "仮", "伽", "価", "佳", "嘉", "嫁", "寡", "暇", "架", "禍", "稼", "箇", "茄", "華", "霞", "蚊", "我", "芽", "賀", "雅", "餓", "塊", "壊", "怪", "悔", "懐", "戒", "拐", "魁", "凱", "劾", "慨", "概", "涯", "街", "該", "馨", "垣", "嚇", "拡", "核", "殻", "獲", "穫", "較", "郭", "閣", "隔", "岳", "潟", "喝", "括", "渇", "滑", "褐", "轄", "且", "叶", "樺", "株", "鎌", "茅", "刈", "侃", "冠", "勘", "勧", "喚", "堪", "寛", "幹", "憾", "敢", "棺", "款", "歓", "環", "監", "看", "緩", "肝", "艦", "莞", "貫", "還", "鑑", "閑", "陥", "巌", "眼", "頑", "企", "伎", "器", "基", "奇", "嬉", "岐", "忌", "揮", "旗", "既", "棋", "棄", "毅", "汽", "稀", "紀", "貴", "軌", "輝", "飢", "騎", "鬼", "亀", "偽", "儀", "宜", "戯", " |
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
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> | |
| <html> | |
| <head> | |
| <!-- charset= --> | |
| <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> | |
| <title>PHPMailer Test</title> | |
| </head> | |
| <body> | |
| <div style="width: 640px; font-family: Arial, Helvetica, sans-serif; font-size: 11px;"> | |
| <h1>This is a test of PHPMailer.</h1> |
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
| #!/usr/bin/env bash | |
| if [ -z $1 ]; then | |
| echo "Kullanım: getApacheLogs access [domain] [pattern]" | |
| echo "Kullanım: getApacheLogs error [pattern]" | |
| exit | |
| fi | |
| domain=$2 | |
| if [ -z $2 ]; then |
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
| <?php | |
| class klasor | |
| { | |
| private $say; | |
| function __construct() | |
| { | |
| $this->say = 0; | |
| } |
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
| #!/usr/bin/env bash | |
| sudo bash -c 'echo "deb https://packages.sury.org/php/ bullseye main" >> /etc/apt/sources.list.d/debsury.list' | |
| sudo wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg | |
| sudo apt update |