wget http://ppa.launchpad.net/dajhorn/dante/ubuntu/pool/main/d/dante/dante-server_1.4.1-1_amd64.deb
sudo apt-get install gdebi-core
sudo gdebi dante-server_1.4.1-1_amd64.deb
/etc/danted.conf
logoutput: stderr
internal: eth0 port = 1080
<? | |
public function actionExportNumbersData() | |
{ | |
ini_set("memory_limit", "-1"); | |
set_time_limit(0); | |
$numbers = Numbers::find()->all(); | |
$spreadsheet = new Spreadsheet(); |
<? | |
AddEventHandler('main','OnAdminTabControlBegin','RemoveYandexDirectTab'); | |
function RemoveYandexDirectTab(&$TabControl){ | |
if ($GLOBALS['APPLICATION']->GetCurPage()=='/bitrix/admin/iblock_element_edit.php') { | |
foreach($TabControl->tabs as $Key => $arTab){ | |
if($arTab['DIV']=='seo_adv_seo_adv') { | |
unset($TabControl->tabs[$Key]); | |
} | |
} | |
} |
wget http://ppa.launchpad.net/dajhorn/dante/ubuntu/pool/main/d/dante/dante-server_1.4.1-1_amd64.deb
sudo apt-get install gdebi-core
sudo gdebi dante-server_1.4.1-1_amd64.deb
/etc/danted.conf
logoutput: stderr
internal: eth0 port = 1080
tail -f file | sed 's/\\n/\n/g' |
Сначала удаляем NetworkManager
systemctl stop NetworkManager.service
systemctl disable NetworkManager.service
Теперь включаем классическую службу сети в CentOS 7
systemctl enable network.service
import shutil | |
import os | |
import datetime | |
from winreg import * | |
with OpenKey(HKEY_CURRENT_USER, 'SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders') as key: | |
Downloads = QueryValueEx(key, '{374DE290-123F-4565-9164-39C4925E467B}')[0] | |
main_folder = Downloads + "\\" | |
now = datetime.datetime.now() |
Sub SaveSheets() | |
Dim s As Worksheet | |
Dim wb As Workbook | |
Set wb = ActiveWorkbook | |
For Each s In wb.Worksheets | |
s.Copy | |
ActiveWorkbook.SaveAs Filename:=wb.Path & "\" & s.Name, FileFormat:=xlExcel8 | |
Next | |
End Sub |
function getSslPage($url) | |
{ | |
$ch = curl_init(); | |
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); | |
curl_setopt($ch, CURLOPT_HEADER, false); | |
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); | |
curl_setopt($ch, CURLOPT_URL, $url); | |
curl_setopt($ch, CURLOPT_REFERER, $url); | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE); | |
$result = curl_exec($ch); |
jQuery.fn.extend( | |
{ | |
scrollTo : function(speed, easing) | |
{ | |
return this.each(function() | |
{ | |
var targetOffset = $(this).offset().top; | |
$('html,body').animate({scrollTop: targetOffset}, speed, easing); | |
}); | |
} |
import os, codecs | |
for (dir, _, files) in os.walk("./"): | |
for f in files: | |
path = os.path.join(dir, f) | |
if f.endswith(('php')): | |
if os.path.exists(path): | |
data = open(path, "rb").read() | |
print(path) | |
if data.startswith(codecs.BOM_UTF8): | |
continue |