Curation by fnetx 5 days, 15 hours ago for query zulipchat
Original results
-
http://zulipchat.com — found via Mwmbl
Zulip — organized team chat
Organized team chat What makes Zulip different People often tell us that traditional team chat tools (Slack, Microsoft Teams, etc.) feel chaotic and stre…
-
http://zulipchat.com/ — found via Mwmbl
Zulip: Open-source team chat with topic-based threading
Zulip’s unique threading saves me well over an hour a day in working with our distributed team of engineers and PMs across 7+ time zones. We tried Slack, …
-
http://zulipchat.com/jobs/ — found via Mwmbl
Jobs | Zulip
Work with us Open positions We are not actively recruiting for any roles at this time. However, if you are an experienced engineer, and you believe that …
-
http://zulipchat.com/team/ — found via Mwmbl
The Zulip team
The Zulip team Over 1000 people have contributed to the Zulip codebase, from high school students to 30 year industry veterans, from people launching new…
-
http://zulipchat.com/values/ — found via Mwmbl
Zulip project values
These values are behind everything we do as we work to build the world’s best organized team chat. Building software that will always be there for our u…
-
https://zulipchat.com/zephyr — found via Mwmbl
Zephyr for MIT | Zulip
You're done! If you want to automatically transfer your existing Zephyr subscriptions Get your Zulip API key from the Zulip "Settings" panel and put it i…
-
http://zulipchat.com/history/ — found via Mwmbl
History of the Zulip project
History of the Zulip project Zulip at the PyCon Sprints in Portland, Oregon. Over seventy-five people sprinted during the four day event. Startup inspire…
-
http://zulipchat.com/security/ — found via Mwmbl
Security | Zulip
Zulip security Security basics All Zulip clients (web, mobile, desktop, terminal, and integrations) require TLS encryption and authentication over HTTPS …
-
https://zulipchat.com/privacy/ — found via Mwmbl
Privacy Policy | Zulip terms and policies
Archive Privacy Policy At Kandra Labs, Inc. (“Zulip”), we take your privacy seriously. Please read this Privacy Policy to learn how we treat your persona…
-
http://zulipchat.com/try-zulip/ — found via Mwmbl
Try Zulip now
Try Zulip now. You can check out the Zulip app by viewing the Zulip development community, where hundreds of participants collaborate to improve Zulip. M…
-
http://zulipchat.com/why-zulip/ — found via Mwmbl
Why Zulip? Efficient communication with organized team chat.
Communication consumes a huge fraction of time in an organization. A recent survey found that knowledge workers spend half of their work day on communicat…
-
http://zulipchat.com/for/events/ — found via Mwmbl
Zulip for events and conferences
Use topics to organize the discussion Make your event more inclusive by lowering the barriers for participants to ask questions, share ideas, and learn f…
-
http://zulipchat.com/api/get-user — found via Mwmbl
Get a user | Zulip API documentation
Usage examples #!/usr/bin/env python3importzulip# Pass the path to your zuliprc file here.client=zulip.Client(config_file="~/zuliprc")# Fetch details on …
-
http://zulipchat.com/api/api-keys — found via Mwmbl
API keys | Zulip API documentation
API keys An API key is how a bot identifies itself to Zulip. For the official clients, such as the Python bindings, we recommend downloading a zuliprc fi…
-
http://zulipchat.com/for/research/ — found via Mwmbl
Zulip for researchers and academics
Check out Zulip for communities to learn how Zulip empowers welcoming communities by making it easy to participate on your own time. The Lean community s…
-
http://zulipchat.com/api/mute-user — found via Mwmbl
Mute a user | Zulip API documentation
Mute a user Mute a user from the perspective of the requesting user. Messages sent by muted users will be automatically marked as read and hidden for the…
-
http://zulipchat.com/api/subscribe — found via Mwmbl
Subscribe to a channel | Zulip API documentation
Changes: Before Zulip 8.0 (feature level 208), if a user specified by the principals parameter was a deactivated user, or did not exist, then an HTTP sta…
-
http://zulipchat.com/api/get-users — found via Mwmbl
Get all users | Zulip API documentation
Usage examples #!/usr/bin/env python3importzulip# Pass the path to your zuliprc file here.client=zulip.Client(config_file="~/zuliprc")# Get all users in …
-
http://zulipchat.com/api/changelog — found via Mwmbl
API changelog | Zulip API documentation
API changelog The API feature levels system used in this changelog is designed to make it possible to write API clients, such as the Zulip mobile and ter…
-
http://zulipchat.com/for/business/ — found via Mwmbl
Zulip for business
Zulip’s unique topic-based threading combines the best of email and chat to finally make efficient communication possible. Akamai’s Zulip Enterprise depl…
-
http://zulipchat.com/help/spoilers — found via Mwmbl
Spoilers | Zulip help center
To create a spoiler section, use triple backticks and the word spoiler (```spoiler) followed by an optional spoiler heading, some text, and triple backti…
-
http://zulipchat.com/api/edit-draft — found via Mwmbl
Edit a draft | Zulip API documentation
The unique ID of the draft. It will only used whenever the drafts are fetched. This field should not be specified when the draft is being created or edit…
-
http://zulipchat.com/api/get-events — found via Mwmbl
Get events from an event queue | Zulip API documentation
Get events from an event queue Long-lived clients should use the event_queue_longpoll_timeout_seconds property returned by POST /register as the client-s…
-
http://zulipchat.com/for/education/ — found via Mwmbl
Zulip for education
Make Zulip the communication hub for your class. Zulip is the organized team chat app that is ideal for both live and asynchronous conversations. Post le…
-
http://zulipchat.com/api/get-drafts — found via Mwmbl
Get drafts | Zulip API documentation
Usage examples Parameters Response Return values The number of drafts the user currently has. Also the number of drafts returned under "drafts". drafts: …
-
http://zulipchat.com/help/analytics — found via Mwmbl
Usage statistics | Zulip help center
Support Usage statistics Zulip provides detailed analytics to help you see how you and your team are using Zulip. The Organization summary section of the…
-
http://zulipchat.com/api/get-message — found via Mwmbl
Fetch a single message | Zulip API documentation
Fetch a single message GET https://yourZulipDomain.zulipchat.com/api/v1/messages/{message_id} Given a message ID, return the message object. Additionally…
-
http://zulipchat.com/api/get-streams — found via Mwmbl
Get all channels | Zulip API documentation
Get all channels Usage examples #!/usr/bin/env python3importzulip# Pass the path to your zuliprc file here.client=zulip.Client(config_file="~/zuliprc")# …
-
http://zulipchat.com/api/upload-file — found via Mwmbl
Upload a file | Zulip API documentation
Upload a file Initially, only you will be able to access the link. To share the uploaded file, you'll need to send a message containing the resulting lin…
-
http://zulipchat.com/help/logging-in — found via Mwmbl
Logging in | Zulip help center
You can log in with any method allowed by your organization, regardless of how you signed up. For example, if you originally signed up using your Google …
-
http://zulipchat.com/api/get-invites — found via Mwmbl
Get all invitations | Zulip API documentation
Parameters Response Return values Note that email invitations and reusable invitation links are stored in different database tables on the server, so eac…
-
http://zulipchat.com/api/unsubscribe — found via Mwmbl
Unsubscribe from a channel | Zulip API documentation
Changes: Before Zulip 8.0 (feature level 208), if a user specified by the principals parameter was a deactivated user, or did not exist, then an HTTP sta…
-
http://zulipchat.com/api/get-presence — found via Mwmbl
Get presence of all users | Zulip API documentation
Usage examples #!/usr/bin/env python3importzulip# Pass the path to your zuliprc file here.client=zulip.Client(config_file="~/zuliprc")# Get presence info…
New results
-
http://zulipchat.com — found via Mwmbl
Zulip — organized team chat
Organized team chat What makes Zulip different People often tell us that traditional team chat tools (Slack, Microsoft Teams, etc.) feel chaotic and stre…
-
http://zulipchat.com/ — found via Mwmbl
Zulip: Open-source team chat with topic-based threading
Zulip’s unique threading saves me well over an hour a day in working with our distributed team of engineers and PMs across 7+ time zones. We tried Slack, …
-
http://zulipchat.com/jobs/ — found via Mwmbl
Jobs | Zulip
Work with us Open positions We are not actively recruiting for any roles at this time. However, if you are an experienced engineer, and you believe that …
-
http://zulipchat.com/team/ — found via Mwmbl
The Zulip team
The Zulip team Over 1000 people have contributed to the Zulip codebase, from high school students to 30 year industry veterans, from people launching new…
-
http://zulipchat.com/values/ — found via Mwmbl
Zulip project values
These values are behind everything we do as we work to build the world’s best organized team chat. Building software that will always be there for our u…
-
https://zulipchat.com/zephyr — found via Mwmbl
Zephyr for MIT | Zulip
You're done! If you want to automatically transfer your existing Zephyr subscriptions Get your Zulip API key from the Zulip "Settings" panel and put it i…
-
http://zulipchat.com/history/ — found via Mwmbl
History of the Zulip project
History of the Zulip project Zulip at the PyCon Sprints in Portland, Oregon. Over seventy-five people sprinted during the four day event. Startup inspire…
-
http://zulipchat.com/security/ — found via Mwmbl
Security | Zulip
Zulip security Security basics All Zulip clients (web, mobile, desktop, terminal, and integrations) require TLS encryption and authentication over HTTPS …
-
https://zulipchat.com/privacy/ — found via Mwmbl
Privacy Policy | Zulip terms and policies
Archive Privacy Policy At Kandra Labs, Inc. (“Zulip”), we take your privacy seriously. Please read this Privacy Policy to learn how we treat your persona…
-
http://zulipchat.com/try-zulip/ — found via Mwmbl
Try Zulip now
Try Zulip now. You can check out the Zulip app by viewing the Zulip development community, where hundreds of participants collaborate to improve Zulip. M…
-
http://zulipchat.com/why-zulip/ — found via Mwmbl
Why Zulip? Efficient communication with organized team chat.
Communication consumes a huge fraction of time in an organization. A recent survey found that knowledge workers spend half of their work day on communicat…
-
http://zulipchat.com/for/events/ — found via Mwmbl
Zulip for events and conferences
Use topics to organize the discussion Make your event more inclusive by lowering the barriers for participants to ask questions, share ideas, and learn f…
-
http://zulipchat.com/api/get-user — found via Mwmbl
Get a user | Zulip API documentation
Usage examples #!/usr/bin/env python3importzulip# Pass the path to your zuliprc file here.client=zulip.Client(config_file="~/zuliprc")# Fetch details on …
-
http://zulipchat.com/api/api-keys — found via Mwmbl
API keys | Zulip API documentation
API keys An API key is how a bot identifies itself to Zulip. For the official clients, such as the Python bindings, we recommend downloading a zuliprc fi…
-
http://zulipchat.com/for/research/ — found via Mwmbl
Zulip for researchers and academics
Check out Zulip for communities to learn how Zulip empowers welcoming communities by making it easy to participate on your own time. The Lean community s…
-
http://zulipchat.com/api/mute-user — found via Mwmbl
Mute a user | Zulip API documentation
Mute a user Mute a user from the perspective of the requesting user. Messages sent by muted users will be automatically marked as read and hidden for the…
-
http://zulipchat.com/api/subscribe — found via Mwmbl
Subscribe to a channel | Zulip API documentation
Changes: Before Zulip 8.0 (feature level 208), if a user specified by the principals parameter was a deactivated user, or did not exist, then an HTTP sta…
-
http://zulipchat.com/api/get-users — found via Mwmbl
Get all users | Zulip API documentation
Usage examples #!/usr/bin/env python3importzulip# Pass the path to your zuliprc file here.client=zulip.Client(config_file="~/zuliprc")# Get all users in …
-
http://zulipchat.com/api/changelog — found via Mwmbl
API changelog | Zulip API documentation
API changelog The API feature levels system used in this changelog is designed to make it possible to write API clients, such as the Zulip mobile and ter…
-
http://zulipchat.com/for/business/ — found via Mwmbl
Zulip for business
Zulip’s unique topic-based threading combines the best of email and chat to finally make efficient communication possible. Akamai’s Zulip Enterprise depl…
-
http://zulipchat.com/help/spoilers — found via Mwmbl
Spoilers | Zulip help center
To create a spoiler section, use triple backticks and the word spoiler (```spoiler) followed by an optional spoiler heading, some text, and triple backti…
-
http://zulipchat.com/api/edit-draft — found via Mwmbl
Edit a draft | Zulip API documentation
The unique ID of the draft. It will only used whenever the drafts are fetched. This field should not be specified when the draft is being created or edit…
-
http://zulipchat.com/api/get-events — found via Mwmbl
Get events from an event queue | Zulip API documentation
Get events from an event queue Long-lived clients should use the event_queue_longpoll_timeout_seconds property returned by POST /register as the client-s…
-
http://zulipchat.com/for/education/ — found via Mwmbl
Zulip for education
Make Zulip the communication hub for your class. Zulip is the organized team chat app that is ideal for both live and asynchronous conversations. Post le…
-
http://zulipchat.com/api/get-drafts — found via Mwmbl
Get drafts | Zulip API documentation
Usage examples Parameters Response Return values The number of drafts the user currently has. Also the number of drafts returned under "drafts". drafts: …
-
http://zulipchat.com/help/analytics — found via Mwmbl
Usage statistics | Zulip help center
Support Usage statistics Zulip provides detailed analytics to help you see how you and your team are using Zulip. The Organization summary section of the…
-
http://zulipchat.com/api/get-message — found via Mwmbl
Fetch a single message | Zulip API documentation
Fetch a single message GET https://yourZulipDomain.zulipchat.com/api/v1/messages/{message_id} Given a message ID, return the message object. Additionally…
-
http://zulipchat.com/api/get-streams — found via Mwmbl
Get all channels | Zulip API documentation
Get all channels Usage examples #!/usr/bin/env python3importzulip# Pass the path to your zuliprc file here.client=zulip.Client(config_file="~/zuliprc")# …
-
http://zulipchat.com/api/upload-file — found via Mwmbl
Upload a file | Zulip API documentation
Upload a file Initially, only you will be able to access the link. To share the uploaded file, you'll need to send a message containing the resulting lin…
-
http://zulipchat.com/help/logging-in — found via Mwmbl
Logging in | Zulip help center
You can log in with any method allowed by your organization, regardless of how you signed up. For example, if you originally signed up using your Google …
-
http://zulipchat.com/api/get-invites — found via Mwmbl
Get all invitations | Zulip API documentation
Parameters Response Return values Note that email invitations and reusable invitation links are stored in different database tables on the server, so eac…
-
http://zulipchat.com/api/unsubscribe — found via Mwmbl
Unsubscribe from a channel | Zulip API documentation
Changes: Before Zulip 8.0 (feature level 208), if a user specified by the principals parameter was a deactivated user, or did not exist, then an HTTP sta…
-
http://zulipchat.com/api/get-presence — found via Mwmbl
Get presence of all users | Zulip API documentation
Usage examples #!/usr/bin/env python3importzulip# Pass the path to your zuliprc file here.client=zulip.Client(config_file="~/zuliprc")# Get presence info…