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
#!/usr/bin/sh | |
set -e | |
# | |
# Copyright (c) 2025 sleeptightAnsiC https://github.com/sleeptightAnsiC | |
# YOU ARE PERMITED TO COPY, USE AND EDIT THIS SCRIPT LOCALLY, | |
# BUT DO NOT REDISTRIBUTE IT WITHOUT PRIOR NOTICING ME, PLEASE! | |
# THIS SCRIPT IS NOT FULLY TESTED! YOU ARE USING IT ON YOUR OWN RISK! | |
# | |
# This script prefixes every name used by Raylib in order to prevent namespace clashing. | |
# Treat it as a proof of concept or MVP. It probably should be rewritten in C someday. |
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
#! /bin/bash | |
set -e | |
git clone https://repo.or.cz/tinycc.git /tmp/tinycc | |
cd /tmp/tinycc | |
wget https://raw.githubusercontent.com/c-testsuite/c-testsuite/refs/heads/master/tests/single-exec/00152.c | |
git bisect reset | |
git bisect start | |
git bisect bad 34b7b2cef59191fb6fa3c853bccfa53de6090362 | |
git bisect good d348a9a51d32cece842b7885d27a411436d7887b | |
while : ; do |
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
#include "ActorSingleton.h" | |
#include "Kismet/GameplayStatics.h" | |
#include "Subsystems/EditorActorSubsystem.h" | |
#include "Editor.h" | |
DEFINE_LOG_CATEGORY(ActorSingleton); | |
void AActorSingleton::OnConstruction(const FTransform& Transform) | |
{ |