Archive of ‘announcement’ category

China’s new futuristic library

China’s new futuristic library is unlike any we’ve seen before

https://inhabitat.com/chinas-new-futuristic-library-is-unlike-any-weve-seen-before/

MVRDV just completed the Tianjin Binhai Public Library, a spectacular cultural center that’s unlike any library we’ve ever seen. Created in collaboration with local architects TUPDI, the 33,800-square-meter library features floor-to-ceiling bookcases that cascade in curves around a luminous spherical auditorium.

+++++++++++++++++
More on learning spaces in this IMS blog
https://blog.stcloudstate.edu/ims?s=learning+spaces

Software Carpentry Workshop

Minnesota State University Moorhead – Software Carpentry Workshop

https://www.eventbrite.com/e/minnesota-state-university-moorhead-software-carpentry-workshop-registration-38516119751

Reservation code: 680510823  Reservation for: Plamen Miltenoff

Hagen Hall – 600 11th St S – Room 207 – Moorhead

pad.software-carpentry.org/2017-10-27-Moorhead

http://www.datacarpentry.org/lessons/

https://software-carpentry.org/lessons/

++++++++++++++++

Friday

Jeff – certified Bash Python, John

http://bit.do/msum_swc

https://ntmoore.github.io/2017-10-27-Moorhead/

what is shall and what does it do. language close to computers, fast.

what is “bash” . cd, ls

shell job is a translator between the binory code, the middle name. several types of shells, with slight differences. one natively installed on MAC and Unix. born-again shell

bash commands: cd change director, ls – list; ls -F if it does not work: man ls (manual for LS); colon lower left corner tells you can scrool; q for escape; ls -ltr

arguments is colloquially used with different names. options, flags, parameters

cd ..  – move up one directory .      pwd : see the content      cd data_shell/   – go down one directory

