RainbowStream Documentation

Size: px
Start display at page:

Download "RainbowStream Documentation"

Transcription

1 RainbowStream Documentation Release Vu Nhat Minh Sep 04, 2017

2

3 Contents 1 Install The quick way The recommended way Troubleshooting Usage The stream The interactive mode Theme customization Config explanation Development 11 i

4 ii

5 Terminal-based Twitter Client. Realtime tweetstream, compose, search, favorite... and much more fun directly from terminal. This package is built on the top of Python Twitter Tool and Twitter API, can run on Python 2.7.x and 3.x. Home page : Source code : Contents 1

6 2 Contents

7 CHAPTER 1 Install The quick way You will need Python and pip (2.7.x or 3.x). sudo pip install rainbowstream # Python 3 users: sudo pip3 install rainbowstream The recommended way Use virtualenv virtualenv venv # Python 3 users : use -p to specify your Python 3 localtion as below # virtualenv -p /usr/bin/python3 venv source venv/bin/activate pip install rainbowstream Troubleshooting If you use Linux, you might need to install some packages if you haven t already. For debian-based distros, these can be installed with sudo apt-get install python-dev libjpeg libjpeg-dev libfreetype6 libfreetype6-dev zlib1g-dev Besides, Mac OSX Maverick with Xcode 5.1 has a well-known clang unknown argument problem with the Pillow package installation - a dependency of this app. If you are in this case, I recommend taking a look at Issue #10 and let me know if this workaround doesn t work for you. 3

8 export ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future If installation in the quick way doesn t work: sudo pip uninstall rainbowstream use the virtualenv way above create an issue _ and provide: Your OS Your Python version 4 Chapter 1. Install

9 CHAPTER 2 Usage The stream Just type rainbowstream and see your stream. I shipped a feature which can display tweet s images directly on terminal. You can try it with: rainbowstream -iot # Or rainbowstream --image-on-term You also can change the config key IMAGE_ON_TERM to True inside the app to enable above feature, change IMAGE_SHIFT to set image s margin (relative to your terminal s width) or IMAGE_MAX_HEIGHT to control max height of every image. (see config management section). In the first time you will be asked for authorization of Rainbow Stream app at Twitter. Just click the Authorize access button and paste PIN number to the terminal, the rainbow will start. You might want to use rainbowstream via an HTTP/SOCKS proxy. Proxy settings are provided as follows: rainbowstream --proxy-host localhost --proxy-port proxy-type HTTP # or using the short form: rainbowstream -ph localhost -pp pt HTTP Both --proxy-port and --proxy-type can be omitted. In this case default proxy port 8080 and default proxy type SOCKS5 are used. The interactive mode While your personal stream is continued, you are also ready to tweet, search, reply, retweet... directly from console. Simply type h and hit the Enter key to see the help. 5

10 Input is in interactive mode. It means that you can use arrow key to move up and down history, tab-autocomplete or 2 tab to view available suggestion. Input history from previous run is available as well. Here is full list of supported command: Explore Commands trend will show global trending topics. trend US will show trends in United States while trend JP Tokyo will show trends in Tokyo/Japan. home will show your timeline. home 10 will print exactly 10 tweets. me will show your latest tweets. me 2 will show your last 2 tweets. notification will show your notification from the time you started RainbowStream. mentions will show mentions timeline. mentions 7 will show 7 mention tweets. will show profile will s timeline. 9 will print exactly 9 tweets. s noah will search the word noah. Result will come back with highlight. Search can be performed with or without hashtag. Tweet Commands t the rainbow is god's promise to noah will tweet exactly the rainbow is god s promise to noah. rt 12 will retweet the tweet with [id=12]. You can see id of each tweet beside the time. quote 12 will quote the tweet with [id=12]. If no extra text is added, the quote will be cancelled. allrt will list 20 newest retweets of the tweet with [id=12]. If the number of retweets is not specified, 5 newest retweets will be listed instead. conversation 12 will show the chain of replies prior to the tweet with [id=12]. rep 12 Really will reply Really to the owner of the tweet with [id=12]. repall 12 Really will reply Really to all people in the tweet with [id=12]. fav 12 will favorite the tweet with [id=12]. ufav 12 will unfavorite tweet with [id=12]. share 12 will copy link to tweet with [id=12] to your clipboard if you are on a Mac, or display it directly if you are on Linux. del 12 will delete tweet with [id=12]. show image 12 will show the image in tweet with [id=12] in your OS s image viewer. open 12 will open url in tweet with [id=12] in your OS s default browser. pt 12 will add tweet with [id=12] in your Pocket list. Direct Messages Commands inbox will show inbox messages. inbox 7 will show newest 7 messages. thread 2 will show full thread with [id=2]. hi will send a hi message trash 5 will remove message with [message_id=5] Friends and followers Commands 6 Chapter 2. Usage

