variable="$(echo INJECTED | base64)"
variable='$(echo '"$variable"' | base64 --decode)'
error
error "$variable foo"
error ' foo"bar ' $'\n''\nbaz)'
| # suppose you have created a ui file called configwin.ui | |
| cmake_minimum_required (VERSION 2.6) | |
| project(tst) | |
| find_package(Qt5Widgets) | |
| set(CMAKE_AUTOMOC ON) | |
| set(CMAKE_INCLUDE_CURRENT_DIR ON) |
| // Capture WASAPI audio endpoint | |
| // https://docs.microsoft.com/en-us/windows/desktop/coreaudio/capturing-a-stream | |
| #define WIN32_LEAN_AND_MEAN | |
| #include <windows.h> | |
| #include <mmdeviceapi.h> | |
| #include <audioclient.h> | |
| #include <Functiondiscoverykeys_devpkey.h> // PKEY_Device_FriendlyName | |
| #include <fcntl.h> // _O_U16TEXT | |
| #include <io.h> |
| import cv2 | |
| import numpy as np | |
| def draw_text( | |
| img, | |
| *, | |
| text, | |
| uv_top_left, | |
| color=(255, 255, 255), |
| #!/bin/sh | |
| spd-say "You motherfucker, come on you little ass… fuck with me, eh? You fucking little asshole, dickhead cocksucker…You fuckin' come on, come fuck with me! I'll get your ass, you jerk! Oh, you fuckhead motherfucker! Fuck all you and your family! Come on, you cocksucker, slime bucket, shitface turdball! Come on, you scum sucker, you fucking with me? Come on, you asshole" |
| /* | |
| Check SSE/AVX support. | |
| This application can detect the instruction support of | |
| SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, SSE4a, SSE5, and AVX. | |
| */ | |
| #include <iostream> | |
| #ifdef _MSC_VER | |
| #include <intrin.h> | |
| #endif |
| """ | |
| https://github.com/jax-ml/jax/issues/26566 | |
| """ | |
| import itertools | |
| import operator | |
| import jax | |
| from jax import numpy as jnp | |
| from tqdm import tqdm |
| const std = @import("std"); | |
| const sfy = @import("structify.zig"); | |
| pub fn main() !void { | |
| // Object builders just like c# or typescript, easy peasy! Tooling could be better. | |
| { | |
| const Config = struct { | |
| a: i32, | |
| b: i16, |
HEY: I've turned this into a blog post, which is a little more in depth.
🚨 https://eev.ee/blog/2016/06/04/converting-a-git-repo-from-tabs-to-spaces/ 🚨
| from typing import Optional | |
| import torch | |
| import torch.nn.functional as F | |
| from torch import Tensor | |
| from torch.nn.modules.batchnorm import _BatchNorm | |
| # Masked Batch Normalization |