This file contains hidden or 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
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
This file contains hidden or 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
# This is a patched cindex.py that exposes access specifiers on Cursors. | |
# The patch was submitted to the clang project. If it gets approved, | |
# this file will be obselete (and likely removed). | |
#===- cindex.py - Python Indexing Library Bindings -----------*- python -*--===# | |
# | |
# The LLVM Compiler Infrastructure | |
# | |
# This file is distributed under the University of Illinois Open Source | |
# License. See LICENSE.TXT for details. |
This file contains hidden or 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
#include <boost/python.hpp> | |
#include "textcomponent.h" | |
using namespace boost::python; | |
BOOST_PYTHON_MODULE(CodegenExample) | |
{ | |
class_<TextComponent>("TextComponent") | |
.def("text", &TextComponent::text) | |
.def("setText", &TextComponent::setText) |
This file contains hidden or 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
// class Enemies, function Update(): | |
if (CONFIG::debug) | |
{ | |
if (FlxG.keys.SHIFT && FlxG.keys.justPressed("D")) | |
{ | |
// kill all enemies | |
for each ( var enemy : Enemy in members) | |
{ | |
if (enemy.alive && enemy.exists) |
This file contains hidden or 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
#include <chrono> | |
#include <iostream> | |
#include <mutex> | |
#include <thread> | |
struct ExpensiveFoo | |
{ | |
ExpensiveFoo() | |
{ | |
std::cout << "ExpensiveFoo default constructor... "; |
This file contains hidden or 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
[tool.poetry] | |
name = "pretty_plz" | |
version = "0.1.3" | |
description = "pretty_plz is a tool that turns utility scripts into runnable commands" | |
authors = ["Tamás Szelei <[email protected]>"] | |
license = "MIT" | |
homepage = "https://github.com/sztomi/pretty_plz/" | |
repository = "https://github.com/sztomi/pretty_plz/" | |
keywords = ["productivity", "commandline", "cli"] | |
classifiers = [ |
This file contains hidden or 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
use std::env; | |
use std::mem; | |
use std::os::raw::c_int; | |
use std::path::PathBuf; | |
use std::ptr; | |
use anyhow::Result; | |
use sciter::dom; | |
use sciter::dom::event::{EventHandler, DRAW_EVENTS, EVENT_GROUPS}; | |
use sciter::dom::{Element, HELEMENT}; |
This file contains hidden or 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
--bind | |
/tmp | |
/tmp | |
--symlink | |
usr/sbin | |
/sbin | |
--ro-bind | |
/media | |
/media | |
--symlink |
This file contains hidden or 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
'-DCMAKE_BUILD_TYPE=Release', | |
'-DENABLE_X86_RELAX_RELOCATIONS=ON', | |
'-DCLANG_DEFAULT_CXX_STDLIB=libc++', | |
'-DCLANG_DEFAULT_LINKER=lld', | |
'-DCLANG_DEFAULT_OBJCOPY=llvm-objcopy', | |
'-DCLANG_DEFAULT_RTLIB=compiler-rt', | |
'-DCLANG_DEFAULT_UNWINDLIB=libunwind', | |
'-DCLANG_ENABLE_BOOTSTRAP=ON', | |
'-DCLANG_LINKS_TO_CREATE=clang++;clang-cpp', | |
'-DLLVM_BUILD_TESTS=OFF', |
This file contains hidden or 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
settings: | |
host: | |
os: Linux | |
arch: x86_64 | |
build_type: Release | |
build: | |
os: Linux | |
arch: x86_64 | |
build_type: Release |
OlderNewer