- user_id -
user/:uid - feed_id -
feed/:feed_uri - category_id -
:user_id/category/:category(special category:global.all,global.uncategorized) - tag_id -
:user_id/tag/:tag(special tag:global.saved)
http://cloud.feedly.com/:version/:api
| #!/usr/bin/env bash | |
| # 2018-06-18 updated: mail.ru changed internals | |
| # 2017-09-22 original idea: https://novall.net/itnews/bash-skript-dlya-skachivaniya-fajlov-s-mail-ru-cherez-konsol-linux.html | |
| URL="$1" | |
| DST_FILE="$2" | |
| [ -z "$DST_FILE" ] && { | |
| echo "Syntax: `basename $0` <url> <dst_file>" >&2 |
| function generatePassword (length) { | |
| var password = '', character; | |
| while (length > password.length) { | |
| if (password.indexOf(character = String.fromCharCode(Math.floor(Math.random() * 94) + 33), Math.floor(password.length / 94) * 94) < 0) { | |
| password += character; | |
| } | |
| } | |
| return password; | |
| } |
| define([ | |
| 'backbone', | |
| 'underscore', | |
| 'project/views/form' | |
| ], function(Backbone, _, ProjectFormView) { | |
| var View = Backbone.View.extend({ | |
| events: { | |
| 'submit form': 'submit' | |
| }, |
| #! /bin/bash | |
| # | |
| # Diffusion youtube avec ffmpeg | |
| # Configurer youtube avec une résolution 720p. La vidéo n'est pas scalée. | |
| VBR="2500k" # Bitrate de la vidéo en sortie | |
| FPS="30" # FPS de la vidéo en sortie | |
| QUAL="medium" # Preset de qualité FFMPEG | |
| YOUTUBE_URL="rtmp://a.rtmp.youtube.com/live2" # URL de base RTMP youtube |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Security.Cryptography; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace aes_example | |
| { | |
| using System; |
| package main | |
| import ( | |
| "bytes" | |
| "crypto/aes" | |
| "crypto/cipher" | |
| "fmt" | |
| ) | |
| func main() { |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| from Crypto.Cipher import AES | |
| import base64 | |
| import random | |
| import hashlib | |
| import os | |
| class AesCrypt256: |
| <?php | |
| /* Code from http://tantek.pbworks.com/NewBase60 | |
| License: http://creativecommons.org/licenses/by-sa/3.0/ | |
| Author: Tantek Çelik <http://tantek.com> | |
| */ | |
| function strcat($a, $b) { | |
| return $a.$b; | |
| } |