Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

134 total results found

Navigating

Folderz Orientation Toolbar

By default, the Folderz Web interface opens to your Files page. You can add, remove, and share files, and make changes based on the access privileges set by you. The Folderz user interface contains the following fields and functions: Apps Selection Menu ...

Manage connected browsers and devices

Folderz Orientation Personal Profile

The personal settings page allows you to have an overview on the connected browsers and devices. Managing connected browsers In the list of connected browsers you see which browsers connected to your account recently: You can use the trash icon to discon...

Setting your preferences

Folderz Orientation Personal Profile

As a member of Folderz, you can manage your personal settings. To access your personal settings: Click on your profile picture in the top, right corner of Folderz. The Personal Settings Menu opens. Personal Settings Menu Choose Settings from the ...

Deck

Folderz Orientation Toolbar

Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Folderz. 📥 Add your tasks to cards and put them in order 📄 Write down additional notes in markdown 🔖 Assign labels for even better organi...

Bookmarks

Folderz Orientation Toolbar

This app provides you with a web interface for collecting and organizing bookmarks to the sites on the web that are precious to you. You can browse and filter your bookmarks via the tags you give them and by using the built-in search feature. Furthermore, i...

Contacts

Folderz Orientation Toolbar

Easily sync contacts from various devices with Folderz and edit them online. Why is this so awesome? 🚀 Integration with other Folderz apps! Currently Mail and Calendar – more to come. 🎉 Never forget a birthday! You can sync birthdays and other recurring...

Talk

Folderz Orientation Toolbar

Video & audio conferencing app Features 💬 Chat integration! Talk comes with some simple text chat. More features are planned for future versions. 👥 Private, group, public and password protected calls! Just invite somebody, a whole group or send a pu...

Calendar

Folderz Orientation Toolbar

Easily sync events from various devices with Folderz and edit them online. Features 🚀 Integration with other Folderz apps! Currently Contacts – more to come. 🌐 WebCal Support! Want to see your favorite team's matchdays in your calendar? No problem! 🙋 A...

Browser Extensions

Feedz Orientation Adding RSS/ATOM Feeds

You can add an extension/plugin to your browser to make it easy to add rss/atom feeds to your Feedz account. Firefox Awesome RSS for Firefox puts an RSS/Atom subscribe button back in URL bar. This will give you RSS and ATOM feed links that you can then add t...

Upload Formats

Videoz Orientation

There are multiple supported formats for uploading and converting to a web friendly format: mp4, avi, mov, mkv, flv, mp3, wav, m4v, webm, wmv, mpg, and mpeg

How to use the Scratchpad

Diagramz Orientation

The scratchpad is a temporary working space for keeping commonly used shapes for easy access. It can be found at the top left of editor, above the libraries. If it is not shown, you can display it using the menu under view -> scratchpad. You can also hide i...

How to add images

Diagramz Orientation

In modern browsers, you can simply drag and drop images from the local filesystem or from a browser window to your diagram as follows: Image Quality and Size Large images are resampled. Use Ctrl+Drag to show a dialog for the image size if the dialog does n...

Using oEmbed

Classez Orientation Embedding Third Party Content

oEmbed is a format for allowing an embedded representation of a URL on third party sites. The simple API allows a website to display embedded content (such as photos or videos) when a user posts a link to that resource, without having to parse the resource dir...

About Version Control

Git like a Pro Getting Started

What is “version control”, and why should you care? Version control is a system that records changes to a file or set of files over time so that you can recall specific versions later. For the examples in this book, you will use software source code as the fil...

Control Systems

Git like a Pro Getting Started

Local Version Control Systems Many people’s version-control method of choice is to copy files into another directory (perhaps a time-stamped directory, if they’re clever). This approach is very common because it is so simple, but it is also incredibly error p...

A Short History of Git

Git like a Pro

As with many great things in life, Git began with a bit of creative destruction and fiery controversy. The Linux kernel is an open source software project of fairly large scope. For most of the lifetime of the Linux kernel maintenance (1991–2002), changes to ...

What is Git?

Git like a Pro

So, what is Git in a nutshell? This is an important section to absorb, because if you understand what Git is and the fundamentals of how it works, then using Git effectively will probably be much easier for you. As you learn Git, try to clear your mind of the ...

Snapshots, Not Differences

Git like a Pro Getting Started

The major difference between Git and any other VCS (Subversion and friends included) is the way Git thinks about its data. Conceptually, most other systems store information as a list of file-based changes. These other systems (CVS, Subversion, Perforce, Bazaa...

Nearly Every Operation Is Local

Git like a Pro Getting Started

Most operations in Git need only local files and resources to operate — generally no information is needed from another computer on your network. If you’re used to a CVCS where most operations have that network latency overhead, this aspect of Git will make yo...

Git Has Integrity

Git like a Pro Getting Started

Everything in Git is checksummed before it is stored and is then referred to by that checksum. This means it’s impossible to change the contents of any file or directory without Git knowing about it. This functionality is built into Git at the lowest levels an...