Introducing CGWeb Nikola Dimitroff Creating Genres creatinggenres.com.

Slides:



Advertisements
Similar presentations
Caltech Proprietary Videoconferencing Security in VRVS 3.0 and Future Videoconferencing Security in VRVS 3.0 and Future Kun Wei California Institute of.
Advertisements

Shared Space Admin Demo March Admin demo introduces - Adding users Moderating users Moderating resources Adding communities and sub groups.
Community Awareness Rosalie O’Neale Content Assessment Section 12 September 2006.
EVERY CONNECTION has a starting point. NetLibrary eAudiobooks An Overview for Washington State Libraries Nathan Downing Field Implementation Specialist.
July 2010 D2.1 Upgrading strategy Javier Soto Catalog Release 3. Communities.
Author Instructions How to upload a full session proposal with abstracts – two step process.
Author Instructions How to upload Single Abstract to the paper management system Single Abstract is a document that describes one presentation that someone.
Nikola Dimitroff Creating Genres creatinggenres.com.
Hobbies: Social networking YOU TUBE FACE BOOK MYSPACE.
It’s always better live. MSDN Events Security Best Practices Part 2 of 2 Reducing Vulnerabilities using Visual Studio 2008.
OnME Platform Tutorial Ken Hui System Analyst OnME Research Laboratory.
Discover, Master, InfluenceSlide 1 SQL Server Compact Edition and the Entity Framework Rob Sanders Readify.
©2011 Quest Software, Inc. All rights reserved. Steve Walch, Senior Product Manager Blog: November, 2011 Partner Training Webcast.
Introducing Microsoft Lync 2010 Connect and Collaborate.
2008 Adobe Systems Incorporated. All Rights Reserved. Acrobat Connect Pro Meeting Introductory Training [name] [title]
Records and Information Management IT - Enterprise Content Management SPIDR II Global Features Reference Guide April 2013.
Attendee overview 1 Joining a Redback Webinar. Before the Webinar Getting organised It’s always a good idea to ensure you are prepared well in advance.
Working with Workgroups and Domains
DSD Course – Project Status Presentation School of Innovation, Design and Engineering Malardalen University Dec 4 th,
HOW-TO guide This tutorial has sound.
Your Computer Media Player VancoVision Server Content  Create content files and a schedule.  Send files to server  Media Player (remote location) will.
Chat Rooms BY MARK & DANIEL&ATHEER. Connection  Lets you set up a username and password to connect to chat rooms.
Delivering Knowledge for Health Annette Thain. Delivering Knowledge for Health Enable communities and projects set up and manage their own websites or.
How Do I Do That? Creating Wikis Presented By: Stefanie Rosenberg-Cortes Joshua Wager Joshua Brown
Standards-based trackable E-learning in a Disconnected Environment NetGenica.
CIMug Web Site Status Randy Rhodes June 12, 2008.
Okalo Daniel Ikhena Dr. V. Z. Këpuska December 7, 2007.
Texas Forty-Two By: Nate Normandin CS 470. What is Texas Forty-Two? A Domino Game A way for people to learn the game A way for people to play others A.
Team Managers Package Indoor
IdentiTrip 2006 Key Features & Benefits All data imported from MIS system Quick MIS upload annually for new intake and class changes No manual input of.
Module 8 : Configuration II Jong S. Bok
Dean Anderson Polk County, Oregon GIS in Action 2014 Modifying Open Source Software (A Case Study)
IdentiTrip Key Features & Benefits All data imported from MIS system Quick MIS upload annually for new intake and class changes No manual input of pupil.
ASP.NET SignalR SoftUni Team Technical Trainers Software University
By: Melissa VanDyke Current and Future State Process Flow ​ Visualization and Template SALESFORCE ADMINISTRATOR FORCE.COM.
Introducing Microsoft Lync 2010 Connect and Collaborate.
Panasonic UC Pro - UC Pro Server setup with Active Directory -
The Claromentis Digital Workplace An Introduction
Bringing your school online with Last Updated 11/15/2010.
Avaya - Proprietary. Use pursuant to your signed agreement or Avaya policy. 1 IP Office Support Services Customer Benefits.
#SummitNow Alfresco Rumors: What is your content saying? 7 Nov 2013 / 15 Nov 2013 Jared Ottley / Alfresco Software.
Multi player client sever Snake Game Technology : JAVA (swing for user interface and Socket for passing coordinates of snakes, food item and score)
Microsoft Customer 2 Partner Connector Quick Reference Guide
SharePoint University of the Highlands and Islands SharePoint for Records Management.
Instructions for CATS Independence Tool
The Alfresco iOS SDK Gi Lee (Zia Consulting) Peter Schmidt (Alfresco)
Interactive Interactive Powerful Powerful tools to assess understanding Free Free and Easy to Use.
CWA 3105 Presents At&t Connect for Windows pc This will be a quick set up guide for our new virtual meeting program We are the ELITE to have this trial.
Transportation Agenda 19. Transportation Your Role: Designer Designers organize SharePoint content and determine how to display that content Typical tasks.
Knowledge Hub Walkthrough August
Knowledge Hub Walkthrough August
Blood Bank Phạm Tiến Lập – SE02683 Nguyễn Sơn Hải – SE02879
SharePoint 101 – An Overview of SharePoint 2010, 2013 and Office 365
Staying Organized Lesson style & delivery is at the teacher discretion, yet we ask that the content remain unchanged. Feel free to add in additional slides.
Implementing a Secure ISA Server
Shared Space Admin Demo
Quickr-J Integration with the IBM portfolio (Notes, Sametime, Connections, ECM & WebSphere Portal) Quickr SVT - Mark Curran.
Topic 5: Online Communities Press F5 to view!
Module 36 (Expanding Your Control of Windows Victims)
grabon-deliveroo-clone-script /
Rapid Connect® Getting Started
Implementation Process and What the Consultant Does
Getting Started.
11/27/2018 6:59 PM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
Getting Started.
SharePoint Online Authentication Patterns
Contacting CT Support with MS Lync Chat room
Administrator’s Manual
08 | Configuring SharePoint Online
Presentation transcript:

