uncleflo

profile picture

Some cool dude. Higher order of decision making. Absolute.

Registered since September 28th, 2017

Has a total of 4246 bookmarks.

Showing top Tags within 12 bookmarks

howto   information   development   guide   reference   administration   design   website   software   solution   service   product   online   business   uk   tool   company   linux   code   server   system   application   web   list   video   marine   create   data   experience   description   tutorial   explanation   technology   build   article   blog   learn   world   project   boat   download   windows   security   lookup   free   performance   javascript   technical   control   network   beautiful   london   support   tools   course   file   research   purchase   library   programming   image   youtube   example   php   construction   html   quality   install   community   opensource   computer   profile   feature   power   browser   music   platform   mobile   user   process   work   database   share   manage   hardware   professional   buy   industry   internet   dance   advice   installation   developer   3d   material   access   customer   camera   travel   search   test   standard   documentation   review   css   money   engineering   develop   webdesign   engine   device   photography   source   digital   api   speed   program   management   discussion   question   event   phone   simple   client   story   water   marketing   app   yacht   content   setup   package   interface   fast   idea   account   cheap   communication   compare   script   study   easy   market   live   google   resource   operation   monitor   startup   price  


Tag selected: writer.

Clear all

Showing 12 results.

Looking up writer tag. Showing 12 results. Clear

CreativeLive: Do what you love.

https://www.creativelive.com/

Saved by uncleflo on February 7th, 2022.

We are Photographers, Artists, Designers, Entrepreneurs, Writers and Doers. We believe there is a Creator in all of us. Where the world's top creators, iconic entrepreneurs and best in class do-ers teach what they know. Whether you need to change your career or learn a quick tip for your gig, CreativeLive will give you the right tools to succeed

photography illustrator iconic entrepreneur success creator confidence user teach tools learn knowledge artist gig class change career online list courses buy writer live create creative


London housing crisis extends to the water

https://edition.cnn.com/2016/07/26/world/london-water-crisis/index.html

Saved by uncleflo on December 20th, 2018.

London vies with Hong Kong and Monaco for the unenviable title of the world's most expensive city for housing. The average house price in the English capital is now nearly £600,000 ($787,000), and a study from the charity Shelter found just 43 properties affordable to people on an average income. Several of these properties were houseboats. Life on London's 100-mile network of canals, or 42-mile stretch of the River Thames, has become a popular option for beleaguered citizens, and such homes can cost as little as £20,000 ($26,500). But as more people swap apartments for houseboats, the popular, romantic vision is giving way to a harsh reality.

expense city boat houseboat river london thames property shelter afford capital vision reality network canal article review author writer discussion insight water living life


In-Depth Diving With A Vintage Tornek-Rayville

https://www.hodinkee.com/articles/vintage-tornek-rayville-diving-in-depth

Saved by uncleflo on June 5th, 2018.

A mile offshore from San Benedicto, a volcanic island in the Eastern Pacific, and 75 feet deep, I raise my GoPro to take a selfie. I want to preserve this moment, not only because it’s the first dive of what promises to be a truly memorable adventure, but also because on my wrist is a very rare watch. I’m wearing a vintage Tornek-Rayville TR-900, a watch built by Blancpain for the United States Navy in the 1960s, and this is likely the only surviving one that has been fully serviced and suitably sealed for modern dive use. It’s a photo for bragging rights, or perhaps an epitaph, should I be the one to lose or flood such a rare horological treasure.

diving great dolphin time story review navy watch dangerous rare collector experience blog writer adventure vintage


OAuth 2 Simplified

https://aaronparecki.com/oauth-2-simplified/

Saved by uncleflo on July 10th, 2017.

This post describes OAuth 2.0 in a simplified format to help developers and service providers implement the protocol. The OAuth 2 spec can be a bit confusing to read, so I've written this post to help describe the terminology in a simplified format. The core spec leaves many decisions up to the implementer, often based on security tradeoffs of the implementation. Instead of describing all possible decisions that need to be made to successfully implement OAuth 2, this post makes decisions that are appropriate for most implementations.

openauthentication oauth opensource simplified simple article blog writer terminology description administration develop developer code howto explanation post implement website security


Etherpad - Open Source online editor - Realtime Collaborative Editing

http://etherpad.org/

Saved by uncleflo on June 23rd, 2017.

Etherpad is a highly customizable Open Source online editor providing collaborative editing in really real-time. Collaborating in really real-time. No more sending your stuff back and forth via email, just set up a pad, share the link and start collaborating! Etherpad allows you to edit documents collaboratively in real-time, much like a live multi-player editor that runs in your browser. Write articles, press releases, to-do lists, etc. together with your friends, fellow students or colleagues, all working on the same document at the same time. All instances provide access to all data through a well-documented API and supports import/export to many major data exchange formats. And if the built-in feature set isn't enough for you, there's tons of plugins that allow you to customize your instance to suit your needs. You don't need to set up a server and install Etherpad in order to use it. Just pick one of publicly available instances that friendly people from everywhere around the world have set up. Alternatively, you can set up your own instance by following our installation guide.