cd ~  – brings me al the way up .        $HOME (universally defined variable

the default behavior of cd is to bring to home directory.

the core shall commands accept the same shell commands (letters)

$ du -h .     gives me the size of the files. ctrl C to stop

$ clear . – clear the entire screen, scroll up to go back to previous command

man history $ history $! pwd (to go to pwd . $ history | grep history (piping)

$ cat (and the file name) – standard output

$ cat ../

+++++++++++++++
how to edit and delete files

to create new folder: $ mkdir . – make directory

text editors – nano, vim (UNIX text editors) .      $ nano draft.txt .  ctrl O (save) ctr X (exit) .
$ vim . shift  esc (key)  and in command line – wq (write quit) or just “q”

$ mv draft.txt ../data . (move files)

to remove $ rm thesis/:     $ man rm

copy files       $cp    $ touch . (touches the file, creates if new)

remove $ rm .    anything PSEUDO is dangerous   Bash profile: cp -i

*- wild card, truncate       $ ls analyzed      (list of the analyized directory)

stackoverflow web site .

+++++++++++++++++

head command .  $head basilisk.day (check only the first several lines of a large file

$ for filename in basilisk.dat unicorn.dat . (making a loop = multiline)

> do (expecting an action) do

> head -n 3 $filename . (3 is for the first three line of the file to be displayed and -n is for the number)

> done

for doing repetitive functions

also

$ for filename in *.dat ; do head -n 3$x; done

$ for filename in *.dat ; do echo $filename do head -n 3$x; done

$ echo $filename (print statement)

how to loop

$ for filename in *.dat ; do echo $filename ; echo head -n 3 $filename ; done

ctrl c or apple comd dot to get out of the loop

http://swcarpentry.github.io/shell-novice/02-filedir/

also

$ for filename in *.dat

> do

> $filename

> head -n  10 (first ten files ) $filename | tail  -n 20 (last twenty lines)

$ for filename  in *.dat

do
>> echo  $filename
>> done

$ for filename in *.dat
>> do
>> cp $filename orig_$filename
>>done\

history > something else

$ head something.else

+++++++++++++

another function: word count

$ wc *.pdb  (protein databank)

$ head cubane.pdb

if i don;t know how to read the outpun $ man wc

the difference between “*” and “?”

$ wc -l *.pdb

$

wc -l *.pdb > lenghts.txs

cat lenghts.txt

$ for fil in *.txt
>>> do
>>> wc -l $fil

by putting a $ sign use that not the actual text.

++++++++++++

nano middle.sh . The entire point of shell is to automate

$ bash (exectubale) to run the program middle.sh

rwx – rwx – rwx . (owner – group -anybody)

bash middle.sh

$ file middle.sh

$path .

$ echo $PATH | tr “:” “\n”

/usr/local/bin

/usr/bin

/bin

/usr/sbin

/sbin

/Applications/VMware Fusion.app/Contents/Public

/usr/local/munki

$ export PATH=$PWD:$PATH

(this is to make sure that the last version of Python is running)

$ ls ~ . (hidden files)        

$ ls -a ~

$ touch .bach_profile .bashrc

$history | grep PATH

   19   echo $PATH

   44  echo #PATH | tr “:” “\n”

   45   echo $PATH | tr “:” “\n”

   46   export PATH=$PWD:$PATH

   47  echo #PATH | tr “:” “\n”

   48   echo #PATH | tr “:” “\n”

   55  history | grep PATH

 

wc -l “$@” | sort -n ($@  – encompasses eerything. will process every single file in the list of files

 

$ chmod (make it executable)

 

$ find . -type d . (find only directories, recursively, ) 

$ find . -type f (files, instead of directories)

$ find . -name ‘*.txt’ . (find files by name, don’t forget single quotes)

$ wc -l $(find . -name ‘*.txt’)  – when searching among direcories on different level

$ find . -name ‘*.txt’ | xargs wc -l    –  same as above ; two ways to do one and the same

+++++++++++++++++++

Saturday

Python

Link to the Python Plotting : https://swcarpentry.github.io/python-novice-gapminder

C and C++. scripting purposes in microbiology (instructor). libraries, packages alongside Python, which can extend its functionality. numpy and scipy (numeric and science python). Python for academic libraries?

going out of python $ quit () .      python expect beginning and end parenthesis

new terminal needed after installation. anaconda 5.0.1

python 3 is complete redesign, not only an update.

http://swcarpentry.github.io/python-novice-gapminder/setup/

jupyter crashes in safari. open in chrome. spg engine maybe

https://swcarpentry.github.io/python-novice-gapminder/01-run-quit/

to start python in the terminal $ python

>> variable = 3

>> variable +10

several data types.

stored in JSON format.

command vs edit code.  code cell is the gray box. a text cell is plain text

markdown syntax. format working with git and github .  search explanation in https://swcarpentry.github.io/python-novice-gapminder/01-run-quit/

hackMD https://hackmd.io/ (use your GIthub account)

PANDOC – translates different data formats. https://pandoc.org/

print is a function

in what cases i will run my data trough Python instead of SPSS?

python is a 0 based language. starts counting with 0 – Java, C, P

atom_name = ‘helium ‘
print(atom_name[0])                  string slicing and indexing is tricky

atom_name = ‘helium ‘
print(atom_name[0:6])
vs
atom_name = ‘helium ‘
print(atom_name[7])                python does not know how to slice it
synthax of python is        start : end : countby/step
string versus list .   string is in a single quote, list will have brakets
strings allow me to work not only w values, revers the string
atom_name = ‘helium lithium beryllium’
print(atom_name[::-1])
muillyreb muihtil muileh
Atom_name = ‘helium’
len (atom_name)                                     6 .             case sensitive
to clean the memory, restart the kernel
objects in Python have different types. adopt a class, value may have class inherent in its defintion
print (type(’42’)) .   Python tells me that it is a string
print (type(42)) .    tells e it is a string
LaTex
to combine integer and letter: print (str(1) + ‘A’)
converting a string to integer . : print (1 + int(’55’)) .    all the same type
translation table. numerical representation of a string
float
print (‘half is’, 1 / 2.0)
built in functions and help
print is a function, lenght is a function (len); type, string, int, max, round,
Python does not explain well why the code breaks
ASCI character set – build in Python conversation
libraries – package: https://swcarpentry.github.io/python-novice-gapminder/06-libraries/
function “import”
 Saturdady afternoon
reading .CSV in Python
http://swcarpentry.github.io/python-novice-gapminder/files/python-novice-gapminder-data.zip
**For windows users only: set up git https://swcarpentry.github.io/workshop-template/#git 
python is object oriented and i can define the objects
python creates its own types of objects (which we model) and those are called “DataFrame”
method applied it is an attribute to data that already exists. – difference from function
data.info() . is function – it does not take any arguments
whereas
data.columns . is a method
print (data.T) .  transpose.  not easy in Excel, but very easy in Python
print (data.describe()) .
/Users/plamen_local/anaconda3/lib/python3.6/site-packages/pandas/__init__.py
%matplotlib inline teling Jupyter notebook

import pandas

data = pandas.read_csv(‘/Users/plamen_local/Desktop/data/gapminder_gdp_oceania.csv’ , index_col=’country’)
data.loc[‘Australia’].plot()
plt.xticks(rotation=10)

GD plot 2 is the most well known library.

xelatex is a PDF engine.  reST restructured text like Markdown.  google what is the best PDF engine with Jupyter

four loops .  any computer language will have the concept of “for” loop. In Python: 1. whenever we create a “for” loop, that line must end with a single colon

2. indentation.  any “if” statement in the “for” loop, gets indented

bad rabbit virus

Bad Rabbit cryptoware attack: New virus hits companies in Russia, Turkey, Germany & Ukraine

https://www.rt.com/news/407655-bad-rabbit-cryptoware-attack/
Kaspersky Lab advised those who do not use anti-virus products to restrict execution of certain files (C:\Windows\infpub.dat, C:\Windows\cscc.dat) and shut down the Windows Management Instrumentation (WMI) service. My note: let the wolf in the shed with sheep.
The source of the attack remained undetermined, but earlier this month the head of Microsoft, Brad Smith, pinned the blame for it on North Korea, which allegedly used cyber tools or weapons that were stolen from the National Security Agency in the United States. The top executive, however, did not provide evidence to back his claims.

New ransomware attack hits Russia and spreads around globe

Malware WARNING: ‘Bad Rabbit’ virus causes flight delays, is YOUR PC susceptible?

http://www.express.co.uk/life-style/science-technology/870887/Bad-Rabbit-Ransomware-Malware-UK-Virus

Bad Rabbit ransomware outbreak

 https://nakedsecurity.sophos.com/2017/10/24/bad-rabbit-ransomware-outbreak/

++++++++++++
more on cybersecurity in this IMS blog
https://blog.stcloudstate.edu/ims?s=cybersecurity

intellectual property

When:  October 24, 2017    2:00-3:00pm
Where: Adobe Connect meeting:  https://webmeeting.minnstate.edu/oercommunityconversations

Who: Karen Pikula, Psychology faculty, Central Lakes College, and Minnesota State OER Faculty Development Coordinator

Special Guest: Gary Hunter System Director for Intellectual Property

Questions?  

Feel free to contact Kimberly Johnson, Director of Faculty and Instructional Development at kimberly.johnson@minnstate.edu or Karen Pikula, Minnesota State OER Faculty Development Coordinator, at karen.pikula@minnstate.edu.

+++++++++++

notes from the webinar

Gary Hunter. copyright. movies, public performance rights, youtube videos. up

the compliance of the terms of service of the web site. Contract law. copyright law. system procedure – copyright clearance, clearing the copyright means using it without violating the copyright law.

clearing copyright:

  • determine if materials are or are not protected
  • use your own original materials
  • perform fair use analysis with fair use checklist to usitify use
  • use in compliance with sections 110 (1) & (2) of copyright act
  • use materials avaialble through an open or CC license
  • get permission (letter, email, subscription, license, etc.)

http://www.minnstate.edu/system/asa/academicaffairs/policy/copyright/forms.html 

8 categories of copyright works

establishing copyright. eligibility requirements;

  • fixation
  • originality
  • minimal creativity

when these three criteria met, copyright arises automatically.

registering a copyright https://www.copyright.gov/ . $35. 70 years for individuals and 95 for corporations or 210 years

not protected by copyright

  • public domain (expired copyright/donated)
  • federal gov publications and web site info
  • works typically registered as a trademark
    • tag lines and slogans
      • just do it – nike 1988
      • got milk – 1993
  • math equations and formulas
  • recipes
  • blank forms
  • phone books

copyright holder exclusive rights

  1. make copies of the work
  2. prepare derivative works
  3. distribute copies
  4. perform the work – performing live (band concert); pre-record audio visual of the same items. DVD play of a movie is considered “performing”
  5. display the work

legality vs reality

legality – activity may be copyright infringement from a legal point of view.

reality – tolerated or ignored by the copyright holder for various reasons

limitations on copyright

  • fair use (#107). librarians use it a lot to copy. using copyright works in F2F teaching, scholarship, research and other non-profit ed purposes.
    1. criticism, comment, news reporting, teaching, scholarship, research

four factors to consider (not educational exception) ; it is a four part test to apply: 1. purpose and character if tge yse 2. nature of the copyirghted work (e.g. factual v creative) 3. amount
http://www.minnstate.edu/system/asa/academicaffairs/policy/copyright/docs/Fair_Use_Checklist1.pdf

http://www.minnstate.edu/system/asa/academicaffairs/policy/copyright/forms.html

fair use >> . transformation: 1. add / subtract from original 2. use for different purpose; >> parody songs – using enough of music and words to recognize the song, but not enough to it to be copyright infrigement. memes.

students’ use of copyrighted works. students may: use the entire copyrighted work but not publish openly

copyright act #110 (1) applies to F2F teaching.

copyright act #110 (2) applies to Hybrid/Online teaching. exception one digital copy can made and uploaded on D2L. reasonable and limited portions of dramatic musical or audiovisual works

http://www.minnstate.edu/system/asa/academicaffairs/policy/copyright/forms.html

personal use v public performance.

if people identifiable ask them to sign a media release form

plagiarism v copyright infringement.

Creative Commons (CC). search engine for content available through cc licenses. https://creativecommons.org/ CC BY – attribution needed; CC BY-SA may remix, tweak CC BY-ND can redistribute, but not alter CC BY-NC for non profit. CC BY-NC-SA

copyright questions

book chapters: one is a rule of thumb
PDF versions of the eassays textbook acceptable, if the students purchased it

music performance licenses: usually cover – educational activities on campus; ed activities at off-campus locations that are outreach

music licenses: BMI, ASCAP, SESAC

#201. Ownership of Copyright. Student ownership http://www.minnstate.edu/system/asa/academicaffairs/policy/copyright/forms.html

MnSCU board policy 3.26 intellectual policy. part 4, subpart A: institutional works; scholarly works; personal works; student works. MnSCU board policy 3.27.1: copyright clearance.

Gary.Hunter@so.mnscu.edu

++++++++++++
more on OER in this IMS blog
https://blog.stcloudstate.edu/ims?s=oer

academic dishonesty plagiarism in the digital age

Ercegovac, Z., & Richardson, J. J. (2004). Academic Dishonesty, Plagiarism Included, in the Digital Age: A Literature Review. College & Research Libraries65(4), 301-318.

http://login.libproxy.stcloudstate.edu/login?qurl=http%3a%2f%2fsearch.ebscohost.com%2flogin.aspx%3fdirect%3dtrue%26db%3dllf%26AN%3d502931540%26site%3dehost-live%26scope%3dsite

what constitutes plagiarism, how prevalent plagiarism is in our schools, colleges, and society, what is done to prevent and reduce plagiarism, the attitudes of faculty toward academic dishonesty in general, and individual differences as predictors of academic dishonesty

the interdisciplinary nature of the topic and the ethical challenges of accessing and using information technology, especially in the age of the Internet. Writings have been reported in the literatures of education, psychology, and library and information studies, each looking at academic dishonesty from different perspectives. The literature has been aimed at instructors and scholars in education and developmental psychology, as well as college librarians and school media specialists.

Although the literature appears to be scattered across many fields, standard dictionaries and encyclopedias agree on the meaning of plagiarism.

According to Webster’s, plagiarism is equated with kidnapping and defined as “the unauthorized use of the language and thoughts of another author and the representation of them as one’s own.”(FN10) The Oxford English Dictionary defines plagiarism as the “wrongful appropriation or purloining, and publication as one’s own, of the ideas, or the expression of the ideas (literary, artistic, musical, mechanical, etc.).”(

plagiarism is an elusive concept and has been treated differently in different contexts.

different types of plagiarism: direct plagiarism; truncation (where strings are deleted in the beginning or ending); excision (strings are deleted from the middle of sentences); insertions; inversions; substitutions; change of tense, person, number, or voice; undocumented factual information; inappropriate use of quotation marks; or paraphrasing.

defined plagiarism as a deliberate use of “someone else’s language, ideas, or other original (not common-knowledge) material without acknowledging its source.”(FN30) This definition is extended to printed and digital materials, manuscripts, and other works. Plagiarism is interrelated to intellectual property, copyright, and authorship, and is discussed from the perspective of multiculturalism.(FN31)

Jeffrey Klausman made three distinctions among direct plagiarism, paraphrase plagiarism, and patchwork plagiarism

+++++++++++++++

Cosgrove, J., Norelli, B., & Putnam, E. (2005). Setting the Record Straight: How Online Database Providers Are Handling Plagiarism and Fabrication Issues. College & Research Libraries66(2), 136-148.

http://login.libproxy.stcloudstate.edu/login?qurl=http%3a%2f%2fsearch.ebscohost.com%2flogin.aspx%3fdirect%3dtrue%26db%3dllf%26AN%3d502949739%26site%3dehost-live%26scope%3dsite

None of the database providers used links for corrections. Although it is true that the structure of a particular database (LexisNexis, for instance) may make static links more difficult to create than appending corrections, it is a shame that the most elemental characteristic of online resources–the ability to link–is so underutilized within the databases themselves.

Finding reliable materials using online databases is difficult enough for students, especially undergraduates, without having to navigate easily fixed pitfalls. The articles in this study are those most obviously in need of a correction or a link to a correction–articles identified by the publications themselves as being flawed by error, plagiarism, or fabrication. Academic librarians instruct students to carefully evaluate the literature in their campuses’ database resources. Unfortunately, it is not practical to expect undergraduate students to routinely search at the level necessary to uncover corrections and retractions nor do librarians commonly have the time to teach those skills.

+++++++++++++
more on academic dishonesty, plagiarism in this IMS blog
https://blog.stcloudstate.edu/ims?s=academic+dishonesty

teaching and learning spaces for VR and AR

Planning a Teaching and Learning Space for Virtual and Augmented Reality

Tuesday, November 14, 2017 1:00 – 2:00 p.m. EST

Planning a Teaching and Learning Space for Virtual and Augmented Reality

Dr. James P. Frazee is the Senior Academic Technology Officer and Director of Instructional Technology Services (ITS) at San Diego State University.

  • The “What”: Defining the Space
  • The “Why”: Making a Case
    • Incubator for research
    • Promotes experimentation
    • Leveraging partnerships with industry players
    • Opportunity to highlight technology
  • The “How”: Designing and Implementing
    • Designing the space

+++++++++++++
more on VR in this IMS blog

https://blog.stcloudstate.edu/ims?s=virtual+reality

digital resource sets available through MnPALS Plus

digital resource sets available through MnPALS Plus

Two sets of open access, free digital resources that may be of interest to students and faculty have been added to SCSU’s online catalog (MnPALS Plus).

Open Textbook Library (a project of the University of Minnesota)
(appears in Collection drop-down menu as “Univ of Mn Open Textbook Library”)
“Open textbooks are textbooks that have been funded, published, and licensed to be freely used, adapted, and distributed. These books have been reviewed by faculty from a variety of colleges and universities to assess their quality. These books can be downloaded for no cost, or printed at low cost. All textbooks are either used at multiple higher education institutions; or affiliated with an institution, scholarly society, or professional organization.”
For more information, see https://open.umn.edu/opentextbooks/

Ebooks Minnesota
“Ebooks Minnesota is an online ebook collection for all Minnesotans. The collection covers a wide variety of subjects for readers of all ages, and features content from our state’s independent publishers, including some of our best literature and nonfiction.”
For more information, see https://mndigital.org/projects/ebooks-minnesota

These resources are included in any search done in the online catalog. To view or search one of these collections specifically, go the the Advanced Search in MnPALS Plus and select the desired collection from the Collection dropdown. Users can add search terms, or just click “Find” without entering any search terms to see the entire collection.

 

professors with tenure

Parents: Your Children Need Professors With Tenure

By Cary Nelson OCTOBER 03, 2010

http://www.chronicle.com/article/Parents-Your-Children-Need/124776/

It’s not faculty salaries that have grown so much over the years; it’s the increasing number of administrators and their salaries—along with unnecessary building—that is breaking the higher-education bank. That’s where your tuition money goes. Why? Because administrators set one another’s salaries and pad their staffs.

+++++++++++++
more on tenure in this IMS blog
https://blog.stcloudstate.edu/ims?s=tenure

LITA guides

https://rowman.com/Action/SERIES/RL/LITA

Topics for consideration include:

  • Tools for big data
  • Developing in-house technology expertise
  • Budgeting for technology
  • Writing a technology plan
  • K-12 technology
  • Applications of agile development for libraries
  • Grant writing for library technology
  • Security for library systems

Questions or comments can be sent to Marta Deyrup, LITA Acquisitions Editor.

Proposals can be submitted to the Acquisitions editor using this link.

code4lib 2018

Code2LIB February 2018

http://2018.code4lib.org/

2018 Preconference Voting

10. The Virtualized Library: A Librarian’s Introduction to Docker and Virtual Machines
This session will introduce two major types of virtualization, virtual machines using tools like VirtualBox and Vagrant, and containers using Docker. The relative strengths and drawbacks of the two approaches will be discussed along with plenty of hands-on time. Though geared towards integrating these tools into a development workflow, the workshop should be useful for anyone interested in creating stable and reproducible computing environments, and examples will focus on library-specific tools like Archivematica and EZPaarse. With virtualization taking a lot of the pain out of installing and distributing software, alleviating many cross-platform issues, and becoming increasingly common in library and industry practices, now is a great time to get your feet wet.

(One three-hour session)

11. Digital Empathy: Creating Safe Spaces Online
User research is often focused on measures of the usability of online spaces. We look at search traffic, run card sorting and usability testing activities, and track how users navigate our spaces. Those results inform design decisions through the lens of information architecture. This is important, but doesn’t encompass everything a user needs in a space.

This workshop will focus on the other component of user experience design and user research: how to create spaces where users feel safe. Users bring their anxieties and stressors with them to our online spaces, but informed design choices can help to ameliorate that stress. This will ultimately lead to a more positive interaction between your institution and your users.

The presenters will discuss the theory behind empathetic design, delve deeply into using ethnographic research methods – including an opportunity for attendees to practice those ethnographic skills with student participants – and finish with the practical application of these results to ongoing and future projects.

(One three-hour session)

14. ARIA Basics: Making Your Web Content Sing Accessibility

https://dequeuniversity.com/assets/html/jquery-summit/html5/slides/landmarks.html
Are you a web developer or create web content? Do you add dynamic elements to your pages? If so, you should be concerned with making those dynamic elements accessible and usable to as many as possible. One of the most powerful tools currently available for making web pages accessible is ARIA, the Accessible Rich Internet Applications specification. This workshop will teach you the basics for leveraging the full power of ARIA to make great accessible web pages. Through several hands-on exercises, participants will come to understand the purpose and power of ARIA and how to apply it for a variety of different dynamic web elements. Topics will include semantic HTML, ARIA landmarks and roles, expanding/collapsing content, and modal dialog. Participants will also be taught some basic use of the screen reader NVDA for use in accessibility testing. Finally, the lessons will also emphasize learning how to keep on learning as HTML, JavaScript, and ARIA continue to evolve and expand.

Participants will need a basic background in HTML, CSS, and some JavaScript.

(One three-hour session)

18. Learning and Teaching Tech
Tech workshops pose two unique problems: finding skilled instructors for that content, and instructing that content well. Library hosted workshops are often a primary educational resource for solo learners, and many librarians utilize these workshops as a primary outreach platform. Tackling these two issues together often makes the most sense for our limited resources. Whether a programming language or software tool, learning tech to teach tech can be one of the best motivations for learning that tech skill or tool, but equally important is to learn how to teach and present tech well.

This hands-on workshop will guide participants through developing their own learning plan, reviewing essential pedagogy for teaching tech, and crafting a workshop of their choice. Each participant will leave with an actionable learning schedule, a prioritized list of resources to investigate, and an outline of a workshop they would like to teach.

(Two three-hour sessions)

23. Introduction to Omeka S
Omeka S represents a complete rewrite of Omeka Classic (aka the Omeka 2.x series), adhering to our fundamental principles of encouraging use of metadata standards, easy web publishing, and sharing cultural history. New objectives in Omeka S include multisite functionality and increased interaction with other systems. This workshop will compare and contrast Omeka S with Omeka Classic to highlight our emphasis on 1) modern metadata standards, 2) interoperability with other systems including Linked Open Data, 3) use of modern web standards, and 4) web publishing to meet the goals medium- to large-sized institutions.

In this workshop we will walk through Omeka S Item creation, with emphasis on LoD principles. We will also look at the features of Omeka S that ease metadata input and facilitate project-defined usage and workflows. In accordance with our commitment to interoperability, we will describe how the API for Omeka S can be deployed for data exchange and sharing between many systems. We will also describe how Omeka S promotes multiple site creation from one installation, in the interest of easy publishing with many objects in many contexts, and simplifying the work of IT departments.

(One three-hour session)

24. Getting started with static website generators
Have you been curious about static website generators? Have you been wondering who Jekyll and Hugo are? Then this workshop is for you

My notehttps://opensource.com/article/17/5/hugo-vs-jekyll

But this article isn’t about setting up a domain name and hosting for your website. It’s for the step after that, the actual making of that site. The typical choice for a lot of people would be to use something like WordPress. It’s a one-click install on most hosting providers, and there’s a gigantic market of plugins and themes available to choose from, depending on the type of site you’re trying to build. But not only is WordPress a bit overkill for most websites, it also gives you a dynamically generated site with a lot of moving parts. If you don’t keep all of those pieces up to date, they can pose a significant security risk and your site could get hijacked.

The alternative would be to have a static website, with nothing dynamically generated on the server side. Just good old HTML and CSS (and perhaps a bit of Javascript for flair). The downside to that option has been that you’ve been relegated to coding the whole thing by hand yourself. It’s doable, but you just want a place to share your work. You shouldn’t have to know all the idiosyncrasies of low-level web design (and the monumental headache of cross-browser compatibility) to do that.

Static website generators are tools used to build a website made up only of HTML, CSS, and JavaScript. Static websites, unlike dynamic sites built with tools like Drupal or WordPress, do not use databases or server-side scripting languages. Static websites have a number of benefits over dynamic sites, including reduced security vulnerabilities, simpler long-term maintenance, and easier preservation.

In this hands-on workshop, we’ll start by exploring static website generators, their components, some of the different options available, and their benefits and disadvantages. Then, we’ll work on making our own sites, and for those that would like to, get them online with GitHub pages. Familiarity with HTML, git, and command line basics will be helpful but are not required.

(One three-hour session)

26. Using Digital Media for Research and Instruction
To use digital media effectively in both research and instruction, you need to go beyond just the playback of media files. You need to be able to stream the media, divide that stream into different segments, provide descriptive analysis of each segment, order, re-order and compare different segments from the same or different streams and create web sites that can show the result of your analysis. In this workshop, we will use Omeka and several plugins for working with digital media, to show the potential of video streaming, segmentation and descriptive analysis for research and instruction.

(One three-hour session)

28. Spark in the Dark 101 https://zeppelin.apache.org/
This is an introductory session on Apache Spark, a framework for large-scale data processing (https://spark.apache.org/). We will introduce high level concepts around Spark, including how Spark execution works and it’s relationship to the other technologies for working with Big Data. Following this introduction to the theory and background, we will walk workshop participants through hands-on usage of spark-shell, Zeppelin notebooks, and Spark SQL for processing library data. The workshop will wrap up with use cases and demos for leveraging Spark within cultural heritage institutions and information organizations, connecting the building blocks learned to current projects in the real world.

(One three-hour session)

29. Introduction to Spotlight https://github.com/projectblacklight/spotlight
http://www.spotlighttechnology.com/4-OpenSource.htm
Spotlight is an open source application that extends the digital library ecosystem by providing a means for institutions to reuse digital content in easy-to-produce, attractive, and scholarly-oriented websites. Librarians, curators, and other content experts can build Spotlight exhibits to showcase digital collections using a self-service workflow for selection, arrangement, curation, and presentation.

This workshop will introduce the main features of Spotlight and present examples of Spotlight-built exhibits from the community of adopters. We’ll also describe the technical requirements for adopting Spotlight and highlight the potential to customize and extend Spotlight’s capabilities for their own needs while contributing to its growth as an open source project.

(One three-hour session)

31. Getting Started Visualizing your IoT Data in Tableau https://www.tableau.com/
The Internet of Things is a rising trend in library research. IoT sensors can be used for space assessment, service design, and environmental monitoring. IoT tools create lots of data that can be overwhelming and hard to interpret. Tableau Public (https://public.tableau.com/en-us/s/) is a data visualization tool that allows you to explore this information quickly and intuitively to find new insights.

This full-day workshop will teach you the basics of building your own own IoT sensor using a Raspberry Pi (https://www.raspberrypi.org/) in order to gather, manipulate, and visualize your data.

All are welcome, but some familiarity with Python is recommended.

(Two three-hour sessions)

32. Enabling Social Media Research and Archiving
Social media data represents a tremendous opportunity for memory institutions of all kinds, be they large academic research libraries, or small community archives. Researchers from a broad swath of disciplines have a great deal of interest in working with social media content, but they often lack access to datasets or the technical skills needed to create them. Further, it is clear that social media is already a crucial part of the historical record in areas ranging from events your local community to national elections. But attempts to build archives of social media data are largely nascent. This workshop will be both an introduction to collecting data from the APIs of social media platforms, as well as a discussion of the roles of libraries and archives in that collecting.

Assuming no prior experience, the workshop will begin with an explanation of how APIs operate. We will then focus specifically on the Twitter API, as Twitter is of significant interest to researchers and hosts an important segment of discourse. Through a combination of hands-on and demos, we will gain experience with a number of tools that support collecting social media data (e.g., Twarc, Social Feed Manager, DocNow, Twurl, and TAGS), as well as tools that enable sharing social media datasets (e.g., Hydrator, TweetSets, and the Tweet ID Catalog).

The workshop will then turn to a discussion of how to build a successful program enabling social media collecting at your institution. This might cover a variety of topics including outreach to campus researchers, collection development strategies, the relationship between social media archiving and web archiving, and how to get involved with the social media archiving community. This discussion will be framed by a focus on ethical considerations of social media data, including privacy and responsible data sharing.

Time permitting, we will provide a sampling of some approaches to social media data analysis, including Twarc Utils and Jupyter Notebooks.

(One three-hour session)

1 33 34 35 36 37 65