11 ls fl will list all your followers (people who are following you). ls fr will list all your friends (people who you are following). will will will will muting will list muting users. will will will as a spam account. Twitter list list will show all lists you are belong to. list home will show timeline of list. You will be asked for list s name. list all_mem will show list s all members. list all_sub will show list s all subscribers. list add will add specific person to a list owned by you. list rm will remove specific person from a list owned by you. list sub will subscribe you to a specific list. list unsub will unsubscribe you from a specific list. list own will show all list owned by you. list new will create a new list. list update will update a list owned by you. list del will delete a list owned by you. Switching Stream Commands switch public #AKB48 will switch current stream to public stream and track keyword AKB48 switch public #AKB48 -f will do exactly as above but will ask you to provide 2 list: Only nicks decide what nicks will be include only. Ignore nicksdecide what nicks will be exclude. switch mine will switch current stream to personal stream. -f will work as well. switch list will switch to a Twitter list s stream. You will be asked for list name. Smart shell Put anything to terminal, the app will try to eval and display result as a python interactive shell *2 or 101**3 like a calculator. Even cal will show the calendar for current month. Put order_rainbow('anything') or random_rainbow('wahahaha') will make more fun :) Config Management 2.2. The interactive mode 7

12 theme will list available themes. theme monokai will apply monokai theme immediately. Changed theme will be remember as the next time s default theme. config will list all config key. config ASCII_ART will output current value of ASCII_ART config key. config TREND_MAX default will output default value of TREND_MAX config key. config CUSTOM_CONFIG drop will drop CUSTOM_CONFIG config key. config IMAGE_ON_TERM = true will set value of IMAGE_ON_TERM config key to True. Screening Commands h will show the help. p will pause the stream. r will unpause the stream. c will clear the screen. v will show version info. q will quit. Theme customization Rainbow Stream is shipped with some default themes. You can either change theme by theme command or create your favorite one. Theme s screenshot: Monokai Solarized Tomorrow Night Larapaste For detaile information, see theme usage and customization. Config explanation Rainbow Stream has a custom config file located at ~/.rainbow_config.json which will be loaded after its default config. You are free to change anything on your custom config, but if you messed up with JSON format, the app would still works fine. Simply overwrite your custom config withe the default config to solve format problems. You also can view or set a new value of every config key by config command (See Interactive mode section above). HEARTBEAT_TIMEOUT: after this timeout (count by minutes), the stream will automatically hangup. IMAGE_ON_TERM: display tweet s image directly on terminal. 8 Chapter 2. Usage

13 IMAGE_RESIZE_TO_FIT: display tweet s image fit inside terminal view (width and height). THEME: current theme. ASCII_ART: diplay your twitter name by ascii art at stream begin or not. HIDE_PROMPT: hide prompt after receiving a tweet or not. PREFIX: display formated string of prompt. #me: Your username only available in personal stream. #place: List name, only available in list stream. #owner: Owner of list name, only available in list stream. #keyword: Keyword, only available on public stream. SEARCH_TYPE: search type in search command ( mixed, recent, popular ). SEARCH_MAX_RECORD: max tweets can display on search command. HOME_TWEET_NUM: default tweets to display on home command. RETWEETS_SHOW_NUM: default tweets to display on allrt command. CONVERSATION_MAX: max tweet in a conversation thread. QUOTE_FORMAT: format when quote a tweet #comment: Your own comment about the tweet #owner: owner s username #tweet: original tweet #tid: the tweet id on Twitter THREAD_META_LEFT: format for meta information of messages from partner which is display in the left of screen. THREAD_META_RIGHT: format for meta information of messages from you which is display in the right of screen. THREAD_MIN_WIDTH: minimum width of a message frame. NOTIFY_FORMAT: format of a notification. MESSAGES_DISPLAY: default messages to display on inbox or sent command. TREND_MAX: default trends to display on trend command. LIST_MAX: default tweets to display on list home command. ONLY_LIST: filter list on switch command. Eg: mdo ] IGNORE_LIST: ignore list on switch command. Eg: ] HISTORY_FILENAME: name of file which stores input history. IMAGE_SHIFT: left and right margin of image in -iot / image-on-term mode. IMAGE_MAX_HEIGHT: max height of image in -iot / image-on-term mode. STREAM_DELAY: seconds to wait before displaying another tweet, will drop all tweets while waiting. This value can be used to slow down the stream. USER_DOMAIN: user URL of Twitter Streaming API Config explanation 9

14 PUBLIC_DOMAIN: public URL of Twitter Streaming API. SITE_DOMAIN: site URL of Twitter Streaming API. FORMAT: display format for tweet and message. CLOCK_FORMAT: time format, see Python s strftime format. DISPLAY: decide how tweet will be printed. #name: Twitter s name #nick: Twitter s screen name #clock: Datetime #rt_count: retweets count #fa_count: favorites count #id: ID #fav: favorited symbol #fav: favorited symbol #tweet: Tweet s content #sender_name: Message s sender name #sender_nick: Message s sender screen name #to: >>> symbol #recipient_name: Message s recipient name #recipient_nick: Message s recipient screen name POCKET_SUPPORT : enable Pocket support. In every format, you can use unicode characters like \u2665. Mac users also can use emoji characters as well (Ex: ::zap::). See Emoji cheatsheet for details. 10 Chapter 2. Usage

15 CHAPTER 3 Development If you want to build a runnable version yourself, follow these simple steps Create your own Twitter Application Get your Twitter application s API key and secret Fork github s repo and clone in your system. Create a file consumer.py in rainbowstream folder with following content # Consumer information CONSUMER_KEY = 'APIKey' # Your Twitter application's API key CONSUMER_SECRET = 'APISecret' # Your Twitter application's API secret PCKT_CONSUMER_KEY = 'PocketAPIKey' # Your Pocket application's API key Use pip to install in local # cd to directory which contains setup.py (cloned directory) virtualenv venv # Python3 users: use -p to specify python3 source venv/bin/activate pip install -e. which rainbowstream # /this-directory/venv/bin/rainbowstream # Remove ~/.rainbow_oauth if exists rainbowstream # local version of rainbowstream 11