realtime collaboration opensource browser operational-transformation website js library text writer software howto download app article write


Operational Transformation

http://operational-transformation.github.io/

Saved by uncleflo on June 23rd, 2017.

Software that lets you edit a shared document together with others over the internet can be really useful if you’re working in a team, especially a distributed one. Nowadays, there is a lot of web-based software for simultaneous collaborative editing, no matter if you’re working on rich-text documents, spreadsheets, presentations or source code. Let’s take a moment to define more precisely what we mean with the term realtime collaborative editing. What we want is that multiple people working at different computers can make changes to a document hosted on a server at any time. These changes are synchronized immediately with the other peers, in contrast to version control systems like Git, where one usually works on a feature all by oneself and eventually merges the changes back to the project. No client should have to communicate with the server or any other client before making a change. In particular, there is no need to acquire a lock from the server to make an edit and concurrent edits can occur. After all changes have been synchronized, every client should see the exact same document. It turns out that implementing this kind of real-time collaboration is far from trivial. The most common solution responds to the name Operational Transformation (usually abbreviated OT). It originated from a research paper published in 1989 but got more recently popularized by Google Wave. Today, it powers many collaborative editors such as.

operational-transformation collaboration github document share synchronize article write writer developer development library define simultaneous software edit other information reference core js javascript browser


Operational Transformation library? Ask

https://stackoverflow.com/questions/2043165/operational-transformation-library

Saved by uncleflo on June 23rd, 2017.

I'm looking for a library that would allow me to synchronize text in real-time between multiple users (ala Google Docs). I've stumbled upon Operational Transformation, which seems to fit my needs. Having said that, I understand the gist of OT, but not the math nor implementation of OT. Thus, I was wondering if there was a drag'n'drop Javascript library that would hook into a text area, generate the transforms, then allow me to apply those transformations onto another client? (I've gotten the Etherpad source, but I can't make head or tails out of it. If anyone could point out how to leverage on Etherpad's OT implementation, that'll be great too!)

share transform group operation transformation operational-transformation development collaboration website web howto references list developer lookup information read discussion question synchronize realtime text article write writer js library


Cult of Copy

https://cultofcopy.com/

Saved by uncleflo on July 23rd, 2016.

This is the place to subscribe to the Cult of Copy email list. This is an experiment. I don't know what I will send you. I can't promise you will like it. And if you don't, it's simple to unsubscribe. But just remember, by filling out this form and clicking the confirmation link I will email you, you are officially ASKING me to email you. Caveat lector, emptor fiet.

subscribe blog website introduction cult of copy copy writer writing write create marketing story character move pattern advertise pirate convince sell subscription email


Latte Creative

http://www.lattecreative.com/

Saved by uncleflo on July 14th, 2016.

We campaign with NGOs, institutions and disruptive companies to transform great ideas into fresh transmedia contents and address political, cultural and social issues. We share our clients’ goals and efforts and we strongly believe in the causes we help spreading.

web creative strategy social business social innovation active expert writer project service team contact feature coder information development


Hire Writers - Article Writing Service

https://www.hirewriters.com/

Saved by uncleflo on October 13th, 2015.

High quality, cheap, fast and 'on-topic' articles. Becoming a member is free, and you only pay for an article if you are totally satisfied with it. We have pre-screened thousands of writers to ensure you get the highest quality results within hours.

article outsource writers contentwriting content write daily service hire screen writer result cheap topic


Hire freelancers and find freelance jobs instantly | Elance

https://www.elance.com/

Saved by uncleflo on March 15th, 2013.

Elance is the largest and most popular freelance platform for businesses looking to hire and work with top freelancers. Over 500,000 businesses and 2 million freelance professionals in more than 150 countries use Elance. Each year more than 1 million freelance jobs are completed through Elance, and to date our professional community has earned nearly $700 million. From innovative global enterprises to small businesses and start-ups, companies utilize Elance to engage talented application developers, software engineers, testers, network administrators, web designers, graphic designers, copywriters, market researchers, data analysts, social media marketers, translators, customer service agents, moderators, administrative assistants, accountants, lawyers and business consultants. If you're looking to do great work or want to build and manage teams of amazing freelancers, Elance may be right for you. The world works differently on Elance. Join us.

freelance hire job instant elance find business profressional world complete application analyst marketer moderator customer agent media administrator enterprise start-up company engage talent graphic editor writer mobile collaborate propose post


CutePDF - The free PDF Converter, Convert to PDF for free, Free PDF Utilities.

http://www.cutepdf.com/products/cutepdf/writer.asp

Saved by uncleflo on May 7th, 2012.

Portable Document Format (PDF) is the de facto standard for the secure and reliable distribution and exchange of electronic documents and forms around the world. CutePDF Writer is the free version of commercial PDF converter software. CutePDF Writer installs itself as a "printer subsystem". This enables virtually any Windows applications (must be able to print) to convert to professional quality PDF documents - with just a push of a button! FREE for commercial and non-commercial use! No watermarks! No Popup Web Ads!

pdf standard cutepdf writer printer document commercial free quality professional application windows driver print convert


No further bookmarks found.