InDesign 目录制表符

本文最后更新于(2017-2-27 11:10:32),链接可能失效,内容可能难以复现。请注意甄别。
© Sunplace,2017 参考:https://tieba.baidu.com/p/2541682161?pn=1&statsInfo=frs_pager 1.打开Id,新建一个文档。 2.输入以下文字。
图1 输入这些字符
3.接着选中以上文字,按下Ctrl+Shift+T,调出制表符面板。
图2
4.选中第三个箭头(右对齐),在X中输入120毫米,就是这个文本框的宽度。在前导符中填入“.”,关闭面板回到文档。
图3
5.将鼠标停留在标题和页码之间,输入1次Tab,完成。
图4
6.选中段落加入新建的段落样式,之后就可以直接应用了。
图5

手机安装和更新Google服务

本文最后更新于(2017-2-15 17:03:21),链接可能失效,内容可能难以复现。请注意甄别。
© Sunplace,2017 引 如今的国产机哪个还有Google服务这种东西? 方法一(推荐,需要ROOT) 1.安装第三方recovery。 2.在https://opengapps.org/中选择并下载相应的刷机包。(可以用CPU-Z查看CPU类型) 3.卡刷后即可使用。 方法二(需要ROOT) 1.安装GO谷歌安装器。 2.直接运行安装Google服务。 3.如果弹出Google Play停止运行,请下载谷歌服务FC修复工具不要在第三方应用商店安装或更新Google Play服务。 更新Google Play Service 1.架好梯子。 2.查看已经安装的Google Play Service(Google Play服务)的应用信息。 上图的版本号为12.8.72(040408-202717283),只需要记下040408(旧版本通常只有三位,如448)。 3.(需要梯子)访问APKMirror,找到Google PLay Service的下载页(如果你不是在更新TV版本或者可穿戴设备,可以访问这里)。
点击ALL VARIANTS
点击相应的版本号
最上的版本最新,点击右边的下载图标
点击DOWNLOAD APK
4.安装到手机即可

如何下载tumblr视频

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

使用VS Code 来编写.NET程序

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