Regedit and hit Enter.
HKEY_LOACAL_MECHINE\SYSTEM\CurrentControlSet\Control\ContentIndex
Key Called “Startup Delay” Double Click On It.
'use strict' | |
const Hapi = require('hapi') | |
const Boom = require('boom') | |
const init = async () => { | |
const server = Hapi.server({ | |
port: 3000, | |
host: 'localhost' |
const tlLeave = gsap.timeline({ | |
defaults: { duration: 0.75, ease: "Power2.easeOut" }, | |
}); | |
const tlEnter = gsap.timeline({ | |
defaults: { duration: 0.75, ease: "Power2.easeOut" }, | |
}); | |
//Make the functions for the leave and enter animations | |
const leaveAnimation = (current, done) => { | |
const product = current.querySelector(".image-container"); |
section { | |
margin-top: 4rem; | |
} | |
.image { | |
width: 100%; | |
height: 25rem; | |
} | |
img { |
.modal-backdrop { | |
position: fixed; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100vh; | |
background: rgba(0, 0, 0, 0.75); | |
z-index: 10; | |
} |
class Rectangle | |
{ | |
int left, right, up, down; | |
} | |
public class Main | |
{ |
/** | |
* ☃ dateDiff "Snowman Carl" (http://stackoverflow.com/questions/13903897) | |
* Returns a detail object about the difference between two dates | |
* | |
* When providing custom units, provide them in descending order (eg week,day,hour; not hour,day,week) | |
* | |
* @param {Date} dateStart - date to compare to | |
* @param {Date|string} [dateEnd=new Date()] - second date, can be used as unit param instead | |
* @param {...string} [units=Object.keys(dateDiffDef)] - limits the returned object to provided keys | |
*/ |
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" => General | |
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" vim options {{{ | |
set number | |
set relativenumber | |
set ignorecase | |
set smartcase | |
set iskeyword |
{ | |
"Boiler Code":{ | |
"prefix": "inc", | |
"body": [ | |
"#include <iostream>\n", | |
"using namespace std;\n", | |
"int main() {", | |
"\t$0", | |
"\treturn 0; // Good to go", | |
"}" |
Regedit and hit Enter.
HKEY_LOACAL_MECHINE\SYSTEM\CurrentControlSet\Control\ContentIndex
Key Called “Startup Delay” Double Click On It.
#include <iostream> | |
#include <stdio.h> | |
using namespace std; | |
bool subSet( int ar[] , int sum, int size ) { | |
int results [ size + 1 ] [ sum + 1 ]; | |
// wmemset( &results [ 0 ] [ 0 ] , 0 , sizeof( results )); | |
for( int i = 1; i < size + 1; ++i ) { |