如何下载tumblr视频

本文最后更新于(2023-1-10 09:26:18),链接可能失效,内容可能难以复现。请注意甄别。

最后编辑:2 年

© Sunplace,2017 引言 tumblr曾经是一个纯洁的地方,当年我的博客还在那里… 既然有flickr下载图片的方法(去看看),就有tumblr下载视频的方法。 如果上传者有版权说明,请不要下载。 [disdain] 0.先决条件 下载Firefox浏览器。 因为要正面上tumblr,还需要代理。 1.用Firefox打开找到视频页面 右击视频,【此框架】-【在新标签页中打开框架】。 2.在打开的页面,使用菜单栏的【工具】-【页面信息】-【媒体】,找到视频。右键,复制。 3.将复制的网址粘贴到地址栏,然后访问。在视频上右键-【将视频另存为…】。 #像Vine这类的视频,点击图标跳转到该视频在Vine上的页面,然后执行上面的几步就可以下载了。

使用ECharts做图表

本文最后更新于(2017-1-11 15:23:37),链接可能失效,内容可能难以复现。请注意甄别。
© Sunplace,2017 引言 ECharts是百度旗下的一款前端商用图表,基于JavaScript,支持多浏览器(包括IE6)。 1.下载ECharts(推荐下载源代码)。 https://echarts.baidu.com/download.html 2.在网页文件中引入、初始化和使用。 以下引用自官方教程
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>ECharts</title>
    <!-- 引入 echarts.js -->
    <script src="echarts.min.js"></script>
</head>
<body>
    <!-- 为ECharts准备一个具备大小(宽高)的Dom -->
    <div id="main" style="width: 600px;height:400px;"></div>
    <script type="text/javascript">
        // 基于准备好的dom,初始化echarts实例
        var myChart = echarts.init(document.getElementById('main'));

        // 指定图表的配置项和数据
        var option = {
            title: {
                text: 'ECharts 入门示例'
            },
            tooltip: {},
            legend: {
                data:['销量']
            },
            xAxis: {
                data: ["衬衫","羊毛衫","雪纺衫","裤子","高跟鞋","袜子"]
            },
            yAxis: {},
            series: [{
                name: '销量',
                type: 'bar',
                data: [5, 20, 36, 10, 10, 20]
            }]
        };

        // 使用刚指定的配置项和数据显示图表。
        myChart.setOption(option);
    </script>
</body>
</html>
效果:
配置参数:https://echarts.baidu.com/option.html

使用VS Code 来编写.NET程序

本文最后更新于(2023-1-20 10:41:18),链接可能失效,内容可能难以复现。请注意甄别。

最后编辑:2 年

© Sunplace,2017 引言 Visual Studio Code是相对于Visual Studio更轻量的程序,如果不想用动则5、6G的Visual Studio,可以试试这个。 1.下载安装Visual Studio Code Windows版的大小约为32.4M: 2.安装C#扩展。 打开VS Code之后搜索C#,下载这个: 3. 安装.NET Core(Command line / other)。 4. 打开VS Code,打开集成终端(Ctrl+`或“查看”-“集成终端”)。 5.创建项目文件夹(d:\test)并在集成终端中输入以下命令。
>cd d:\test
D:\test>dotnet new 
显示:
Welcome to .NET Core! ——————— Learn more about .NET Core @ https://aka.ms/dotnet-docs. Use dotnet –help to see available commands or go to https://aka.ms/dotnet-cli-docs. Telemetry ————– The .NET Core tools collect usage data in order to improve your experience. The data is anonymous and does not include commandline arguments. The data is collected by Microsoft and sh ared with the community. You can opt out of telemetry by setting a DOTNET_CLI_TELEMETRY_OPTOUT environment variable to 1 using your favorite shell. You can read more about .NET Core tools telemetry @ https://aka.ms/dotnet-cli-telemetry. Configuring… ——————- A command is running to initially populate your local package cache, to improve restore speed and enable offline access. This command will take up to a minute to complete and will onl y happen once. Decompressing 100% 3713 ms Expanding 100% 30901 ms Created new C# project in D:\test.
6.在项目文件夹下生成了Program.cs和project.json两个文件。
7.用VS Code打开Program.cs,看到以下内容:
using System;

namespace ConsoleApplication
{
    public class Program
    {
        public static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
        }
    }
}
你可以重新编写或者修改此文件。 8.编译程序,在集成终端中输入:
D:\test>dotnet restore
提示:
log : Restoring packages for d:\test\project.json… log : Writing lock file to disk. Path: d:\test\project.lock.json log : d:\test\project.json log : Restore completed in 8063ms.
9.接着运行,
d:\test>dotnet run
提示:
Project test (.NETCoreApp,Version=v1.1) will be compiled because expected outputs are missing Compiling test for .NETCoreApp,Version=v1.1 Compilation succeeded. 0 Warning(s) 0 Error(s) Time elapsed 00:00:04.5183046 Hello World!
https://code.visualstudio.com/docs/runtimes/dotnet

Adobe CC2017 官方多国语言试用版下载

本文最后更新于(2017-1-3 16:31:51),链接可能失效,内容可能难以复现。请注意甄别。
产品 Windows版 Mac OS版
Adobe Media Encoder CC (2017) Windows (64 bit) Mac OS (64 bit)
After Effects CC (2017) Windows (64 bit) Mac OS (64 bit)
Audition CC (2017) Windows (64 bit) Mac OS (64 bit)
Bridge CC (2017) Windows (32 bit) | Windows (64 bit) Mac OS (64 bit)
Illustrator CC (2017) Windows (32 bit) | Windows (64 bit) Mac OS (64 bit)
Photoshop CC (2017) Windows (32 bit) | Windows (64 bit) Mac OS (64 bit)
Premiere Pro CC (2017) Windows (64 bit) Mac OS (64 bit)