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
package main //Çalıştrılacak her Go kaynak dosyasında yer almalıdır. | |
// Go Dilinde tek satırlık yorum/açıklama | |
import ( | |
"fmt" // Standart kütüphaneyi projemize dahil ettik | |
"io/ioutil" // Temel io işlemleri | |
"log" // log | |
"math" // Matematiksel işlem ve değer tanımlarını içeren kütüphaneyi içe aktardık | |
"net/http" | |
"os" // İşletim sistemi işlemleri |
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
https://easyengine.io/blog/solution-couldnt-extract-wordpress-archive-error/ bu işlemleri yapip mevcut siteyi sil | |
https://easyengine.io/docs/commands/site/delete/ yeniden kur |
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
[vc_row width="no-padded" id="formix"][vc_column align="center" align_sm="center" hidden_on_small="on" hidden_on_xsmall="on" width="1/1"][rev_slider_vc alias="medical"][/vc_column][/vc_row][vc_row width="no-padded" id="formix"][vc_column align="center" align_sm="center" hidden_on_large="on" hidden_on_medium="on" width="1/1"][rev_slider_vc alias="2"][/vc_column][/vc_row][vc_row][vc_column align="center" width="1/1"][heading header_size="big" header_align="center" margin_top="50" margin_bottom="0" scroll_animation="fadeIn"]ما نقدمه[/heading][bordered_divider divider_height="3" divider_width="60" margin_top="30" margin_bottom="60" scroll_animation="fadeIn" scroll_animation_delay="0.1"][services category="blue-services" image_shape="none" image_size="medium" icon_animation="none" link_image="off" tag_title="h2" link_title="off" margin_top="0" margin_bottom="50" scroll_animation="fadeInUp" scroll_animation_delay="0.2" scroll_animation_timing="all-same"][bordered_divider divider_height="3" divider_width="1000" marg |
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 subprocess # Terminal'den komut girmek için kullandığımız komuttur. | |
# Sıkıştırma İşlemleri | |
class Compression(): | |
"Sıkıştırma işlemlerini yapan, sınıftır." | |
def __init__(self,file_path): | |
self.file_path = file_path # sıkıştırılacak dosyalarımızı bu değişkene aktarıyoruz. | |
def zipfile(self): |
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 python | |
# -*- coding: utf-8 -*- | |
import subprocess # Terminal'den komut girmek için kullandığımız komuttur. | |
# Sıkıştırma İşlemleri | |
class Compression(): | |
"Sıkıştırma işlemlerini yapan, sınıftır." | |
def __init__(self,file_path): |
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 subprocess # Terminal'den komut girmek için kullandığımız komuttur. | |
# Sıkıştırma İşlemleri | |
class Compression(): | |
"Sıkıştırma işlemlerini yapan, sınıftır." | |
def __init__(self,file_path): | |
self.file_path = file_path # sıkıştırılacak dosyalarımızı bu değişkene aktarıyoruz. |
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
# -*- coding: utf-8 -*- | |
import subprocess # Terminal'den komut girmek için kullandığımız komuttur. | |
# Sıkıştırma İşlemleri | |
class Compression(): | |
"Sıkıştırma işlemlerini yapan, sınıftır." | |
def __init__(self,file_path): | |
self.file_path = file_path # sıkıştırılacak dosyalarımızı bu değişkene aktarıyoruz. |
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
from django.shortcuts import render,HttpResponse | |
from instagram import inst | |
from django.db import connection | |
from threading import Thread | |
#from django.views.decorators.csrf import csrf_exempt | |
import ftplib | |
import time | |
from django.views.decorators.clickjacking import xframe_options_exempt | |
# Create your views here. |
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> | |
<html lang="en"> | |
<head> | |
<title>instacekilis.com</title> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<script src="http://www.instacekilis.com/lib/jquery/jquery.min.js"></script> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> | |
<style> | |
/* Preloader */ |
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
from django.contrib.auth import get_user_model | |
User = get_user_model() | |
u = User.objects.get(email='[email protected]') | |
u.set_password('new password') | |
u.save() |