- Zoom Download: https://zoom.us/client/latest/zoom_x86_64.tar.xz
- Zoom Instructions: https://support.zoom.us/hc/en-us/articles/204206269-Linux-Installation
curl -LO https://zoom.us/client/latest/zoom_x86_64.tar.xz
tar -xvf zoom*.tar.xz
name : highlight | |
version : 3.36 | |
release : 1 | |
source : | |
- http://www.andre-simon.de/zip/highlight-3.36.tar.bz2 : 34cd5bcf52714f83364460c0c3551320564c56ff4e117353034e532275792171 | |
license : GPL-3.0 | |
component : programming.tools | |
summary : Convert source code to formatted text with syntax highlighting | |
description: | | |
Highlight converts source code to HTML, XHTML, RTF, LaTex, TeX, SVG, BBCode and terminal escape sequences with coloured syntax highlighting. Language definitions and colour themes are customizable. |
curl -LO https://zoom.us/client/latest/zoom_x86_64.tar.xz
tar -xvf zoom*.tar.xz
[EngineCart] Unable to find test application dependencies in /home/mcritchlow/projects/ucsd/hydra-projects/hyrax/.internal_test_app/Gemfile, using placeholder dependencies | |
Fetching gem metadata from https://rubygems.org/......... | |
Fetching version metadata from https://rubygems.org/... | |
Fetching dependency metadata from https://rubygems.org/.. | |
Resolving dependencies........................................... | |
Bundler could not find compatible versions for gem "activesupport": | |
In Gemfile: | |
hyrax was resolved to 2.0.0.alpha, which depends on | |
active-fedora (>= 11.1.3) was resolved to 11.1.3, which depends on | |
activesupport (< 6, >= 4.2.4) |
Checking integrity of linux-lts Broken | |
Corrupted file: /lib/modules/4.9.32-30.lts/modules.alias | |
Corrupted file: /lib/modules/4.9.32-30.lts/modules.alias.bin | |
Corrupted file: /lib/modules/4.9.32-30.lts/modules.dep | |
Corrupted file: /lib/modules/4.9.32-30.lts/modules.dep.bin | |
Corrupted file: /lib/modules/4.9.32-30.lts/modules.symbols | |
Corrupted file: /lib/modules/4.9.32-30.lts/modules.symbols.bin | |
.. | |
.. | |
Checking integrity of mariadb-libs Broken |
$LOAD_PATH.unshift(File.dirname(__FILE__)) | |
require 'dotenv' | |
Dotenv.load | |
require 'slack_library_bot' | |
require 'web' | |
Thread.abort_on_exception = true |
From what I can gather, here are the desired outcomes of having a community google calendar for the intranet
(2) is currently the pain point, as the steps involved are very tedious. I wonder if this should be thought of differently, either way we need to leverage the google calendar more imo.
A starting point for this might be to look into using the Google Calendar API as follows (via a Confluence macro):
At UC San Diego we have a few use cases that require us to make a distinction between access control on a source file (original file) and derivatives. Most of these are related to traditonal digitized library collections where there is a donor or content provider agreement that the source files cannot be made publicly available for view/download.
Our discussion started with a post on Samvera Tech [1]. Essentially the core use case is as follows:
Current Behavior:
module Hyrax | |
module Analytics | |
# @abstract Base class for Analytics services that support statistics needs in Hyrax. | |
# Implementing subclasses must define `#connection` `#remote_statistics` and `#to_graph` | |
class Base | |
# Establish connection with the analytics service | |
def self.connection | |
raise NotImplementedError, "#{self.class}#connection is unimplemented." | |
end | |
# install terminus console fonts (only) | |
wget https://sourceforge.net/projects/terminus-font/files/terminus-font-4.46/terminus-font-4.46.tar.gz/download -O terminus.tar.gz | |
tar -xvf terminus.tar.gz | |
cd terminus-font-4.46 | |
./configure --prefix=/usr | |
make -j4 psf | |
sudo make install-psf | |
# add kernel parameter for vconsole.font | |
echo 'vconsole.font=ter-v32n' | sudo tee /etc/kernel/cmdline |
The current model pattern for Google Analytics statistics support in Hyrax follows essentially the following database format:
create_table "work_view_stats", force: :cascade do |t|
t.datetime "date"
t.integer "work_views"
t.string "work_id"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false