Skip to content

Instantly share code, notes, and snippets.

@davit312
davit312 / mk1tv.go
Created September 21, 2018 13:10
Սա օգտագործում եմ films-hy.blogspot.com կայքի ֆիլմերը ավելորդ մասերից մաքրելու համար
package main
import (
"fmt"
"os"
"os/exec"
"strconv"
)
func main() {
@davit312
davit312 / postmaker.html
Last active February 12, 2022 20:06
Գրառման կաղապար films-hy.blogspot.com ֊ի համար
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Post maker</title>
<style>
*{
font-size: 18px;
@davit312
davit312 / black.go
Created November 9, 2017 17:57
Turn off screen after timeout, script for Ubuntu.
package main
import (
"os/exec"
"time"
)
const work = 40
const rest = 5
@davit312
davit312 / ya_disk.php
Last active May 24, 2022 05:12
Yandex Disk file download direct link maker
<?php
function ya_link( $url){
$url = "https://cloud-api.yandex.net:443/v1/disk/public/resources/download?public_key=" . urlencode( $url );
$options = array(
CURLOPT_RETURNTRANSFER => true, // return web page
CURLOPT_FOLLOWLOCATION => true, // follow redirects
CURLOPT_ENCODING => "", // handle all encodings
CURLOPT_AUTOREFERER => true, // set referer on redirect
CURLOPT_CONNECTTIMEOUT => 12, // timeout on connect
CURLOPT_TIMEOUT => 12, // timeout on response
@davit312
davit312 / list_am.php
Created November 3, 2016 12:33
Image downloader for Gurgen
<?php
if(!empty($_GET['url'])):
$cnt = file_get_contents($_GET['url']);
if(empty($cnt))
exit;
else
$cnt = substr($cnt,strpos($cnt,'<ul>'),strpos($cnt,'</ul>')-strpos($cnt,'<ul>')+4);
endif;
if(!empty($cnt)):