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
<ComboBox Grid.Column="1" x:Name="cmbInterface" ItemsSource="{Binding Interfaces}" | |
SelectedItem="{Binding SelectedInterface}"/> | |
<ListBox ItemsSource="{Binding InterfaceDetails}"/> |
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
<ComboBox Grid.Column="1" x:Name="cmbInterface" ItemsSource="{Binding Interfaces}" | |
SelectedItem="{Binding SelectedInterface}"/> | |
<ListBox ItemsSource="{Binding InterfaceDetails}"/> |
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
Locate the section for your github remote in the `.git/config` file. It looks like this: | |
``` | |
[remote "origin"] | |
fetch = +refs/heads/*:refs/remotes/origin/* | |
url = gitgitgitgit.git | |
``` | |
Now add the line `fetch = +refs/pull/*/head:refs/remotes/origin/pr/*` to this section. | |
Kindly change the github url to match your project's URL. It ends up looking like this: |
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
Sub SplitData() | |
Const NameCol = "Change this to Column ID A or B or C..." | |
Const HeaderRow = 1 | |
Const FirstRow = 2 | |
Dim SrcSheet As Worksheet | |
Dim TrgSheet As Worksheet | |
Dim SrcRow As Long | |
Dim LastRow As Long | |
Dim TrgRow As Long | |
Dim Student As String |
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
**Project Type Description**|**Project Type Guid** | |
-----|----- | |
C#|{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} | |
VB.NET|{F184B08F-C81C-45F6-A57F-5ABD9991F28F} | |
C++|{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942} | |
F#|{F2A71F9B-5D33-465A-A702-920D77279786} | |
J#|{E6FDF86B-F3D1-11D4-8576-0002A516ECE8} | |
JScript|{262852C6-CD72-467D-83FE-5EEB1973A190} | |
Web Application|{349C5851-65DF-11DA-9384-00065B846F21} | |
Web Site|{E24C65DC-7377-472B-9ABA-BC803B73C61A} |
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
0499c6f697a433f618a55808577e1a136599bd9aa28662e37eb10ece6989a05baca5618b448c6a990c6ca9b95cd2e54bb005508776e945b8dd4b169f3e0d91e526;Masterlyn |
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
Quoting Brian Kramer on the MSDN forums: https://social.msdn.microsoft.com/forums/vstudio/en-US/1b994ff3-da28-46a8-90ef-6c7fab8dcd21/lpctstr#e4e05bbe-7cb8-4321-97de-fcf1c435952e | |
LPCTSTR = Long Pointer to a Const TCHAR STRing (Don't worry, a long pointer is the same as a pointer. There were two flavors of pointers under 16-bit windows.) | |
Here's the table: | |
LPSTR = char* | |
LPCSTR = const char* | |
LPWSTR = wchar_t* |
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
##### Building Google breakpad | |
Building Google breakpad on Windows is a very painful experience because the process is not really well documented and, furthermore, building the project on Windows is maintained surprisingly poorly by Google. But don't lose hope, it is still possible to build this thing and here are the instructions: | |
``` | |
git clone https://chromium.googlesource.com/breakpad/breakpad | |
cd breakpad | |
git checkout chrome_64 | |
cd src | |
git clone https://github.com/google/googletest.git testing | |
cd ..\.. |
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
#!/bin/bash | |
git clone https://github.com/hashcat/hashcat.git | |
mkdir -p hashcat/deps | |
git clone https://github.com/KhronosGroup/OpenCL-Headers.git hashcat/deps/OpenCL | |
cd hashcat/ && make | |
./hashcat --version | |
./hashcat -b -D 1,2 | |
./example0.sh |
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
Step 01. Go to Windows Start Button on the left bottom and Click on Run. | |
Step 02. Type in regedit on the run. | |
Step 03. go to HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Update | |
Step 04. Double Click on the UpdateDefault and or other entries | |
Step 05. Change the value from 0 to 1 for all of the entries |
OlderNewer