Skip to main content

Home/ Web2.0/ Group items tagged Documentation

Rss Feed Group items tagged

joshbaniga

Have you been searching for a passport(paperworks194@mail.com ) , SSN card, driver's li... - 0 views

Have you been searching for a passport(paperworks194@mail.com ) , SSN card, driver's license, I.D, Birth certificate, diploma or any other document?apply4citizenship.net Or maybe to buy A NEW passp...

started by joshbaniga on 17 Mar 19 no follow-up yet
Gary Edwards

Welcome to the next tech revolution: Liquid computing | InfoWorld - 7 views

  • In a nutshell, what Handoff -- and liquid computing in general -- portends is a world where both data and activities move around as needed. The device isn't the center of the universe, as it has been since the first computer.
  • The journey to liquid computing
  • everal years ago, Google showed us a different way: the cloud as the new center. With Google Docs (now called Drive), you created your documents on its browser-accessible servers and worked on them there, usually through a browser but also via native apps on iOS and Android. You didn't have to sync your data, because it was accessible from pretty much any device. Unfortunately, Google's Web-based apps don't work that well versus what you can do on a smartphone, tablet, or PC native app, so most of us still start with the device and use the cloud as mostly a convenient file share.
  • ...2 more annotations...
  • Apple's iCloud Documents took the same idea but tied it to specific apps, moving us away from the notion of a common file pool to a common activity pool: text documents or spreadsheets or photos.
  • Apple's initial iCloud Documents approach was too tied to its apps, though, so it hasn't really expanded beyond Apple's own applications. (Apple is moving to correct that mistake in iOS 8 and OS X Yosemite.)
  •  
    "I was typing an email on my iPad, and I got distracted. Some time later, I set the iPad down on my desk, and an icon on my Mac appeared. I clicked it, and in seconds the Mail app was running with that partially entered email in front of me. That's the Handoff feature in action, part of the iOS 8 and OS X Yosemite updates that will ship this fall. It's a sign of a change in computing that Google and Microsoft are also pursuing, not just Apple. Liquid Computing Welcome to the next tech revolution: Liquid computing Liquid computing: The next wave of the mobile experience Apple Watch: The Internet of things' new frontier iOS 8 and OS X Yosemite are both in beta, so I can't really talk about the details of Handoff yet. But I can say it works just as Apple showed off at its recent WWDC conference's public keynote. Handoff is the first big step into a future where the notion of a device will go through a radical transformation. [ Mobile and PC management: The tough but unstoppable union. | Subscribe to InfoWorld's Consumerization of IT newsletter today. ] At first blush, what Apple is doing is blurring the lines between mobile and desktop devices. That's true, but it's only part of the actual transformation under way. There's no real name for this transformation yet, so I'm calling it liquid computing until someone else comes up with a better name. In a nutshell, what Handoff -- and liquid computing in general -- portends is a world where both data and activities move around as needed. The device isn't the center of the universe, as it has been since the first computer. Think back to the early PC era, when people first started getting PCs at home, not just at work. Remember the effort we all spent in making sure we copied our files to a disk for use at home? We had to bring our data with us or else use a network connection to a file share. That model has persisted to this day, which is why the biggest loss of corporate data remains the lost or stolen thumb drive or
Graham Perrin