Introducing CGWeb Nikola Dimitroff Creating Genres creatinggenres.com

Table of Contents 1. CGWeb to the rescue  Installing and configuring CGWeb  Few helpful tips 2. Creating Tic-Tac-Toe with CGWeb

CGWeb

 Provides abstractions to work with users, chat and game rooms for easing creating games with SignalR  Is going to be rapidly developed and since we are a small team full of noobishness, we are accepting every proposal to the library

CGWeb (2)  Installing and configuring CGWeb– a How-To  Go to creatinggenres.com and download the library package.creatinggenres.com  Add a reference in your project to the library  Add the following to your web.config in the system.webServer tag:

CGWeb (3)  Installing and configuring CGWeb– a How-To  Remember to enable RAMMFAR.  Aaand your done.

CGWeb (4)  Use cookies/query string/forms to authenticate your user (note: the query string/forms data must have a “user” or “username” key).  If you are rolling a different authentication approach – implement CGWeb.Services.IAuthenticator and register your authenticator trough the CGWeb.Services.ServiceManager

CGWeb (5)  If you demand more than simply guest users, inherit from CGWeb.User and implement your own type.  To create a game, you must do the following:  Inherit your game from CGWeb.Games.Game  Inherit the hub for the game from CGWeb.Hubs.GameHub  Register your game trough the ServiceManager

CGWeb (6)  Use the GameHub.GetConnectedClients method to communicate with the players in the current game.  Note: The client will receive notifications in the games hub, not in your hub

CGWeb – live demo

CGWeb (7)  That`s all for now folks, remember to keep tracking creatinggenres.com for updates. creatinggenres.com  You`ll also find documentation (or at least something we pretend to be comprehensive and understandable)  Come join us at jabbr.net. Type /connect CGWeb to join our secret room and ask us whatever you feel like asking.jabbr.net  Contact us at / at any time for additional information, advice or

Questions?