Facebook Share
Стандартная кнопка для “шаринга” URL с дополнительным текстом. HTTP-endpoint: http://www.facebook.com/sharer.php Параметры: u — url t — сопровождающий текст UPD: Для передачи описания страницы используйте OpenGraph, обсуждение на SO
| 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 |
| jQuery('a[target^="_new"]').click(function() { | |
| return openWindow(this.href); | |
| } | |
| function openWindow(url) { | |
| if (window.innerWidth <= 640) { | |
| // if width is smaller then 640px, create a temporary a elm that will open the link in new tab | |
| var a = document.createElement('a'); |
Facebook Share
Стандартная кнопка для “шаринга” URL с дополнительным текстом. HTTP-endpoint: http://www.facebook.com/sharer.php Параметры: u — url t — сопровождающий текст UPD: Для передачи описания страницы используйте OpenGraph, обсуждение на SO
| <?php | |
| require($_SERVER["DOCUMENT_ROOT"]."/bitrix/header.php"); | |
| $APPLICATION->SetTitle("Export"); | |
| $arResult = array(); | |
| $rsData = CUserTypeEntity::GetList( array("ID"=>"ASC"), array("LANG" => "ru") ); | |
| while($arRes = $rsData->Fetch()) | |
| { | |
| $ar_res = CUserTypeEntity::GetByID( $arRes['ID'] ); | |
| $arResult[] = $ar_res; | |
| } |
| Смотрим, что у нас имеется на данный момент из устройств/разделов | |
| # fdisk -l | |
| Диск /dev/sda: 21.5 ГБ, 21474836480 байт | |
| ... | |
| Устр-во Загр Начало Конец Блоки Id Система | |
| /dev/sda1 * 1 64 512000 83 Linux | |
| /dev/sda2 64 653 4729856 8e Linux LVM | |
| /dev/sda3 653 1305 5239532+ 8e Linux LVM |
| <? | |
| AddEventHandler('main', 'OnBuildGlobalMenu', 'ASDOnBuildGlobalMenu'); | |
| function ASDOnBuildGlobalMenu(&$aGlobalMenu, &$aModuleMenu) | |
| { | |
| $arSites = array( | |
| 'www.site.ru' => 's1', | |
| 'site.ru' => 's1', | |
| ); | |
| $arIBsites = array(); |