How long do you need after handing a PSD file with the final design, to the final page (in days)? - psd

I applied for a job, the boss wrote me back and made me two questions:
One of them is:
How long do you need after handing a PSD file with the final design, to the final page (in days)?
Can somebody please help me to understand the question because I think it's not that clear!
Thank you in advance :)

Related

New to File Read/Write and Sorting

I'm posting as a new learner to java. Currently now i'm in the process of learning reading and writing to files and also sorting and displaying specific information from files.
I hope someone can help me understand what im doing wrong. i have too much code to post here so i uploaded it to github. https://github.com/PearseMorris/AstronautList.git
If you look at the StartApp.java it contains the main method, Astronaut.java is OOP getters and setters etc. and there is astronauts.csv. the file that i need to pull information from.
I want to be able to specifically pull names from the csv file if they are from a specific country. so in my case (Case 2 switch statement/StartApp.java), i want to beable to display all astronaut names that are from the 'USA'. I've already wrote a few methods at the bottom of StartApp.java thats suppose to sort and store those names in an array. and then on case 2 they display those names. if that makes sense.
This forum is my last resort as i am not getting replies from my teachers. But any and all help is really appreciated!

architecture: building text suggestions based on existing text

trying build a text suggestions similar to stackoverflow question suggestions. Do not know where to start from. Any suggestions what tools/servers/algorithms i should be researching. Does this come under text classification?
Any links towards this would be helpful
I think you need to string searching algorithms. They try to find a place where one or several strings (also called patterns) are found within a larger string or text.
The following links help you understand this topic:
Algorithm for autocomplete?
What is the best autocomplete/suggest algorithm,datastructure [C++/C]
https://web.stanford.edu/class/cs97si/10-string-algorithms.pdf

Backpropogation Through Time with Snarli

This question stemmed from the following post with a recommendation to use Snarli for Backpropogation Through Time. I tried it out for regular Backpropogation and it works great. However, I'm not sure about backprop through time. With the limited documentation I can't quite tell how to do it. I used BpptUpdate, but I need to set some momentum term for a layer. I'm a little confused by this (which layer to set and how).
Anyway, just looking for a quick response and I understand it is probably a very limited audience who has used Snarli. My next step is to email the author if I don't hear anything and I figured I could post the answer.
So, maybe this goes without saying, but after emailing the author I came to find that examples are found in the CVS repository (not in the .jar file) or in the snarli-apps compressed files at http://sourceforge.net/projects/snarli/files/snarli/Beta0.21/.
An example for BPTT is found in the Caudill file, the Elman loop is found in elman, etc.

Parsing HTML in AppleScript

What's a good way to parse HTML in AppleScript?
I haven't dabbled in AppleScript in quite some time, and even when I did it was very minimal and uninvolved, so I don't really think naturally in the language quite yet. But I need to do some string manipulation and parse some HTML (basically some simple screen scraping).
Naturally, I'd like to avoid common pitfalls of HTML parsing. However, this is a temporary script and doesn't need to be particularly robust or supportable. I really just need to scrape specific substrings (from a known starting substring to the next known character) into a file.
I've done plenty of string manipulation in C# and similar languages, but AppleScript is an interesting change of pace to say the least. Can somebody point me to some good resources (Google searches on this subject seem to have a high noise-to-signal ratio), or help me out with some sample code snippets?
The ultimate goal of what I'm doing is to take a pre-determined list of pages, open each one in Safari (I'm doing everything through tell application "Safari"), parse out links which fit a certain pattern, and store all of those links in a file. Then go through that file, open each of those links, parse out more links which fit another pattern, and store all of those links in a file.
(The site is actually owned by someone we're working with, so don't worry about me violating any terms of service or anything like that. But for reasons outside the scope of this question, I'm doing some page scraping in AppleScript.)
I can't say enough good things about Matt Neuburg's AppleScript: the Definitive Guide. Without a doubt the most complete documentation of AppleScript ever done. Matt's also one of my favorite tech writers.
I would also check out this article. It contains a tutorial on how to do this; the example provided there parses HTML data from only one source, but I think it's worth looking at.

Reddit's commenting system (hierarchial)

For those of you who have looked at Reddit's source code, where exactly is the logic where it manages the comments hierarchial structure?
I downloaded the code, but couldn't even find the database structure let alone where the reads and writes are for the commenting.
Is it doing updates on lots of comments if someone replies to someone mid-way through a thread?
The class definition for the Comment model is in r2/models/link.py .

Resources