Skip to main content

Home/ Coders/ Group items matching "remote" in title, tags, annotations or url

Group items matching
in title, tags, annotations or url

Sort By: Relevance | Date Filter: All | Bookmarks | Topics Simple Middle
lucyll

Edit Blade Chroma 4K Video in Premiere - YouTube - 0 views

  •  
    The Blade Chroma 4K is a relatively compact camera drone that easily breaks down for travel. It is essentially a redesigned version of the Yuneec Typhoon Q500 4K. It shares all the same apabilities, has the same remote controller with a built-in touchscreen and the same 4K-resolution camera and three-axis gimbal for stabilization. However, when you import Blade Chroma 4K into Adobe Premiere Pro, the result may let you down - Adobe Premiere won't work the 4K clips from Blade Chroma 4K camera. Fortunately, we have figured out a decent solution yet.This tutorial will give you a quick fix.
applify1

THE NEED FOR ONSITE CUSTOM SOFTWARE DEVELOPMENT SERVICES - 0 views

  •  
    Custom software development services must invest a lot of time in location for the most excellent personalized goods. Problems arise in numerous crucial phases of software development when there is insufficient face-to-face time with clients or when all development is done remotely. The development team must visit, interact with, interview, evaluate, and plan with clients onsite for several stages to be successful. Anything fewer yields a product that is of inferior quality. The top custom software development services that It must perform at the client's business location are listed below.
htmlslicemate.com

Say Hello to PowerShell - 0 views

  •  
    PowerShell is Microsoft's task automation framework, consisting of a command-line shell, an integrated scripting environment (ISE), a scripting language built on .NET Framework, an API allowing you to host PowerShell in your .NET applications, and it is a distributed automation platform. PowerShell provides full access to COM and WMI, enabling you to perform tasks on both local and remote Windows systems. PowerShell is a new breed platform for automation, in that it solves administration and adaptability challenges by seamlessly integrating the .NET Framework. It's good for developers, administrators, testers and more. Based on .NET, the tool drives down costs, while providing developers and administrators a simple and enterprise-ready way to automate, measure and improve all of their processes.
Joel Bennett

PowerShell For Fun: Workspace Home - 0 views

  •  
    PowerShell Remoting is open source now, but hosted on GotDotNet
  •  
    How to make $ 40,000 in one month with very quickly. What you need. The latest American news article. Immediately visit www.killdo.de.gg www.fiverr.de.gg www.newss.de.gg www.reddit.de.gg www.newsbbc.de.gg
Joel Bennett

PowerShell For Fun - 0 views

  •  
    The original dev blog for PowerShell Remoting
  •  
    How to make $ 40,000 in one month with very quickly. What you need. The latest American news article. Immediately visit www.killdo.de.gg www.fiverr.de.gg www.newss.de.gg www.reddit.de.gg www.newsbbc.de.gg
Joel Bennett

CrossLoop - Simple Secure Screen Sharing - 0 views

  •  
    An impressive VNC-based screen sharing tool for doing remote assistance.
Joel Bennett

SSLBridge - Open Source Linux VPN software - Samba Browser - 0 views

  •  
    Runs on top of Samba (and active directory) allowing users to remotely access file shares etc via the web.
Joel Bennett

OpenRemote - 0 views

  •  
    an Open Community in the Home Automation and Domotics space... promoting open standards, open collaboration, and open implementations in the field.
Rick Fan

