- Arrays
- Searching
- Sorting
- Matrix
- Hashing
- Strings
- Linked List
- Stack
- Queue
<?xml version="1.0" encoding="utf-8"?> | |
<configuration> | |
<system.webServer> | |
<modules> | |
<remove name="WebDAVModule" /> | |
</modules> | |
<handlers> | |
<remove name="aspNetCore" /> | |
<remove name="WebDAV" /> | |
<remove name="ExtensionlessUrlHandler-Integrated-4.0" /> |
private Task _debounceTask; | |
public ExtendedEntry() | |
{ | |
int debounceDelay = 500; | |
CancellationTokenSource _debounceTaskCancellationSource = null; | |
TextChanged += (sender, e) => | |
{ | |
if (_debounceTask != null) | |
{ |
@echo off | |
fltmc >nul 2>&1 || ( | |
echo This batch script requires administrator privileges. Right-click on | |
echo the script and select "Run as administrator". | |
goto :die | |
) | |
rem Change this path if you are using Community or Professional editions | |
set "VS_INSTALL_DIR=%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Enterprise" |
Photo Viewing Page
- comments
- add/edit/delete
- upvote/downvote
-
#User
- browse photos
You can download whole courses from an array of tutorial sites with the CLI tool youtube-dl
. In the example further down I'm using my Pluralsight account to get videos from a course at their site. Here is a list of all supported sites that you can download from with this tool
The flags you have to supply may vary depending on which site you make a request to.
You can get a free 3 month trial to Pluralsight by signing up for free to Visual Studio Dev Essentials
== Adb Server | |
adb kill-server | |
adb start-server | |
== Adb Reboot | |
adb reboot | |
adb reboot recovery | |
adb reboot-bootloader | |
== Shell |
using System; | |
using System.IO; | |
using System.Drawing; | |
using System.Drawing.Imaging; | |
using System.Diagnostics; | |
using System.Linq; | |
namespace ImageProcessing | |
{ | |
class Program |
If a project has to have multiple git repos (e.g. Bitbucket and Github) then it's better that they remain in sync.
Usually this would involve pushing each branch to each repo in turn, but actually Git allows pushing to multiple repos in one go.
If in doubt about what git is doing when you run these commands, just
declare @tableName varchar(200) | |
declare @columnName varchar(200) | |
declare @nullable varchar(50) | |
declare @datatype varchar(50) | |
declare @maxlen int | |
declare @sType varchar(50) | |
declare @sProperty varchar(200) | |
DECLARE table_cursor CURSOR FOR |