Draft Protocol Spec (Google Wave Federation Protocol) - 1 views

  • Draft
  • Google Wave Federation Protocol Over XMPP
  • Anthony Baxter, Jochen Bekmann, Daniel Berlin, Soren Lassen, Sam Thorogood
  • ...22 more annotations...
  • omits details that we are unable to capture at this point
  • Each document has an id
  • Each wavelet is a container for any number of documents.
  • Each item has a key-value map of annotations.
  • Annotations are key-value pairs that span arbitrary ranges of the XML document
  • to represent text formatting, spelling suggestions and hyper-links
    • Graham Perrin
       
      … and annotations (page comments, highlights, stuck and floating notes) in the Diigo sense?
  • independent of the XML document structure
  • A document is a sequence of items
  • is composed of an XML document and a set of annotations.
  • Annotation keys and values are strings
  • each item conceptually has its own annotation map
  • more efficient to have just one annotation map for each consecutive run of items with the same annotations
  • serialization of the document without annotations into a string is not formally an XML document
  • current annotations update, which is a map of annotation keys to pairs (old-value, new-value), where old-value and new-value are either null or an annotation value
  • After the final component, the annotations update must be empty
  • Document operation components can be divided into four classes
  • do not directly affect the document or the cursor
  • annotation boundaries (annotationBoundary) change the current annotations update
  • interaction with annotations
  • Appendix A.  Protocol Schema
  • message AnnotationBoundary { // This field is set to true if and only if both ends and changes are // empty. It is needed to ensure that the optional annotationBoundary // component field is not dropped during serialization. optional bool empty = 1; // MUST NOT have the same string twice. repeated string end = 2; // MUST NOT have two updates with the same key. MUST NOT // contain any of the strings listed in the 'end' field. repeated KeyValueUpdate change = 3; }
  • optional AnnotationBoundary annotationBoundary = 1; optional string characters = 2; optional ElementStart elementStart = 3; optional bool elementEnd = 4; optional int32 retainItemCount = 5; optional string deleteCharacters = 6; optional ElementStart deleteElementStart = 7; optional bool deleteElementEnd = 8; optional ReplaceAttributes replaceAttributes = 9; optional UpdateAttributes updateAttributes = 10;
  •  
    Note: this draft of the protocol/specification mentions annotation.
  •  
    Whether 'annotation' in the Google Wave Protocol sense is comparable to annotation in the Diigo sense, I don't know.
Gary Edwards

Siding with HTML over XHTML, My Decision to Switch - Monday By Noon - 1 views

  • Publishing content on the Web is in no way limited to professional developers or designers, much of the reason the net is so active is because anyone can make a website. Sure, we (as knowledgeable professionals or hobbyists) all hope to make the Web a better place by doing our part in publishing documents with semantically rich, valid markup, but the reality is that those documents are rare. It’s important to keep in mind the true nature of the Internet; an open platform for information sharing.
  • XHTML2 has some very good ideas that I hope can become part of the web. However, it’s unrealistic to think that all web authors will switch to an XML-based syntax which demands that browsers stop processing the document on the first error. XML’s draconian policy was an attempt to clean up the web. This was done around 1996 when lots of invalid content entered the web. CSS took a different approach: instead of demanding that content isn’t processed, we defined rules for how to handle the undefined. It’s called “forward-compatible parsing” and means we can add new constructs without breaking the old. So, I don’t think XHTML is a realistic option for the masses. HTML 5 is it.
    • Gary Edwards
       
      Great quote from CSS expert Hakon Wium Lie.
  • @marbux: Of course i disagree with your interop assessment, but I wondered how it is that you’re missing the point. I think you confuse web applications with legacy desktop – client/server application model. And that confusion leads to the mistake of trying to transfer the desktop document model to one that could adequately service advancing web applications.
  •  
    Response to marbux comments.
  •  
    # See also my comment on the same web page that explains why HTML 5 is NOT it for document exchange between web editing applications. . - comment by marbux # Response to marbux supporting the WebKit layout/document model. Marbux argues that HTML5 is not interoperable, and CSS2 near useless. HTML5 fails regarding the the interop web appplications need. I respond by arguing that the only way to look at web applications is to consider that the browser layout engine is the web application layout engine! Web applications are actually written to the browser layout/document model, OR, to take advantage of browser plug-in capabilities. The interoperability marbux seeks is tied directly to the browser layout engine. In this context, the web format is simply a reflection of that layout engine. If there's an interop problem, it comes from browser madness differentials. The good news is that there are all kinds of efforts to close the browser gap: including WHATWG - HTML5, CSS3, W3C DOM, JavaScript Libraries, Google GWT (Java to JavaScript), Yahoo GUI, and the my favorite; WebKit. The bad news is that the clock is ticking. Microsoft has pulled the trigger and the great migration of MSOffice client/server systems to the MS WebSTack-Mesh architecture has begun. Key to this transition are the WPF-.NET proprietary formats, protocols and interfaces such as XAML, Silverlight, LINQ, and Smart Tags. New business processes are being written, and old legacy desktop bound processes are being transitioned to this emerging platform. The fight for the Open Web is on, with Microsoft threatening to transtion their entire business desktop monopoly to a Web platform they own. The Web is going to be broken. There is no way of stopping Microsoft at this point. What we can do though is focus on Open Web solutions that are worthy alternatives to Microsoft's proprietary push. For me, this means the WebKit layout/document model supported by Apple, Adobe and Google. ~ge~
  •  
    A CMS expert argues for HTML over XHTML, explaining his reasons for switching. Excellent read! He nails the basics. for similar reasons, we moved from ODF to ePUB and then to CDf and finally to the advanced WebKit document model, where wikiWORD will make it's stand.
Kangdon Lee

Substance - Open Documents for the Web - 0 views

  •  
    Substance - Open Documents for the Web collaboration publishing substance web authoring documentation document web2.0
webupo.com

MergePDF » Merge PDF Documents | Webupo.com - 0 views

  •  
    MergePDF is a tool for combining a number of documents easily and for free. This service enables you to merge PDF documents into a single one, free of charge. All you need to do is select the PDF documents that you want to merge together on your computer and click a button, as instructed step-by-step below. If you like our free service, please consider a...
webmoneyai

Bit AI: Powerful Document Collaboration Platform - 2024 - 0 views

  •  
    Discover Bit AI, the AI-powered document collaboration platform, for real-time teamwork, wikis, document tracking, and enhanced document management.
asman5boom

Navigating the Process of Obtaining an Egypt Visa from Cyprus: Understanding Egypt Visa... - 2 views

Travel between Cyprus and Egypt has been a popular route for tourists, business professionals, and cultural enthusiasts seeking to explore the rich historical and contemporary offerings of Egypt. H...

travel

started by asman5boom on 28 May 25 no follow-up yet
asman5boom liked it
Graham Perrin

Google Wave Data Model and Client-Server Protocol ‎(Google Wave Federation Pr... - 1 views

  • Stand-off annotations are pointers into the XML document
  • Documents form a tree
  • independent of the XML document structure
  • ...5 more annotations...
  • represent the rich text messages in a wavelet (casually known as blips)
  • are typically invisible
  • data documents
  • text documents
  • for example, tags
Kangdon Lee

A.nnotate.com: Upload, Annotate, Share. Online document review and collaboration - PDF,... - 5 views

  •  
    A.nnotate.com: Upload, Annotate, Share. Online document review and collaboration - PDF, Word and HTML collaboration, annotation, web2.0, Tools, documents, sharing, notes, pdf,
Sachin Yadav

Why do you need product management documents for the successful launch of your digital ... - 1 views

  •  
    The process of the development of a plan for converting a product idea into an actual product is called design planning in which the product manager plays a crucial role. As the product's vision evolves, gaining clarity on what the product manager's aim is, remains a guiding light for the entire team. So, in a nutshell, product management documentation is like being the chief note-taker throughout the product journey.
courier12

Uniex International Courier Services India - 0 views

  •  
    Uniex International Courier Services in India extends its courier and shipping services to a wide range of international destinations, ensuring a seamless and efficient delivery process for its customers. They offer courier services to countries like the USA, UK, Europe, Canada, Australia, Dubai, Sri Lanka, and Singapore. This expansive reach allows customers to send parcels, documents, and even specialized items like medicines across the globe with confidence in the service's reliability and speed. Uniex prides itself on providing competitive international courier rates, fast and reliable delivery, and comprehensive documentation support to streamline the shipping process. Whether for personal or business needs, Uniex tailors its courier solutions to meet specific requirements, ensuring that packages reach their destinations safely and on time. Their service includes a clear breakdown of courier charges based on the package's weight and the service type selected, along with assistance in navigating the documentation required for international shipping, making them a preferred choice for shipping needs to these regions​
usakycshop525

What is a Verified Binance account? - 0 views

  •  
    Introduction to Binance In the fast-paced world of cryptocurrency trading, having a secure and efficient platform is essential. Binance stands out as one of the largest and most popular exchanges globally. Whether you're a seasoned trader or just starting, understanding how to navigate Binance can significantly impact your trading experience. But there's more than just creating an account. To unlock all the features that Binance has to offer, you'll need a verified account. This process ensures safety and compliance while providing you with access to higher withdrawal limits and additional functionalities. Curious about what it means to have a verified Binance account? Let's dive into everything you need to know! The importance of a Verified Binance account A Verified Binance account is essential for anyone looking to navigate the cryptocurrency landscape. It unlocks a world of possibilities and enhances your trading experience significantly. Verification adds an extra layer of security, ensuring that only you can access your funds. This protection is crucial in an environment where scams are rampant. Moreover, having a verified account allows for higher withdrawal limits. If you're serious about trading or investing significant amounts, this feature becomes indispensable. Additionally, it helps comply with regulations aimed at preventing fraud and money laundering. By verifying your identity, you contribute to creating a safer marketplace for everyone involved. Without verification, users may face restrictions on certain features and services offered by Binance. This could hinder growth opportunities within the dynamic crypto market. How to create a Binance account Creating a Binance account is straightforward and user-friendly. Start by visiting the official Binance website. Look for the "Register" button, usually located at the top right corner of the page. Click it, and you'll be prompted to enter your email address a
Graham Perrin

Carrot2 - open source search results clustering engine - 0 views

  • automatically organize small collections of documents
  • thematic categories
  • ready-to-use components for fetching search results
  • ...3 more annotations...
  • easily integrates
  • YahooAPI, GoogleAPI, MSN Live API, eTools Meta Search, Lucene, SOLR, Google Desktop and more
  • e.g. search results
  •  
    An open source framework for building search clustering engines. It can automatically organize small collections of documents, e.g. search results, into thematic categories. Carrot2 can add clustering of search results to an existing search engine. Its algorithms should successfully cluster up to about a thousand text documents, a few paragraphs each.
Graham Perrin

ODF versus OOXML: Don't forget about HTML! - O'Reilly XML Blog - 0 views

  • Don't forget about HTML
  • February 25, 2007
  • HTML’s potential and actual suitability for much document interchange
  • ...27 more annotations...
  • HTML is the format to consider first
  • validated, standards compliant XHTML in particular
  • HTML at one end (simple WP documents)
  • PDF at the other end (full page fidility but read-only)
  • W3C versus ISO
  • HTML, ODF, OOXML, PDF
  • Lie adopts an extreme view towards overlap of standards:
  • overlap at all brings nothing but misery and bloat.
  • The next dodgy detail is to make blanket comparisons between HTML and ODF/OOXML.
  • ODF and OOXML deal with many issues that HTML/CSS simply does not.
  • the W3C argument might be to say that every part should have a URL
  • a strange theory that MS wants ODF and OOXML to both fail
  • being pro-ODF does not mean you have have to be anti-OOXML
  • HTML is the format of choice for interchange of simple documents
  • ODF will evolve to be the format of choice for more complicated documents
  • OOXML is the format of choice for full-fidelity dumps from MS Office
  • PDF is the format of choice for non-editable page-faithful documents
  • all have overlap
  • we need to to encourage a rich library of standard technologies,
  • widely deployed,
  • free,
  • unencumbered,
  • explicit,
  • awareness of when each is appropriate
  • an adequate set of profiles and profile validators
  • using ISO Schematron
  • Plurality
marceljager

Buy Fake Documents Online : Fake Passports for Sale - 0 views

  •  
    buyfakedocs.me is a place where you can Buy fake documents online. you can Buy Real Passport Online, Buy Fake Passport Online, Buy Driver's License Online, Buy Fake ID Cards Online and Fake Passports for Sale.
marceljager

Buy Fake Documents OR Certificates Online | buyfakedocs.me - 0 views

  •  
    We are the world number one solution when it comes to Buy Fake Documents Online OR Buy Fake Certificates Online. We provides Real and Fake Passports For Sale, Buy Driver's License Online, Buy Fake ID Cards Online, Fake Degree, Fake Diplomas.
marceljager

Buy Fake Documents OR Certificates Online | buyfakedocs.me - 0 views

  •  
    We are the world number one solution when it comes to Buy Fake Documents Online OR Buy Fake Certificates Online. We provides Real and Fake Passports For Sale, Buy Driver's License Online, Buy Fake ID Cards Online, Fake Degree, Fake Diplomas.
abercrobamme abercrobamme

Polanski. Chaussures Burberry femme - 0 views

survetement boss pas cherIl a donc persuadé Polanski à écrire une lettre pour aller dans les journaux et à la radio et la télévision , qui a pointé du doigt les ambitions politiques de Steve Cooley...

Chaussures Burberry femme

started by abercrobamme abercrobamme on 25 Jan 14 no follow-up yet
luxuriance1 luxuriance1

survetement gstar femme pas cher . Un - 0 views

Certes, l'affaire ne date pas de George W. Bush. La CIA avait obtenu dès 1999 le droit de retirer du centre des Archives nationales, des documents qu'elle jugeait trop sensibles. Depuis la signatur...

survetement gstar pas cher femme homme

started by luxuriance1 luxuriance1 on 13 May 14 no follow-up yet
1 - 20 of 236 Next › Last »
Showing 20 items per page