Account Activity Migration guide & set up

Account Activity Migration guide & set up Account Activity Migration guide & set up Agenda 1 2 3 4 5 What is the Account Activity (AAAPI)? User Streams & Site Streams overview What s different & what s changing? How to migrate to AAAPI? Questions?

More information

Account Activity Migration guide & set up

Account Activity Migration guide & set up Account Activity Migration guide & set up Agenda 1 2 3 4 5 What is the Account Activity (AAAPI)? User Streams & Site Streams overview What s different & what s changing? How to migrate to AAAPI? Questions?

More information

Privacy and Security in Online Social Networks Department of Computer Science and Engineering Indian Institute of Technology, Madras

Privacy and Security in Online Social Networks Department of Computer Science and Engineering Indian Institute of Technology, Madras Privacy and Security in Online Social Networks Department of Computer Science and Engineering Indian Institute of Technology, Madras Lecture 12 Tutorial 3 Part 1 Twitter API In this tutorial, we will learn

More information

Austin Community College Google Apps Groups Step-by-Step Guide

Austin Community College Google Apps Groups Step-by-Step Guide The topics that will be covered in this workshop: Three Options (p.2) Creating a Group (p.3) Ø Option #1 (p.3) i. Access Levels (p. 4) ii. Add Members (p. 5) Ø Option #2 (p.6) Groups (p.7) Search (p.7)

More information

How to Register for a Developer Account Nick V. Flor

How to Register for a Developer Account Nick V. Flor How to Register for a Developer Account Nick V. Flor (professorf@gmail.com) Before you can scrape Twitter, you need a Consumer Key and Consumer Secret (codes). But before you can get these codes, you need

More information

Discover (n.): This feature surfaces personalized content tailored to your interests.

Discover (n.): This feature surfaces personalized content tailored to your interests. Glossary: General Terms @: The @ sign is used to call out usernames in Tweets: "Hello @twitter!" People will use your @username to mention you in Tweets, send you a message or link to your profile. @username:

More information

Twitter Basics at the Deerfield Public Library

Twitter Basics at the Deerfield Public Library Twitter Basics at the Deerfield Public Library Class Outline: 1) What is Twitter? 2) Setting up an account and profile 3) Terms you should know & examples 4) How do I decide what to write? 5) Q & A Expected

More information

RingCentral for Google Chrome Extension. UK User Guide

RingCentral for Google Chrome Extension. UK User Guide RingCentral for Google Chrome Extension UK User Guide RingCentral for Google UK User Guide Contents 2 Contents Introduction... 4 About RingCentral for Google Chrome Extension.............................................

More information

Part 1. Learn how to collect streaming data from Twitter web API.

Part 1. Learn how to collect streaming data from Twitter web API. Tonight Part 1. Learn how to collect streaming data from Twitter web API. Part 2. Learn how to store the streaming data to files or a database so that you can use it later for analyze or representation

More information

Outlook Web App. Getting Started. QUICK Source. Microsoft. in Exchange Server 2010

Outlook Web App. Getting Started. QUICK Source. Microsoft. in Exchange Server 2010 QUICK Source Microsoft Outlook Web App in Exchange Server 2010 Getting Started The Outlook Web App Window u v w x y u v w x y Browser Toolbars allow the user to navigate in the browser. Outlook Web Access

More information

Create an Account... 2 Setting up your account... 2 Send a Tweet... 4 Add Link... 4 Add Photo... 5 Delete a Tweet...

Create an Account... 2 Setting up your account... 2 Send a Tweet... 4 Add Link... 4 Add Photo... 5 Delete a Tweet... Twitter is a social networking site allowing users to post thoughts and ideas in 140 characters or less. http://www.twitter.com Create an Account... 2 Setting up your account... 2 Send a Tweet... 4 Add

More information

TALHI Mobile App Guide

TALHI Mobile App Guide TALHI Mobile App Guide GETTING STARTED DOWNLOAD THE FREE TALHI APP TO YOUR SMART PHONE OR TABLET: iphone and ipad users search TALHI on the Apple App Store. Android users search TALHI on the Google Play

More information

Introduction to Twitter

Introduction to Twitter Introduction to Twitter Objectives After completing this class you will be able to: Identify what Twitter is Create a Twitter Account Customize your Twitter profile and settings Follow other users on Twitter

More information

RingCentral for Google. User Guide

RingCentral for Google. User Guide RingCentral for Google User Guide RingCentral for Google User Guide Contents 2 Contents Introduction............................................................... 4 About RingCentral for Google..........................................................

More information

Introduction to Git and GitHub for Writers Workbook February 23, 2019 Peter Gruenbaum

Introduction to Git and GitHub for Writers Workbook February 23, 2019 Peter Gruenbaum Introduction to Git and GitHub for Writers Workbook February 23, 2019 Peter Gruenbaum Table of Contents Preparation... 3 Exercise 1: Create a repository. Use the command line.... 4 Create a repository...

More information

User Guide. BlackBerry Workspaces for Windows. Version 5.5

User Guide. BlackBerry Workspaces for Windows. Version 5.5 User Guide BlackBerry Workspaces for Windows Version 5.5 Published: 2017-03-30 SWD-20170330110027321 Contents Introducing BlackBerry Workspaces for Windows... 6 Getting Started... 7 Setting up and installing