Creating OpenSearch plugins for Firefox - MDC - 0 views

  • Your server should serve OpenSearch plugins using the MIME type application/opensearchdescription+xml. Be sure that your Search Plugin XML is well formed. You can check by loading the file directly into Firefox. Ampersands in the template URL need to be escaped with & and tags need to be closed with a trailing slash or matching end tag. The xmlns attribute is important, without it you could get an error message indicating that "Firefox could not download the search plugin from: (URL)". Note that you must include a text/html URL — search plugins including only Atom or RSS URL types (which is valid, but Firefox doesn't support) will also generate the "could not download the search plugin" error. Remotely fetched favicons must not be larger than 10KB
Joel Bennett

PostSharp for Enterprise Library - Enterprise Library Contrib - 0 views

  •  
    This addon to the enterprise library allows you to combine PostSharp's compile-time weaving with the Policy Injection application block (PIAB) to remove some of the limitations of the PIAB with regard to performance and remoting proxies...
Joel Bennett

<oXygen/> XML Editor & XSLT Debugger - 0 views

  •  
    A nice commecrial XML editor that not only has excellent validation, xslt and xpath and xquery, andformatting objects (fo) features, but supports an XML data grid view and XML Diff & Merge!  It even supports generating SVG graphics via XSL transforms on data files, remote editing over FTP or WebDav, and is available as an Eclipse plugin. Only $48 for Academic use.
Matteo Spreafico

Joe Duffy's Weblog - OnBeingStateful - 0 views

  • The biggest question left unanswered in my mind is the role state will play in software of the future.
  • The biggest question left unanswered in my mind is the role state will play in software of the future. That seems like an absurd statement, or a naïve one at the very least.&nbsp; State is everywhere: The values held in memory. Data locally on disk. Data in-flight that is being sent over a network. Data stored in the cloud, including on a database, remote filesystem, etc. Certainly all of these kinds of state will continue to exist far into the future.&nbsp; Data is king, and is one major factor that will drive the shift to parallel computing.&nbsp; The question then is how will concurrent programs interact with this state, read and mutate it, and what isolation and synchronization mechanisms are necessary to do so?
  • Many programs have ample gratuitous dependencies, simply because of the habits we’ve grown accustomed to over 30 odd years of imperative programming.&nbsp; Our education, mental models, books, best-of-breed algorithms, libraries, and languages all push us in this direction.&nbsp; We like to scribble intermediary state into shared variables because it’s simple to do so and because it maps to our von Neumann model of how the computer works.
  • ...3 more annotations...
  • We need to get rid of these gratuitous dependencies.&nbsp; Merely papering over them with a transaction—making them “safe”—doesn’t do anything to improve the natural parallelism that a program contains.&nbsp; It just ensures it doesn’t crash.&nbsp; Sure, that’s plenty important, but providing programming models and patterns to eliminate the gratuitous dependencies also achieves the goal of not crashing but with the added benefit of actually improving scalability too.&nbsp; Transactions have worked so well in enabling automatic parallelism in databases because the basic model itself (without transactions) already implies natural isolation among queries.&nbsp; Transactions break down and scalability suffers for programs that aren’t architected in this way.&nbsp; We should learn from the experience of the database community in this regard
  • There will always be hidden mutation of shared state inside lower level system components.&nbsp; These are often called “benevolent side-effects,” thanks to Hoare, and apply to things like lazy initialization and memorization caches.&nbsp; These will be done by concurrency ninjas who understand locks.&nbsp; And their effects will be isolated by convention.
  • Even with all of this support, we’d be left with an ecosystem of libraries like the .NET Framework itself which have been built atop a fundamentally mutable and imperative system.&nbsp; The path forward here is less clear to me, although having the ability to retain a mutable model within pockets of guaranteed isolation certainly makes me think the libraries are salvageable.&nbsp; Thankfully, the shift will likely be very gradual, and the pieces that pose substantial problems can be rewritten in place incrementally over time.&nbsp; But we need the fundamental language and type system support first.
David Corking

Jonathan Schwartz's Blog: Sun's Network Innovations (3 of 4) - 0 views

  • this datacenter systems market is more than $150b annually. And in this datacenter market we build exceptional systems
  • storage, from our new flash based platforms to eco-efficient tape and archive solutions.
  • more than just naked components, they're engineered with remote management and monitoring, component redundancy, integrated virtualization, and on board storage and networking. That's why our margins are higher than the industry's
  • ...7 more annotations...
  • we now build our entire line of storage systems from general purpose server parts, including Solaris and ZFS, our open source file system.
    • David Corking
       
      So, can anyone build a Sun storage device, or are Sun's "general purpose server parts" better (with better management and redundancy ...) ?
  • using a general purpose OS allows us to easily embrace specialized components (from flash memory to GPU's)
  • why am I paying you a million dollars?" I responded, "You can absolutely run it for free. You just can't call me on Christmas day, you'll be on your own." He gave me the PO.
    • David Corking
       
      Schwartz gives the strong impression of an IT company _without_ its hand in your pocket. It is a similar attitude and reputation, though with proprietary software, rather than services (for free software), that seems to have made Microsoft so wealthy in the late eighties and nineties.
  • Solaris OEM agreements with IBM, Dell, Intel, Fujitsu and HP are so important to our end customers - they know they'll never be locked in.
  • These open source platforms generate, alongside the services attached to them, over a billion dollars a year, making Sun by far and away the world's largest open source software company.
    • David Corking
       
      Hundreds of millions of dollars a year from open source Java alone!
  • Fighting free and open software, like fighting free news or free search, is like fighting gravity - and btw, gravity gets a lot stronger during economic downturns.
    • David Corking
       
      !
  • There is a robust, well-designed open source PBX Server called SipX that is primarily backed by Nortel (due to their acquisition of the creators, Pingtel).
  •  
    Making money - billions of dollars of it - with open specification hardware and open source software
David Corking

torta - where is my disk space being used? - 0 views

shared by David Corking on 23 Jun 09 - Cached
  • it analyzes the file system directly and generates a Flash file that you can load locally or remotely on any Flash-supporting web browser. Torta uses Gordon, a library that provides flash generation functionality.
  •  
    A very nice graphical front-end for 'du', in Common Lisp. I have tried it - it is trivial to use with SBCL. Version 0.3 works very well on the native Linux filesystem of my laptop, and on its VFAT (Windows) filesystem, provided I mount it with iocharset
Eamonn O'Brien-Strain

Git Reference - 0 views

    • Eamonn O'Brien-Strain
       
      "git pull origin master" is the incatation that I usually use when working on the master branch.
robin tiwari

Cell Phone Unlock Codes | Mobile Imei Unlocking | Blackberry Unlock Codes | HTC Unlock Codes | Samsung Unlock Codes - UnlockThatPhone - 0 views

  •  
    World's biggest provider of Htc Unlock Codes, Blackberry Unlock Codes, Samsung Unlock Codes, Online Remote Gsm Codes, Fast and Cheap MEP Codes, Mobile Imei Unlocking, Free Sim Unlocking Instructions, Unlock your world!
‹ Previous 21 - 40 of 41 Next ›
Showing 20 items per page