- Insert the unifying receiver.
- Download and Install the latest Unifying Receiver software. (version 250, firmware 024.010.00036 at time of writing)
- Download and Install the latest SetPoint software. (version 6.69.126, firmware 041.001.00038 at time of writing)
- Sync the T650 to your unifying receiver.
- Open SetPoint and make any changes to the SetPoint configuration for your T650.
- You may need to restart the T650 and SetPoint for initial detection.
- Exit/close the SetPoint software (make sure it is fully closed and not in the tasktray)
- Open the Properties for C:\Program Files\Logitech\SetPointP\SetPoint.exe
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
<profiles version="13"> | |
<profile kind="CodeFormatterProfile" name="SaneJava" version="13"> | |
<setting id="org.eclipse.jdt.core.formatter.comment.insert_new_line_before_root_tags" value="insert"/> | |
<setting id="org.eclipse.jdt.core.formatter.disabling_tag" value="@formatter:off"/> | |
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_annotation" value="insert"/> | |
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_parameters" value="do not insert"/> | |
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_type_declaration" value="insert"/> | |
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_arguments" value="insert"/> | |
<setting id="org.eclipse.jdt.core.formatter.brace_position_for_anonymous_type_declaration" value="end_of_line"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
set "avidemux=C:\Program Files\Avidemux 2.7 VC++ 64bits\avidemux.exe" | |
: %%~nf returns the filename without the extension | |
for /F "tokens=*" %%f in ('dir /a-d /b *.mp4') do ( | |
"%avidemux%" --load "%%f" --run trim.py --save "%%~nf_edit.mp4" --quit | |
) | |
exit /b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.IO; | |
using System.Net.Http; | |
using System.Xml.Linq; | |
namespace wsdl2class | |
{ | |
class Program | |
{ | |
public static HttpClient client = new HttpClient(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;@echo off | |
;echo.>"%Temp%\vcloud.ps1" | |
;findstr -rbv ; %0 >> "%Temp%\vcloud.ps1" | |
;powershell -executionpolicy unrestricted -command "%Temp%\vcloud.ps1" | |
;exit /b | |
$api = "https://vcloud.example.com/api"; | |
# requires powershell version 4+ | |
# environment variables needed | |
# VCLOUD_AUTH = base64 encoding of user@org:password |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Copyright (c) 2015 David Ruhmann | |
using System; | |
using System.ComponentModel; | |
using System.Linq; | |
using System.Text; | |
using System.Collections.Generic; | |
namespace ChartedCode | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Copyright (c) 2015 David Ruhmann | |
using System; | |
using System.Collections.Generic; | |
using System.Text; | |
namespace ChartedCode | |
{ | |
public static class NumberExtensions | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "stdafx.h" | |
#include "MessageDlg.h" | |
#include <dcp_colorscheme.h> // GetSchemeBrush | |
#include <Nursing_MsgAPI_Macros.h> // MSGWRITE* | |
// Static Value Definitions | |
#define MIN_HEIGHT 50 | |
#define MIN_WIDTH 50 | |
#define MAX_HEIGHT 500 | |
#define MAX_WIDTH 500 |
NewerOlder