More information

Introduction Secure Message Center (Webmail, Mobile & Visually Impaired) Webmail... 2 Mobile & Tablet... 4 Visually Impaired...

Introduction Secure Message Center (Webmail, Mobile & Visually Impaired) Webmail... 2 Mobile & Tablet... 4 Visually Impaired... WEB MESSAGE CENTER END USER GUIDE The Secure Web Message Center allows users to access and send and receive secure messages via any browser on a computer, tablet or other mobile devices. Introduction...

More information

SharePoint. Team Site End User Guide. Table of Contents

SharePoint. Team Site End User Guide. Table of Contents Table of Contents Introduction... 1 Logging in for the First Time:... 1 Areas of the team site:... 2 Navigating the team site:... 3 Adding Content to the team site:... 3 The Ribbon:... 3 Adding a Link:...

More information

How to Use Google Alerts

How to Use Google Alerts How to Use Google Alerts Google Alerts is a service that generates search engine results, based on criteria provided by you, and delivers the results to your e mail account. This service is useful for

More information

CSE 101 Introduction to Computers Development / Tutorial / Lab Environment Setup

CSE 101 Introduction to Computers Development / Tutorial / Lab Environment Setup CSE 101 Introduction to Computers Development / Tutorial / Lab Environment Setup Purpose: The purpose of this lab is to setup software that you will be using throughout the term for learning about Python

More information

Applications. View All Applications. People. Contact Details

Applications. View All Applications. People. Contact Details View All, page 1 People, page 1 Email, page 7 Jabber, page 13 Meetings, page 17 WebEx, page 20 More, page 24 View All Tap to display all installed applications. People Use the People application to store,

More information

Applications. View All Applications. . Inbox

Applications. View All Applications.  . Inbox View All, page 1 Email, page 1 Jabber, page 7 Meetings, page 11 People, page 14 WebEx, page 20 More, page 23 View All Tap to display all installed applications. Email The Email application allows you to

More information

Setup... 3 Connect your accounts in GatorSocial... 4 Competitors...10 Topics Tab...12

Setup... 3 Connect your accounts in GatorSocial... 4 Competitors...10 Topics Tab...12 GATORSOCIAL Table of Contents Setup... 3 Connect your accounts in... 4 Competitors...10 Topics Tab...12 How to compose a message...16 Composing a new message in...17 Dispatched and Scheduled Posts...20

More information

GMusicProcurator Documentation

GMusicProcurator Documentation GMusicProcurator Documentation Release 0.5.0 Mark Lee Sep 27, 2017 Contents 1 Features 3 2 Table of Contents 5 2.1 Installation................................................ 5 2.1.1 Requirements..........................................

More information

Bitnami Re:dash for Huawei Enterprise Cloud

Bitnami Re:dash for Huawei Enterprise Cloud Bitnami Re:dash for Huawei Enterprise Cloud Description Re:dash is an open source data visualization and collaboration tool. It was designed to allow fast and easy access to billions of records in all

More information

CSE 303 Lecture 2. Introduction to bash shell. read Linux Pocket Guide pp , 58-59, 60, 65-70, 71-72, 77-80

CSE 303 Lecture 2. Introduction to bash shell. read Linux Pocket Guide pp , 58-59, 60, 65-70, 71-72, 77-80 CSE 303 Lecture 2 Introduction to bash shell read Linux Pocket Guide pp. 37-46, 58-59, 60, 65-70, 71-72, 77-80 slides created by Marty Stepp http://www.cs.washington.edu/303/ 1 Unix file system structure

More information

Installing and Using Docker Toolbox for Mac OSX and Windows

Installing and Using Docker Toolbox for Mac OSX and Windows Installing and Using Docker Toolbox for Mac OSX and Windows One of the most compelling reasons to run Docker on your local machine is the speed at which you can deploy and build lab environments. As a

More information

CommzGate Cloud SMS User Guide

CommzGate Cloud SMS User Guide CommzGate Cloud SMS User Guide 2014 Welcome! This User Guide takes a visual approach to introducing you to the features found on the CommzGate Cloud SMS Web Portal. Each major part of the User Interface

More information

Remote Support 19.1 Web Rep Console

Remote Support 19.1 Web Rep Console Remote Support 19.1 Web Rep Console 2003-2019 BeyondTrust Corporation. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust Corporation. Other trademarks are the property

More information

Aldryn Installer Documentation

Aldryn Installer Documentation Aldryn Installer Documentation Release 0.2.0 Iacopo Spalletti February 06, 2014 Contents 1 django CMS Installer 3 1.1 Features.................................................. 3 1.2 Installation................................................

More information

Marist Mail Reference Guide

Marist Mail Reference Guide Marist Mail Reference Guide Accessing Marist Mail 1. In your browsers address box, type the url: Mari.st/mmail Logging in 2. On the Marist Login screen, type your Marist Account as First.Last and your

More information

swiftenv Documentation

swiftenv Documentation swiftenv Documentation Release 1.3.0 Kyle Fuller Sep 27, 2017 Contents 1 The User Guide 3 1.1 Installation................................................ 3 1.2 Getting Started..............................................

More information

Webmail 7.0 is an online client which runs in your web browser. Webmail 7.0 allows you to access your , contact list, and calendar from

