Orthodox C++ (sometimes referred as C+) is minimal subset of C++ that improves C, but avoids all unnecessary things from so called Modern C++. It's exactly opposite of what Modern C++ suppose to be.
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
// Run this on https://developer.mozilla.org/en/docs/Web/HTML/Element | |
var tags = [], nodeList = document.querySelectorAll('td a code'); | |
for (i in nodeList) { | |
if ((nodeList[i].innerText) && (nodeList[i].innerText.indexOf('<') > -1)) { | |
var tag = nodeList[i].innerText.replace('<','"').replace('>','"'); | |
if (tags.indexOf(tag) == -1) { | |
tags.push(tag); | |
} | |
} | |
} |
Notice: The below instructions were written on 9/22/17 and refer to an alpha build of devkitA64, libnx, and Mephisto. Take it with a grain of salt if the date has moved too far into the future since then.
- Devkit ARM64 for your OS
- unix-like environment
- git, make, 7zip
- lz4, lz4-devel (Ubuntu, Fedora, Github)
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
// ==UserScript== | |
// @name EmuParadise Download Workaround - 1.1.1 | |
// @version 1.1.2 | |
// @description Replaces the download button link with a working one | |
// @author Eptun | |
// @match https://www.emuparadise.me/*/*/* | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js | |
// @grant none | |
// ==/UserScript== |
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
import React, { useState } from "react" | |
import PropTypes from 'prop-types' | |
import "./input.css" | |
import TypingIndicator from "./TypingIndicator" | |
const input = (props) => { | |
const styles = ["plank", "staggered", "split"] | |
const [stateIsFocused, setStateIsFocused] = useState(false) |