Skip to main content

Timeline for Make your language unusable

Current License: CC BY-SA 3.0

22 events
when toggle format what by license comment
Jun 17, 2020 at 9:04 history edited CommunityBot
Commonmark migration
Aug 21, 2019 at 2:55 comment added The Fifth Marshal The first answer is invalid because the user code isn't actually executed.
Jul 20, 2017 at 13:47 comment added user69654 @IsmaelMiguel it was a joke...
Jul 20, 2017 at 13:39 comment added Ismael Miguel @Orangesandlemons Depends on what you're trying to do. If you're trying to create a 500k row insertion code or some super accurate physics calculations, forget PHP. If you're going to deliver a webpage, build a desktop program, control a call center, deliver some sort of content, run JavaScript, basic image operations or even just basic scripting, PHP is fine.
Jul 20, 2017 at 12:44 comment added user69654 Isn't PHP basically unusable to start off with? :P
Apr 13, 2017 at 12:39 history edited CommunityBot
replaced http://codegolf.stackexchange.com/ with https://codegolf.stackexchange.com/
S Mar 29, 2017 at 14:32 history edited Riker CC BY-SA 3.0
Completely => Completely
S Mar 29, 2017 at 14:32 history suggested Arjun CC BY-SA 3.0
Completely => Completely
Mar 29, 2017 at 14:26 review Suggested edits
S Mar 29, 2017 at 14:32
Oct 28, 2015 at 16:21 comment added ETHproductions This shouldn't even throw any error, since there isn't enough memory for that. LOL'ed at that :)
Oct 23, 2015 at 14:04 history edited Ismael Miguel CC BY-SA 3.0
added 2 characters in body
Oct 23, 2015 at 8:33 comment added Ismael Miguel @LucasTrzesniewski FIXED IT!!!! Simply replaced ob_start(); with ob_start(function(){return'';}, -1, PHP_OUTPUT_HANDLER_CLEANABLE);
Oct 23, 2015 at 8:32 history edited Ismael Miguel CC BY-SA 3.0
Fixed answer to prevent the buffer from being cleaned,
Oct 20, 2015 at 21:14 comment added Ismael Miguel @MonkeyZeus PHP on the top? That's impossible
Oct 20, 2015 at 21:13 comment added Ismael Miguel @LucasTrzesniewski I could replace the function call using a regular expression or something. Give me a bit.
Oct 20, 2015 at 20:47 comment added MonkeyZeus Why am I not surprised that PHP ended up towards the top of the vote-chart :)
Oct 20, 2015 at 19:54 comment added Lucas Trzesniewski This can be bypassed with: ob_end_flush(); echo "Hello, world!";
Oct 18, 2015 at 18:53 history edited Ismael Miguel CC BY-SA 3.0
added 406 characters in body
Oct 18, 2015 at 18:38 comment added Ismael Miguel @fschmengler That will cause problems with automatically opened output buffers, usually used to compress the output using gzip. Which in turn will defeat the purpose.
Oct 18, 2015 at 18:35 comment added Fabian Schmengler Since you can have severel levels of output buffering, the second one does not work. Often, while(ob_get_level()) ob_end_flush(); is used in frameworks to flush all output buffers that may have been left open accidently.
Oct 18, 2015 at 18:18 history edited Ismael Miguel CC BY-SA 3.0
added 304 characters in body
Oct 18, 2015 at 18:06 history answered Ismael Miguel CC BY-SA 3.0