Webmail 7.0 is an online  client which runs in your web browser. Webmail 7.0 allows you to access your  , contact list, and calendar from Webmail 7.0 is an online email client which runs in your web browser. Webmail 7.0 allows you to access your email, contact list, and calendar from any computer with an internet connection and a web browser.

More information

SASKTEL INTEGRATED BUSINESS COMMUNICATIONS (IBC)

SASKTEL INTEGRATED BUSINESS COMMUNICATIONS (IBC) SASKTEL INTEGRATED BUSINESS COMMUNICATIONS (IBC) DESKTOP CLIENT USER GUIDE Version 4 January 2018 TABLE OF CONTENTS About the SaskTel IBC Desktop Client...3 Requirements...3 How to download and install

More information

Skype for Business for Android

Skype for Business for Android Skype for Business for Android November 2015 Topics in this guide include: Joining meetings Updating availability status Managing contacts Having conversations Customizing your settings For more information

More information

ONCE SIGNED IN, YOU MAY USE YOUR HQ TO:

ONCE SIGNED IN, YOU MAY USE YOUR HQ TO: MY HQ HOW TO Your online My HQ provides a wealth of resources to help in your fundraising efforts. This guide will show you how to effectively take advantage of these tools as you join us in the fight

More information

SECTION 5 USING STUDENT

SECTION 5 USING STUDENT SECTION 5 USING STUDENT EMAIL 5. USING STUDENT EMAIL On enrolling at the University all students automatically have an email account created. Account creation depends on a student successfully enrolling

More information

Oracle Beehive. Before Using Oracle Beehive Client and Communicator. Using BlackBerry with Oracle Beehive Release 2 ( )

Oracle Beehive. Before Using Oracle Beehive Client and Communicator. Using BlackBerry with Oracle Beehive Release 2 ( ) Oracle Beehive Using BlackBerry with Oracle Beehive Release 2 (2.0.1.6) November 2011 Document updated November 4, 2011 This document describes how to access Oracle Beehive from your RIM BlackBerry device

More information

Canisius College ITS Documentation Outlook for Laptops and Desktops Contents

Canisius College ITS Documentation Outlook  for Laptops and Desktops Contents Canisius College ITS Documentation Outlook Email for Laptops and Desktops Contents Module 1 Module 2 Module 3 Module 4 Module 5 Module 6 Module 7 Different forms of Outlook Purging your Email Creating

More information

Icons and symbols used on the Twitter app

Icons and symbols used on the Twitter app Icons and Symbols on the Twitter App In this tutorial you will learn: Icons and symbols used on the Twitter app Introduction There are many icons and symbols on the Twitter app for your smartphone. The

More information

More on . More on

More on  . More on Attachments... 4 Add, Send and Open an Attachment... 4 Save an Attachment... 5 More Actions Button... 5 Exercise... 5 Mark as Read... 6 Mark as Unread... 6 Add to Tasks... 6 Add Star... 6 Remove Star...

More information

Salesforce DX Setup Guide

Salesforce DX Setup Guide Salesforce DX Setup Guide Version 44.0, Winter 19 @salesforcedocs Last updated: September 6, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com,

More information

InterActive SyslogViewer Adiscon GmbH

InterActive SyslogViewer Adiscon GmbH InterActive SyslogViewer I InterActive SyslogViewer Table of Contents Part I About InterActive SyslogViewer 1 1 Features... 1 2 Requirements... 1 Part II Options & Configuration 1 1 Launching... InterActive

More information

SOCIAL MEDIA. Charles Murphy

SOCIAL MEDIA. Charles Murphy SOCIAL MEDIA Charles Murphy Social Media Overview 1. Introduction 2. Social Media Areas Blogging Bookmarking Deals Location-based Music Photo sharing Video 3. The Fab Four FaceBook Google+ Linked In Twitter

More information

Nasuni Desktop Client User Guide

Nasuni Desktop Client User Guide Nasuni combines the best features of consumer file-sharing applications with the secure and robust storage infrastructure that enterprises demand. The Nasuni Desktop Client provides an easy-to-use, enterprise-friendly

More information

You have to have a reason for using Twitter otherwise it is just another IT tool.

You have to have a reason for using Twitter otherwise it is just another IT tool. Twitter Workshop Twitter is a service for users that communicate and stay connected through the exchange of quick messages. This digital communication often leads to the creation of a social network formed

More information

UCRI IEEE Secure Development Conference RAPIDS 2 HS outreach SFS

UCRI IEEE Secure Development Conference RAPIDS 2 HS outreach SFS UC.yber; Meeting 20 Announcements Tomorrow UCRI will be hearing out our research ideas IEEE Secure Development Conference (at MIT) apply by Aug 11th RAPIDS 2 under discussion as State faces funding problems

More information

SUBSCRIBING TO ICAL FEEDS

SUBSCRIBING TO ICAL FEEDS SUBSCRIBING TO ICAL FEEDS INSTRUCTIONS OUTLOOK 2007/2010/2013 GOOGLE CALENDAR APPLE IPHONE 4 (OR LATER) IPAD GENERAL INFORMATION WHAT IS AN ICAL FEED? icalendar (ical) format is a standard for calendar

More information

Agent and Agent Browser. Updated Friday, January 26, Autotask Corporation

