A yeetifier for C/C++ code.
- Select a C++ file:
// main.cpp
#include<iostream>
{ | |
"title":"The Linux Command Line", | |
"subtitle":"A Complete Introduction", | |
"authors":[ | |
"William E. Shotts, Jr." | |
], | |
"publisher":"No Starch Press", | |
"publishedDate":"2012", | |
"description":"You've experienced the shiny, point-and-click surface of your Linux computer—now dive below and explore its depths with the power of the command line. The Linux Command Line takes you from your very first terminal keystrokes to writing full programs in Bash, the most popular Linux shell. Along the way you'll learn the timeless skills handed down by generations of gray-bearded, mouse-shunning gurus: file navigation, environment configuration, command chaining, pattern matching with regular expressions, and more. In addition to that practical knowledge, author William Shotts reveals the philosophy behind these tools and the rich heritage that your desktop Linux machine has inherited from Unix supercomputers of yore. As you make your way through the book's short, easily-digestible chapters, you'll lea |
import { useCount, useIncrement, useDecrement } from './store.Count' | |
export default function Counter () { | |
const count = useCount() | |
const increment = useIncrement() | |
const decrement = useDecrement() | |
return ( | |
<div> | |
<div>Count: {count}</div> |
// ==UserScript== | |
// @name Discord Custom CSS | |
// @version 1.4 | |
// @author OleVik | |
// @include https://discordapp.com/* | |
// @include http://discordapp.com/* | |
// @exclude https://discordapp.com/invite/* | |
// @exclude http://discordapp.com/invite/* | |
// @exclude https://discordapp.com/oauth2/* | |
// @exclude http://discordapp.com/oauth2/* |
// Licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication | |
// http://creativecommons.org/publicdomain/zero/1.0/ | |
// HTML files: try the network first, then the cache. | |
// Other files: try the cache first, then the network. | |
// Both: cache a fresh version if possible. | |
// (beware: the cache will grow and grow; there's no cleanup) | |
const cacheName = 'files'; |
<?xml version="1.0" encoding="utf-8"?> | |
<!-- | |
This configuration file is required if iisnode is used to run node processes behind | |
IIS or IIS Express. For more information, visit: | |
https://github.com/tjanczuk/iisnode/blob/master/src/samples/configuration/web.config | |
--> | |
<configuration> | |
<system.webServer> |
# EditorConfig helps developers define and maintain consistent | |
# coding styles between different editors and IDEs | |
# editorconfig.org | |
root = true | |
[*] | |
end_of_line = lf | |
charset = utf-8 |
from suds.client import Client | |
url="http://wsf.cdyne.com/WeatherWS/Weather.asmx?WSDL" | |
client = Client(url) | |
print client ## shows the details of this service | |
result = client.service.GetWeatherInformation() | |
print result ## see: restult.txt below |