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
#!/bin/bash | |
while :; do | |
ASD="$(env CC=gcc python3 setup.py build 2>/dev/null)" | |
if [ $? -eq 0 ]; then | |
echo "yay, success" | |
break | |
fi | |
CMD="$(echo "$ASD" | tail -n1 | sed 's/^x86_64-linux-gnu-gcc/gcc/')" | |
eval $CMD |
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
void chdir(const char* path) | |
{ | |
if(*path == '/') | |
{ | |
strncpy(root, path, 262); | |
} | |
else | |
{ | |
int len = 262 - strnlen(root, 262); | |
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
#!/bin/bash | |
# =================================== | |
# kagiya-ctr checker bash script | |
# | |
# created by MarcusD | |
# Copyright $(date +"%Y") | |
# | |
# :P | |
# =================================== |
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
/* | |
Terraria Mobile Blowfish savefile crypter | |
Copyright (C) 2016 MarcusD (https://github.com/MarcuzD) | |
This program is free software: you can redistribute it and/or modify | |
it under the terms of the GNU General Public License as published by | |
the Free Software Foundation, either version 3 of the License, or | |
(at your option) any later version. | |
This program is distributed in the hope that it will be useful, |
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
<? | |
/* | |
The MIT License (MIT) | |
Copyright (c) 2016 MarcusD | |
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | |
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | |
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
--[[-- | |
bandcamp.lua - Bandcamp album/track player plugin | |
Copyright (C) 2016-2018 Sono (https://github.com/MarcuzD) | |
This program is free software: you can redistribute it and/or modify | |
it under the terms of the GNU General Public License as | |
published by the Free Software Foundation, either version 3, or | |
(at your option) any later version. | |
This program is distributed in the hope that it will be useful, but |
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 <3ds.h> | |
Handle ptmsysmHandle = 0; | |
Result ptmsysmInit() | |
{ | |
return srvGetServiceHandle(&ptmsysmHandle, "ptm:sysm"); | |
} |
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
#!/bin/bash | |
#Copyright MarcusD 2016 | |
echo cat>cat && cat cat | cat <cat >>cat |
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
#--------------------------------------------------------------------------------- | |
# Makefile by MarcusD (https://github.com/MarcuzD) © $(date +"%Y") | |
#--------------------------------------------------------------------------------- | |
ifeq ($(strip $(DEVKITPRO)),) | |
$(error "Please set DEVKITPRO in your environment. export DEVKITPRO=<path to>devkitPro") | |
endif | |
ifeq ($(strip $(DEVKITARM)),) | |
$(error "Please set DEVKITARM in your environment. export DEVKITARM=<path to>devkitARM") |
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
using System; | |
using System.IO; | |
using System.Drawing; | |
class Program | |
{ | |
static Color transparent = Color.FromArgb(0, 0, 0, 0); | |
static Color black = Color.FromArgb(0xFF, 0, 0, 0); | |
public static void Main(String[] args) |