Agent and Agent Browser. Updated Friday, January 26, Autotask Corporation Agent and Agent Browser Updated Friday, January 26, 2018 2018 Autotask Corporation Table of Contents Table of Contents 2 The AEM Agent and Agent Browser 3 AEM Agent 5 Privacy Mode 9 Agent Browser 11 Agent

More information

Human-Computer Interaction Design

Human-Computer Interaction Design Human-Computer Interaction Design COGS120/CSE170 - Intro. HCI Instructor: Philip Guo, Lab TA: Sean Kross Lab 1 - Version control and HTML (2017-10-06) by Michael Bernstein, Scott Klemmer, Philip Guo, and

More information

Hostopia WebMail Help

Hostopia WebMail Help Hostopia WebMail Help Table of Contents GETTING STARTED WITH WEBMAIL...5 Version History...6 Introduction to WebMail...6 Cookies and WebMail...6 Logging in to your account...6 Connection time limit...7

More information

TELUS Business Connect for Google User Guide

TELUS Business Connect for Google User Guide TELUS Business Connect for Google User Guide TELUS Business Connect for Google User Guide Contents 2 Contents Introduction... 4 About TELUS Business Connect for Google... 5 About this guide... 5 Basics...

More information

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Gerrit

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Gerrit Gerrit About the Tutorial Gerrit is a web-based code review tool, which is integrated with Git and built on top of Git version control system (helps developers to work together and maintain the history

More information

bla bla Groupware User Guide

bla bla Groupware User Guide bla bla Groupware User Guide Groupware Groupware: User Guide Publication date Tuesday, 25. July 2017 Version 7.8.3 Copyright 2016-2017 OX Software GmbH, This document is the intellectual property of OX

More information

Setting up your Netvibes Dashboard Adding a Blog to your Dashboard

Setting up your Netvibes Dashboard Adding a Blog to your Dashboard Cr e a t i ngali s t e ni ngda s hboa r d wi t hne t vi be s Ne t v i be s Table of Contents Introduction... 1 Setting up your Netvibes Dashboard... 2 Adding a Blog to your Dashboard... 2 Adding Twitter

More information

Partner Integration Portal (PIP) Installation Guide

Partner Integration Portal (PIP) Installation Guide Partner Integration Portal (PIP) Installation Guide Last Update: 12/3/13 Digital Gateway, Inc. All rights reserved Page 1 TABLE OF CONTENTS INSTALLING PARTNER INTEGRATION PORTAL (PIP)... 3 DOWNLOADING

More information

MHC CAR USER GUIDE

MHC CAR USER GUIDE One Connection for a Healthier Missouri MHC CAREMAIL USER GUIDE Email address: helpdesk@missourihealthconnection.org Phone: 1-866-350-4778 www.missourihealthconnection.org 1 P a g e Contents About Direct

More information

Office365 End User Training & Self-Service Migration Manual Simplified

Office365 End User Training & Self-Service Migration Manual Simplified Office365 End User Training & Self-Service Migration Manual Simplified Version 1.0 University Systems and Security 5/25/2016 1 P a g e Table of Contents 2 P a g e Table of Contents Introduction to Office365...

More information

Blue Form Builder extension for Magento 2

Blue Form Builder extension for Magento 2 Blue Form Builder extension for Magento 2 User Guide Version 1.0 Table of Contents I) Introduction......5 II) General Configurations....6 1) General Settings.....7 2) ReCaptcha... 8 III) Manage Forms......

More information

Pinterest MONDAY, APRIL 22, Basics PAGE 2. How-tos PAGE 3. Advanced PAGE 4

Pinterest MONDAY, APRIL 22, Basics PAGE 2. How-tos PAGE 3. Advanced PAGE 4 Pinterest MONDAY, APRIL 22, 2013 Basics PAGE 2 How-tos PAGE 3 Advanced PAGE 4 What is Pinterest? Pinterest is a virtual pin board used for sharing and organizing images. Use Pinterest to share your own

More information

Getting Started Guide for the new Commander Owners Group Conferencing Software, vbulletin

Getting Started Guide for the new Commander Owners Group Conferencing Software, vbulletin Getting Started Guide for the new Commander Owners Group Conferencing Software, vbulletin The Commander Owners Group uses a software application called vbulletin for conferencing on our website. While

More information

Outlook on the Web (formerly Outlook Web Access)

Outlook on the Web (formerly Outlook Web Access) Table of Contents Click on a table of contents section below to jump to a specific topic: Navigation, Notifications, and Settings... 2 Mail... 2 Messages...3 Pinning Messages...3 Add an Attachment, Picture,

More information

Getting Started with University Gmail

Getting Started with University Gmail Getting Started with University Gmail USER GUIDE V1.0 User Services IT Services University of Malta 2013 User Services IT Services University of Malta Msida MSD 2080 Malta May only be reproduced with permission

More information

Introduction to 9.0. Introduction to 9.0. Getting Started Guide. Powering collaborative online communities.

Introduction to 9.0. Introduction to 9.0. Getting Started Guide. Powering collaborative online communities. Introduction to 9.0 Introduction to 9.0 Getting Started Guide Powering collaborative online communities. TABLE OF CONTENTS About FirstClass...3 Connecting to your FirstClass server...3 FirstClass window

More information

Maid-chan Messenger Bot Documentation

Maid-chan Messenger Bot Documentation Maid-chan Messenger Bot Documentation Release 0.1 Iskandar Setiadi Sep 12, 2018 Contents 1 Maid-chan Overview 3 2 Contents 5 2.1 How to Run................................................ 5 2.2 Features

