<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title>7chan - pr</title>
<link>/pr</link>
<description>Live RSS feed for /pr</description>
<language>en</language>';
	<item>
	<title>2319</title>
	<link>
			/pr/res/2303.html#2319</link>
	
	<description><![CDATA[
	
			All else being equal, choose to learn Majik so you can tell people (and put on your resume) that you can do Majik.<br /><a href="http://en.wikipedia.org/wiki/Magik_">http://en.wikipedia.org/wiki/Magik_</a>(programming_language)<br /><br />pic sorta related: Majik Mushrooms?<br /><br />
	
	]]></description>
	</item>
	<item>
	<title>2318</title>
	<link>
			/pr/res/2263.html#2318</link>
	
	<description><![CDATA[
	
			<a href="/pr/res/2263.html#2270" class="ref|pr|2263|2270">&gt;&gt;2270</a><br /><a href="/pr/res/2263.html#2274" class="ref|pr|2263|2274">&gt;&gt;2274</a><br /><a href="/pr/res/2263.html#2277" class="ref|pr|2263|2277">&gt;&gt;2277</a><br /><a href="/pr/res/2263.html#2287" class="ref|pr|2263|2287">&gt;&gt;2287</a><br />OP here, forgot about this thread after I got an answer. Thanks for the responses.<br /><br />
	
	]]></description>
	</item>
	<item>
	<title>2317</title>
	<link>
			/pr/res/2316.html#2317</link>
	
	<description><![CDATA[
	
			sorry about the typos, fucking annoying i know<br /><br />
	
	]]></description>
	</item>
	<item>
	<title>2316</title>
	<link>
			/pr/res/2316.html</link>
	
	<description><![CDATA[
	
			hi guys,<br /><br />anyone that can explain to me in short what kind of security risks one is exposed to when using IIS6? the company i&#039;m working for run&#039;s sharepoint 2007 on it and we&#039;re about to switch to SP2010 thus using IIS7.. finally<br /><br />tl;dr: why not to use iss6?<br /><br />
	
	]]></description>
	</item>
	<item>
	<title>2315</title>
	<link>
			/pr/res/2279.html#2315</link>
	
	<description><![CDATA[
	
			Who is in OP?<br /><br />
	
	]]></description>
	</item>
	<item>
	<title>2314</title>
	<link>
			/pr/res/2283.html#2314</link>
	
	<description><![CDATA[
	
			Make two runnables and two threads with the runnables as parameters. I think thats how its done havent used java since high school.<br /><br />
	
	]]></description>
	</item>
	<item>
	<title>2313</title>
	<link>
			/pr/res/2313.html</link>
	
	<description><![CDATA[
	
			Ok, so I&#039;m pretty new here, but I wanted to ask what, if anything, do the citizens of this -chan use for browsing on the go?  I&#039;ve tried a number of apps on Google Play, and the only ones I&#039;ve been semi-pleased with have been Yon-chan Viewer and Anonymous.<br /><br />Problem being that Yon-chan is a 4chan exclusive viewer and Anonymous seems to be dead and no longer properly functioning for some reason (maybe it&#039;s just me).<br /><br />So I was hoping to find out if perhaps there were any alternatives out there and, if not, how difficult it is to go about trying to create my own app.  Are there API&#039;s available for 7-chan or any of the other chans people tend to frequent.  I know what features I&#039;d like, but are there any features anyone else would like to see implemented.<br /><br />
	
	]]></description>
	</item>
	<item>
	<title>2312</title>
	<link>
			/pr/res/2303.html#2312</link>
	
	<description><![CDATA[
	
			I dont choose languages.<br /><br />Usually the languages is just the tool needed for what you must do.<br /><br />When I got my first job, I had to use obj-C.<br /><br />When i chose unreal engine to work, I had to use unrealscript.<br /><br />If you are going to pick a language without any final purpose other than learning, choose the one that is more modern and works with the vanguard principles.<br /><br />Id say to learn about something implementing functional paradigm.<br /><br />
	
	]]></description>
	</item>
	<item>
	<title>2311</title>
	<link>
			/pr/res/2302.html#2311</link>
	
	<description><![CDATA[
	
			The possible advantages are: efficiency, easier to read/write, faster development, safer code, more useful libraries, portability. I think that&#039;s about it, just remember no language will give you all that - there are always tradeoffs.<br />I never used Byond so can&#039;t comment on how it compares to other languages, but I&#039;d go with whatever the team is more used to, preferring something easy over efficient since the game looks light on resources.<br /><br />
	
	]]></description>
	</item>
	<item>
	<title>2310</title>
	<link>
			/pr/res/2250.html#2310</link>
	
	<description><![CDATA[
	
			I mostly agree with <a href="/pr/res/2250.html#2255" class="ref|pr|2250|2255">&gt;&gt;2255</a> , even so that dynamic evaluation fuctionality does look pretty sweet.<br /><br />
	
	]]></description>
	</item>
	<item>
	<title>2309</title>
	<link>
			/pr/res/2225.html#2309</link>
	
	<description><![CDATA[
	
			Well hell, I&#039;m late to this game, but if you&#039;re still around, here goes:<br /><br />#import &lt;&quot;math.h&quot;&gt;<br /><br />@interface mathSolver{<br />@private<br />    float a, b, c, d;<br />}<br />@property(weak)double a;<br />@property(weak)double b;<br />@property(weak)double c;<br />@property(weak)double d;<br />-(id)init;<br />-(double)calcA :(double)b :(double)c :(double) d;<br />-(double)calcB :(double)a :(double)c :(double) d;<br />-(double)calcC :(double)a :(double)b :(double) d;<br />-(double)calcD :(double)a :(double)b :(double) c;<br />@end<br /><br />@implementation mathSolver<br />@synthesize a, b, c, d;<br />-(id)init{<br />    self = [super init];<br />    if (self) return self;<br />}<br /><br />-(double)calcA :(double)b :(double)c :(double)d{<br />    return pow([self d], (1 / [self c])) - [self b];<br />}<br /><br />/*and I will leave you with that example. Use the c math.h library and standard objective c syntax. Learn objective C, never have to worry about having a job!*/<br /><br />
	
	]]></description>
	</item>
	<item>
	<title>2308</title>
	<link>
			/pr/res/2303.html#2308</link>
	
	<description><![CDATA[
	
			Python isn&#039;t really in the same category as Lua. Lua is more for tying things together; people use Lua on top of other things. Python&#039;s multipurpose and probably the most suggested starter language. I started with BASIC and Fortran so I wouldn&#039;t know what to tell you. Just pick whatever makes the most sense to you and make sure its a structured language (and not BASIC).<br /><br />
	
	]]></description>
	</item>
	<item>
	<title>2307</title>
	<link>
			/pr/res/2303.html#2307</link>
	
	<description><![CDATA[
	
			python is a general purpose language, lua is only really useful if you already have some software that embeds it like löve or if you&#039;re writing some software to embed it<br /><br />
	
	]]></description>
	</item>
	<item>
	<title>2306</title>
	<link>
			/pr/res/2303.html#2306</link>
	
	<description><![CDATA[
	
			you don&#039;t remember what you learned last?<br /><br />Python then.<br /><br />
	
	]]></description>
	</item>
	<item>
	<title>2305</title>
	<link>
			/pr/res/2303.html#2305</link>
	
	<description><![CDATA[
	
			I don&#039;t remember, but it was some dialect of BASIC.<br /><br />
	
	]]></description>
	</item>

</channel>
</rss>

