F13.net interview #3
(Visited 4337 times)May 222007
4 Responses to “F13.net interview #3”
Sorry, the comment form is closed at this time.
In which I talk about prototyping processes and stuff.
Sorry, the comment form is closed at this time.
Cookie | Duration | Description |
---|---|---|
cookielawinfo-checkbox-advertisement | 1 year | The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Advertisement". |
cookielawinfo-checkbox-analytics | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics". |
cookielawinfo-checkbox-functional | 11 months | The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional". |
cookielawinfo-checkbox-necessary | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary". |
cookielawinfo-checkbox-others | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other. |
cookielawinfo-checkbox-performance | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance". |
viewed_cookie_policy | 11 months | The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data. |
Cookie | Duration | Description |
---|---|---|
lang | session | This cookie is used to store the language preferences of a user to serve up content in that stored language the next time user visit the website. |
__cf_bm | 30 minutes | This cookie is set by CloudFlare. The cookie is used to support Cloudflare Bot Management. |
Cookie | Duration | Description |
---|---|---|
CONSENT | 16 years 4 months 16 days | These cookies are set via embedded youtube-videos. They register anonymous statistical data on for example how many times the video is displayed and what settings are used for playback.No sensitive data is collected unless you log in to your google account, in that case your choices are linked with your account, for example if you click “like” on a video. |
Cookie | Duration | Description |
---|---|---|
IDE | 1 year 24 days | Used by Google DoubleClick and stores information about how the user uses the website and any other advertisement before visiting the website. This is used to present users with ads that are relevant to them according to the user profile. |
test_cookie | 15 minutes | This cookie is set by doubleclick.net. The purpose of the cookie is to determine if the user's browser supports cookies. |
VISITOR_INFO1_LIVE | 5 months 27 days | This cookie is set by Youtube. Used to track the information of the embedded YouTube videos on a website. |
YSC | session | This cookies is set by Youtube and is used to track the views of embedded videos. |
yt-remote-connected-devices | never | These cookies are set via embedded youtube-videos. |
yt-remote-device-id | never | These cookies are set via embedded youtube-videos. |
Cookie | Duration | Description |
---|---|---|
_ir | session | The cookie is set by Pinterest. We do not know the exact purpose of the cookies. |
The F13-guy comment on libraries was interesting, but is it true? I have only limited experience with C++ programming in Direct-X and OpenGL, but it didn’t take all that much time to learn if you know the theory behind 3D. A CS-major should be up to speed within a week. (graphic-driver bug work-arounds and low-latency sound programming is another issue though).
It is nice to see you are doing prototyping. Reminds me of the Lazzaro(sp?) article in Game Developer on prototyping Myst. Fun reading. I’m personally looking at Flash9 for prototyping purposes (Action Script 3). It has changed quite a bit, and is probably more suitable for prototyping now than it has been. The compiler will also be open-sourced during 2007, so I expect to see more tools for that platform in the coming years…
I’m not a CS major. I am self-taught starting in 1984.
So what I mean is opening up Visual Studio and trying to get a basic window up with a canvas on which I can draw, maybe a menu bar on it. These days, that’s getting tough to do. 🙂 Especially for someone who started out in the days of 10 GRAPHICS 8 20 PLOT 0, 0.
Sorry, I didn’t mean to imply anything about you, Raph. I was merely curious about the interviewer’s general statement.
The Win-API isn’t great for prototyping,agreed. Just slightly better than plain X-Windows (800 lines to open a window?). C# is better, but still not great. Some higher level language + OpenGL is a possibility for advanced 2D/3D prototyping, though (most free languages have OpenGL bindings, even Erlang and Haskell?). OpenGL is also a more stable API and easier to get into than Direct-X. In the end: whatever works… or more likely: whatever you already know :-).
(I started with BASIC in the 80s too. I still feel sorry for the shopkeepers who’s computers displayed my erratic colour bands… 10 poke 53280,0; poke 543280,1; goto 10)
Oh, no offense taken. I was just trying to get across that there’s this body of knowledge that has crept up in there while I wasn’t paying attention, all of which is beside the point in terms of what I want to actually accomplish.
BMax has full access to OpenGL, btw. Plus a bunch of higher-level stuff aimed at 2d drawing. And my prototypes all tend to be 2d anyway. So for those purposes it’s a great solution for me. But it coulda been PyGame, or SDL, or something else.