More information

CLOUD MAIL End User Guide. (Version 1.0)

CLOUD MAIL End User Guide. (Version 1.0) End User Guide () Table of Contents 1. How to Activate New Account... 3 2. How to Compose a New Email Message... 5 3. How to View and Edit the Email Draft... 6 4. How to View Sent Email Messages... 6 5.

More information

GroupWise to Outlook Feature Translation

GroupWise to Outlook Feature Translation GroupWise to Outlook Feature Translation This document highlights some of the differences between GroupWise and Outlook. The table below maps the features/functions of GroupWise to the equivalent features

More information

newvoice Desktop Quick Reference Guide

newvoice Desktop Quick Reference Guide newvoice Desktop Quick Reference Guide Version 1.0 June 30, 2017 Revision History Revision Date Description Initials 1.0 6/30/17 First published version. CS Purpose Use this quick reference guide to learn

More information

User Guide for Google

User Guide for Google User Guide Office@Hand for Google About Office@Hand for Google Office@Hand for Google provides seamless integration between your Google account and your Office@Hand services. It offers these features:

More information

Websense Secure Messaging User Help

Websense Secure Messaging User Help Websense Secure Messaging User Help Welcome to Websense Secure Messaging, a tool that provides a secure portal for the transmission and viewing of sensitive, personal data in email. Use the portal to view

More information

withenv Documentation

withenv Documentation withenv Documentation Release 0.7.0 Eric Larson Aug 02, 2017 Contents 1 withenv 3 2 Installation 5 3 Usage 7 3.1 YAML Format.............................................. 7 3.2 Command Substitutions.........................................

More information

SecureTransport Version May Web Client User Guide

SecureTransport Version May Web Client User Guide SecureTransport Version 5.3.6 9 May 2018 Web Client User Guide Copyright 2018 Axway All rights reserved. This documentation describes the following Axway software: Axway SecureTransport 5.3.6 No part of

More information

RSS on a Plane v1.70. User Manual and Development Guide.

RSS on a Plane v1.70. User Manual and Development Guide. v1.70 User Manual and Development Guide v1.70...1 User Manual and Development Guide...1 Introduction...4 Setup...5 Running RSSoaP...5 Windows...5 Linux...5 OS X...5 First Run...5 The Toolbar...5 Top-Level

More information

Lecture 2: Data in Linguistics, Git/GitHub, Jupyter Notebook. LING 1340/2340: Data Science for Linguists Na-Rae Han

Lecture 2: Data in Linguistics, Git/GitHub, Jupyter Notebook. LING 1340/2340: Data Science for Linguists Na-Rae Han Lecture 2: Data in Linguistics, Git/GitHub, Jupyter Notebook LING 1340/2340: Data Science for Linguists Na-Rae Han Objectives What do linguistic data look like? Tools: You should be taking NOTES! Git and

More information

Twitter and While Loops. April

Twitter and While Loops. April Twitter and While Loops April 18 2016 Today Using GeCoords.py to extract geo locations to write a KML file Getting Twitter posts using tweepy While loops More powerful functions to get Twitter posts Using

More information

Social Media Tip and Tricks

Social Media Tip and Tricks Social Media Tip and Tricks Hey 2016 CCP attendees! The Technology Council has put together social media tips and tricks to support your CCP process. Social media and other online tools can be great resources

More information

A guide to using Evernote with Windows 7

A guide to using Evernote with Windows 7 A guide to using Evernote with Windows 7 Evernote is available as a website or mobile app. You can sign up for free at www.evernote.com. Figure 1: Evernote web application Adding Notes To add a note, click

More information

Microsoft Teams. Quick Start Guide. New to Microsoft Teams? Use this guide to learn the basics.

Microsoft Teams. Quick Start Guide. New to Microsoft Teams? Use this guide to learn the basics. Microsoft Teams Quick Start Guide New to Microsoft Teams? Use this guide to learn the basics. Every team has channels Click one to see the files and conversations about that topic, department, or project.

More information

Organising your inbox

Organising your inbox Outlook 2010 Tips Table of Contents Organising your inbox... 1 Categories... 1 Applying a Category to an E-mail... 1 Customising Categories... 1 Quick Steps... 2 Default Quick Steps... 2 To configure or

More information

Windows user guide for version 3.3

Windows user guide for version 3.3 1 Windows user guide for version 3.3 2 Contents 1. Installation...4 1.1. How to install BABEL on your Windows desktop...4 2. Getting started...5 2.1. First run...5 2.2. Password setup...5 2.3. Key import...5

More information

AppDynamics Integration Guide

