This file contains hidden or 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
-- Match a highlight color from a vim colorscheme to an existing lua color scheme | |
data = require('backpack.theme_data') | |
---local data = { | |
--- ALEErrorSign = { fg = '#d6a477', bg = '#3a3a3a' }, | |
---} | |
local M = {} | |
local function setup() |
This file contains hidden or 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
[ req ] | |
prompt = no | |
days = 365 | |
req_extensions = v3_req | |
distinguished_name = req_distinguished_name | |
[ ca ] | |
default_ca = worldwide | |
[ worldwide ] |
This file contains hidden or 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
[ req ] | |
prompt = no | |
days = 365 | |
distinguished_name = req_distinguished_name | |
req_extensions = v3_req | |
[ req_distinguished_name ] | |
commonName = "Apple Worldwide Developer Relations Certification Authority" | |
countryName = US | |
organizationName = "Apple Inc." |
This file contains hidden or 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 | |
# | |
set -e | |
# Generate Self Signed Certificate Chain for Code signing and provision profile signing. | |
# NOTE: These certificates will not be trusted by the device if they are not set as | |
# trusted (and in the case of driver kit development the Apple Root certificate must be an | |
# Anchor Certificate |
This file contains hidden or 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
// Covert a uint64_t to an unsigned char array | |
unsigned char* uint64ToHexArray(uint64_t value, unsigned char* hexArray, size_t arraySize) | |
{ | |
// Ensure the array is large enough to hold 8 bytes (uint64_t is 8 bytes) | |
if (arraySize < 8) { | |
return hexArray; | |
} | |
// Extract each byte of the uint64_t value and store it in the hexArray | |
for (size_t i = 0; i < arraySize; ++i) { |
This file contains hidden or 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
// Use hasMatchingBits Compare each bit in a 16 bit integer to a comparator. | |
// Do an AND operation with each bit in the comparator against the corresponding bit in | |
// the set bit value and return true if the result of each AND operation is 1 | |
class BitMatcher | |
{ | |
public: | |
BitMatcher(uint16_t bitValue) { | |
value = bitValue; |
This file contains hidden or 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 | |
# | |
# Used to Self sign a code provisioning profile to grant an apple app (MacOSX, IOS etc.) | |
# it's entitlements. | |
# Where AppleRootCACert is a self signed root certificate authority generated my openssl | |
# | |
# AppleWorldwideDeveloperRelationsCertificationAuthorityCert is an intermediate certificate authority | |
# signed by the AppleRootCACert private key. |
This file contains hidden or 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
Email mitt.brohan@yahoo.ca for any questions regarding bugs with the add-in |
This file contains hidden or 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
Our company operates the Copy Sections Word add-in. This page informs you of our policies regarding the collection, use, and disclosure of personal data when you use our App and the choices you have associated with that data. | |
We do not collect any personal information when you use the App. | |
The App may contain links to other sites. If you click on a third-party link, you will be directed to that site. Note that these external sites are not operated by us. Therefore, we strongly advise you to review the Privacy Policy of these websites. We have no control over and assume no responsibility for the content, privacy policies, or practices of any third-party sites or services. | |
We do not knowingly collect personally identifiable information from anyone under the age of 13. If you are a parent or guardian and you are |
This file contains hidden or 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
cd C:/Users/Administrator/ | |
type NUL > rtffile.rtf # also echo. 2>rtffile.rtf copy nul file.txt > nul # also in qid's answer below REM. > empty.file fsutil file createnew file.cmd 0 # to create a file on a mapped drive | |
bitsadmin /Transfer mydownloadjob /download /priority normal https://upload.wikimedia.org/wikipedia/commons/3/3c/Enrique_Simonet_-_Marina_veneciana_6MB.jpg C:\Users\Administrator\maxfilesize.jpg |