Elementary

号称最美Linux发行版—elementary OS 5.1 “Hera”发布

与世无争的帅哥 提交于 2020-01-13 00:15:15
elementary OS 团队习惯使用神话人物或神灵的名字作为版本的代号,Hera 也是如此。赫拉(Hera)在古希腊语中是“贵妇人”、“女主人”、“高贵的女性”的意思,它被认为是希腊众神的女王,代表妇女、婚姻、家庭和分娩。Hera 对应的是罗马神话中的 Juno,后者是罗马神话中的天后、婚姻和母性之神。 号称最美Linux发行版—elementary OS 5.1 “Hera”发布号称最美Linux发行版—elementary OS 5.1 “Hera”发布 Hera 建立在 Juno 的坚实基础上,同时带来了以下主要更新: 全新的首次运行体验,包括新的欢迎界面和新用户引导流程 Flatpak 已支持 Sideload 和 AppCenter 有关辅助功能和系统设置的重大更新 针对几乎所有应用程序的迭代改进 最新的硬件支持,包括新的Linux内核和硬件支持堆栈 全新的首次运行体验 此次更新极大地改善了用户的首次运行体验,新设计的登录和锁屏界面看起来更清晰,效果更好,并且修复了旧版本中用户反馈的许多问题,包括焦点问题和 HiDPI 问题,此外还提供了更好的本地化。 号称最美Linux发行版—elementary OS 5.1 “Hera”发布号称最美Linux发行版—elementary OS 5.1 “Hera”发布 新版的欢迎界面会显示所有用户的用户名

How do I connect a custom function to the clicked action of a GTK Button?

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-20 02:49:10
问题 I am working my way through the Vala GTK+3 tutorial provided by Elementary OS. I understand that this code: var button_hello = new Gtk.Button.with_label ("Click me!"); button_hello.clicked.connect (() => { button_hello.label = "Hello World!"; button_hello.set_sensitive (false); }); uses a Lambda function to change the button's label when it's clicked. What I want to do is call this function instead: void clicked_button(Gtk.Button sender) { sender.label = "Clicked. Yippee!"; sender.set

How to assign values from one sheet into hidden sheet using Excel VBA? (and skip a column within the range?)

泪湿孤枕 提交于 2019-12-11 17:18:19
问题 Instead of copy-select-pasting cells (lower code), I wish to assign ranges directly and hide the sheet to which values are being filled. I think the sheet can simply be hidden from view and the macro to fill values based on another sheet's ranges will still work, right? Trying to assign values on another sheet, I intend to build on this working code (with thanks to Jason Faulkner and aoswald). (I must place the cells after one blank column from the last set of values. Ideally, the code will

Docker on Linux - Empty mounted volumes

 ̄綄美尐妖づ 提交于 2019-12-11 06:03:27
问题 I'm trying to get my docker setup to work on my linux machine (it works fine on OSX). I can't for the life of me get the volumes to mount properly on the linux box. I'm on Elementary OS 0.4 Loki (64-bit) docker version Client: Version: 17.03.1-ce API version: 1.27 Go version: go1.7.5 Git commit: c6d412e Built: Mon Mar 27 17:14:09 2017 OS/Arch: linux/amd64 Server: Version: 17.04.0-ce API version: 1.28 (minimum version 1.12) Go version: go1.7.5 Git commit: 4845c56 Built: Wed Apr 5 18:45:47 2017

How to add background to elementary(EFL) widget?

牧云@^-^@ 提交于 2019-12-08 08:50:49
问题 I want background color(or image) to elementary widget(also container) like grid or box. how can I set background color to elementary widget? in EFL elementary document, I found elm_bg functions, but I can't set it as background to other elementary containers... 回答1: Also asked on tizen.org, this part is unclear apparently https://developer.tizen.org/ko/forums/native-application-development/how-change-button-background-color Theming is the way to go, sample code shared at previous URL. 回答2:

How to add background to elementary(EFL) widget?

风格不统一 提交于 2019-12-07 02:39:27
I want background color(or image) to elementary widget(also container) like grid or box. how can I set background color to elementary widget? in EFL elementary document, I found elm_bg functions, but I can't set it as background to other elementary containers... Also asked on tizen.org, this part is unclear apparently https://developer.tizen.org/ko/forums/native-application-development/how-change-button-background-color Theming is the way to go, sample code shared at previous URL. Use elm_table widget. By using table, you can pack multiple objects into the same position. create elm_table.

ASN.1

£可爱£侵袭症+ 提交于 2019-12-06 12:52:39
简介: 原文: https://www.itu.int/dms_pub/itu-t/oth/0B/04/T0B040000492C01PDFC.pdf ASN.1是一种能够以独立于语言、平台和编码的形式,对计算机间交流的信息内容 进行定义的符号,并将这一定义称为“用于通信的抽象语法”。 如将它与“有效语法”的ABNF或“有效文件”的XSD概念进行比较,后一种概念 完全侧重于数据的有效编码,不关心任何可能附加给这类编码的意义,即没有任何 必要的语义联系。 ASN.1定义可方便地映射至C、C++、C#或Java数据结构等格式,用于应用编码, 并通过以XML或TLV(类型-长度-价值)或极紧密排列的编码格式提供表示形式编 解码的存储库而得到支持。 ASN.1广泛用于需要有效(低带宽、低交易成本)计算机通信的行业部门以及需要 高速信息编解码的部门(例如,生物计量信息和电话交换的传送)。 例子: 3GPP RANAP V6.2.0.asn -- FILE: @(#)RANAP-PDU-Descriptions.asn 13.2 04/09/14 -- 3GPP TS 25.413 V6.2.0 (2004-06) -- 9.3.2 Elementary Procedure Definitions -- *********************************************

How do I connect a custom function to the clicked action of a GTK Button?

旧巷老猫 提交于 2019-12-01 21:29:28
I am working my way through the Vala GTK+3 tutorial provided by Elementary OS. I understand that this code: var button_hello = new Gtk.Button.with_label ("Click me!"); button_hello.clicked.connect (() => { button_hello.label = "Hello World!"; button_hello.set_sensitive (false); }); uses a Lambda function to change the button's label when it's clicked. What I want to do is call this function instead: void clicked_button(Gtk.Button sender) { sender.label = "Clicked. Yippee!"; sender.set_sensitive(false); } I've tried this: button.clicked.connect(clicked_button(button)); But I get this error from

配置Elementary OS作为工作环境

孤人 提交于 2019-11-29 21:04:20
买了新电脑之后,就换上Elementary OS作为自己的Linux版本。不得不说,Elementary OS确实是我见过的最漂亮的Linux发行版,而且它的panel+dock的设计也很适合用来工作。折腾一番之后终于配置好了工作环境,留下此文做个记录,指不定以后用得上。 安装Sublime Text 2 Sublime Text 2堪称“最性感的代码编辑器”。在国外友人建立的PPA帮助下,安装变得十分简单。 sudo add-apt-repository ppa:webupd8team/sublime-text-2 sudo apt-get update sudo apt-get install sublime-text 此外,你也可以选择安装 sublime-text-dev 包来安装开发版的Sublime Text。不过我在安装之后厌烦它每次启动都会弹出的更新提示,而且dev版还是没法关闭,就只好换回stable版了。 安装Fcitx Elementary OS在安装中文语言支持包的时候默认安装的是ibus输入法,但是Sublime Text在Linux下对于中文输入的支持不大好,我在找解决方案的时候觉得ibus的方案很麻烦,而且我也倾心于fcitx下的搜狗拼音……还是使用PPA进行安装。 sudo add-apt-repository ppa:fcitx-team