AppDynamics Integration Guide AppDynamics Integration Guide AppFirst (http://www.appfirst.com) delivers the only application aware operational intelligence platform that provides organizations with unparalleled visibility into their

More information

Collecting Tweets. User Timelines, User Update

Collecting Tweets. User Timelines, User Update Collecting Tweets User Timelines, User Update Outline HCDE user module UserTimeline.py Instantiation Parameters HCDE user module Update.py Using UserTimeline.py command line Part of the HCDE User Module

More information

DSS User Guide. End User Guide. - i -

DSS User Guide. End User Guide. - i - DSS User Guide End User Guide - i - DSS User Guide Table of Contents End User Guide... 1 Table of Contents... 2 Part 1: Getting Started... 1 How to Log in to the Web Portal... 1 How to Manage Account Settings...

More information

Manual Java Update Mac Developer Package

Manual Java Update Mac Developer Package Manual Java Update Mac 10.5 8 Developer Package Install updates manually. In OS X Yosemite, updates that haven't been installed produce a badge next to App Store in the Apple menu, a badge on the App Store.

More information

AN INTRODUCTION TO OUTLOOK WEB ACCESS (OWA)

AN INTRODUCTION TO OUTLOOK WEB ACCESS (OWA) INFORMATION TECHNOLOGY SERVICES AN INTRODUCTION TO OUTLOOK WEB ACCESS (OWA) The Prince William County School Division does not discriminate in employment or in its educational programs and activities against

More information

Kean University. System Guide. cougar.kean.edu. Your window to the world

Kean University.  System Guide. cougar.kean.edu.   Your window to the world Kean University E-Mail System Guide cougar.kean.edu www.kean.edu Your window to the world USING KEAN UNIVERSITY E-MAIL SYSTEM (COUGAR) This document is divided into three sections: Messenger Express Basics:

More information

SAHARA KIDS1 RESPONSIVE MAGENTO THEME

SAHARA KIDS1 RESPONSIVE MAGENTO THEME SAHARA KIDS1 RESPONSIVE MAGENTO THEME This document is organized as follows: Chater I. Install ma_sahara_kids1 template Chapter II. Features and elements of the template Chapter III. List of extensions

More information

Google Apps Basics Mail

Google Apps Basics Mail Google Apps Basics Mail TABLE OF CONTENTS I. FIRST CLASS VERSUS GOOGLE APPS MAIL 2 II. ANATOMY OF GMAIL INBOX 2 III. ANATOMY OF A COMPOSED MESSAGE 3 IV. ANATOMY OF A RECEIVED MESSAGE 3 V. FIRST THINGS

More information

Human-Computer Interaction Design

Human-Computer Interaction Design Human-Computer Interaction Design COGS120/CSE170 - Intro. HCI Instructor: Philip Guo Lab 1 - Version control and HTML (2018-10-03) by Michael Bernstein, Scott Klemmer, Philip Guo, and Sean Kross [Announce

More information

Product Guide Marketo Integration

Product Guide Marketo Integration Product Guide Marketo Integration Table of Contents Create an API Only User Role...3 Create an API Only User...6 Create a Custom Service for Use with REST API... 10 Create Custom Fields... 12 LeadGnome

More information

Operating System Interaction via bash

Operating System Interaction via bash Operating System Interaction via bash bash, or the Bourne-Again Shell, is a popular operating system shell that is used by many platforms bash uses the command line interaction style generally accepted

More information

KnowlegeTrack User Guide Standard User

KnowlegeTrack User Guide Standard User Standard User Standard User Page 1 Standard User Introduction: The Learning portal is designed to manage the subscription and enrollment in the courses, and to provide community features to all of the

More information

Salesforce DX Setup Guide

Salesforce DX Setup Guide Salesforce DX Setup Guide Version 42.0, Spring 18 @salesforcedocs Last updated: April 24, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com,

More information

Tizen TCT User Guide

Tizen TCT User Guide Tizen 2.3.1 TCT User Guide Table of Contents 1. Environment setup... 3 1.1. Symbols and abbreviations... 3 1.2. Hardware Requirements... 3 1.3. Software Requirements... 3 2. Getting TCT-source and TCT-manager...

More information

For Windows Microsoft Corporation. All rights reserved.

For Windows Microsoft Corporation. All rights reserved. For Windows 1 About Skype for Business... 4 Skype for Business Window... 5 Audio... 6 Set up your audio device... 6 Make a call... 6 Answer a call... 7 Use audio call controls... 7 Check voicemail... 8

More information

The Basics MAC. The Main Skype for Business Window. ! Name! Presence indicator. ! Conversations. ! Meetings. ! Calls. ! Contacts

The Basics MAC. The Main Skype for Business Window. ! Name! Presence indicator. ! Conversations. ! Meetings. ! Calls. ! Contacts MAC The Basics The Main Skype for Business Window When you open the Skype for Business desktop app, you will see the main screen where your personal information, contacts, conversation history, call history,

More information

Plumeria Documentation

Plumeria Documentation Plumeria Documentation Release 0.1 sk89q Aug 20, 2017 Contents 1 Considerations 3 2 Installation 5 2.1 Windows................................................. 5 2.2 Debian/Ubuntu..............................................

More information

Creating and Using an Account

Creating and Using an  Account Creating and Using an Email Account How to get on the Internet Click two times very quickly (double click) on any of the following icons: These are called browsers. They are what you use to search the

More information

GOOGLE APPS. If you have difficulty using this program, please contact IT Personnel by phone at

GOOGLE APPS. If you have difficulty using this program, please contact IT Personnel by phone at : GOOGLE APPS Application: Usage: Program Link: Contact: is an electronic collaboration tool. As needed by any staff member http://www.google.com or http://drive.google.com If you have difficulty using

More information

Intro to Linux. this will open up a new terminal window for you is super convenient on the computers in the lab

Intro to Linux. this will open up a new terminal window for you is super convenient on the computers in the lab Basic Terminal Intro to Linux ssh short for s ecure sh ell usage: ssh [host]@[computer].[otheripstuff] for lab computers: ssh [CSID]@[comp].cs.utexas.edu can get a list of active computers from the UTCS

More information