An effect similar to UWP brush.
A Pen by Ushiosan23 on CodePen.
| #include <iostream> | |
| int main() { | |
| // Variables temporales | |
| std::string palabra{}; | |
| // El total donde se guardará la suma de las letras | |
| unsigned int total{0}; | |
| // Realizamos la pregunta de la palabra deseada | |
| std::cout << "Inserte una palabra: "; |
| using System; | |
| using System.Collections.Generic; | |
| namespace MyBestNamespace { | |
| public class VirtualMethod { | |
| /// <sumary> | |
| /// Constructor | |
| /// </sumary> |
| using System; | |
| namespace ConsoleApp1.Company { | |
| /// <summary> | |
| /// Person. | |
| /// </summary> | |
| [Serializable] | |
| public class Person { |
| package main | |
| import ( | |
| "bytes" | |
| "encoding/gob" | |
| "fmt" | |
| "io/ioutil" | |
| "os" | |
| "path/filepath" | |
| ) |
| package render; | |
| import java.io.Serializable; | |
| public class Pixel implements Serializable { | |
| private int X; | |
| private int Y; | |
| private short R; |
An effect similar to UWP brush.
A Pen by Ushiosan23 on CodePen.
| import java.lang.annotation.Documented; | |
| import java.lang.annotation.ElementType; | |
| import java.lang.annotation.Retention; | |
| import java.lang.annotation.RetentionPolicy; | |
| import java.lang.annotation.Target; | |
| @Documented | |
| @Retention(RetentionPolicy.CLASS) | |
| @Target({ElementType.METHOD, ElementType.FIELD, ElementType.PARAMETER, ElementType.LOCAL_VARIABLE}) | |
| public @interface NotNull { |
| Windows Registry Editor Version 5.00 | |
| ; Open files | |
| ; Default Powershell Location C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe | |
| [HKEY_CLASSES_ROOT\*\shell\Open Powershell Bash] | |
| @="Open Powershell Here" | |
| "Icon"="C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe" | |
| [HKEY_CLASSES_ROOT\*\shell\Open Powershell Bash\command] | |
| @="\"C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe\"" |