Re: Why my created link is not updating as a backlinks? Digital Media Digital Marketing Search Engine Strategies by Dani …, that crawls *every* page of the web, and tries to collect lists of backlinks pointing to each other URL on the… Re: Guesswork removed from SEO keyword selection Community Center by Brandon_38 Removing guesswork from SEO keyword selection is a game changer for marketers. Using data-driven tools and analytics leads to more targeted strategies and better search visibility. It’s great to see a shift towards more effective and measurable approaches in SEO! Re: Tribal Knowledge: atoi is evil! Programming Software Development by hladysz Excellent post! Could you please fix the condition? ```c if (end != buf && errno != ERANGE && (temp >= INT_MIN || temp <= INT_MAX)) { ``` Re: Tribal Knowledge: atoi is evil! Programming Software Development by Salem > hladysz said > please fix the condition: Please explain why you think this is the wrong condition. Collect Data Programming Web Development by zaouba any1 plzzzzzzzzz help me.. i have a two field.. name as GroupName and SubGroup....the thing is that i have to collect the data of this two field in a DroupDownList......so how would be the code of this........ Collect data from different lines in file Programming Software Development by dnyansagar … jacket man2 jacket man2 jacjet man2 computer I want to collect the data, but while collecting I want to count them… Re: Collect sum of a column in a html table? Programming Web Development by saqlainraza14 # Collect sum of a column in a html table? # > This … Suggestions for software metrics to collect Community Center by loctan … would be interesting to create an eclipse plugin that would collect various software metrics. This plugin would integrate seamlessly in the… IDE and could collect various metrics about a software project/module/function such as… like this? Can you offer any other interesting metrics to collect? How to efficiently collect data on news site Programming Software Development by castajiz_2 …tried to organize myself and my friends in order to collect some relevant information on news sites (information about global …After that, articles would appear and the only way to collect some relevant sentences is to read the whole text or…could tell me how to approach/tackle such problem (efficiently collect data on news site). Is AI worth it? If … Re: Suggestions for software metrics to collect Community Center by Salem > Can you offer any other interesting metrics to collect? The total number of revisions (across all the branches) divided by the age of the file. Use it to find files which are being edited rather more often than they should. This could indicate sloppy design, poor testing, vague requirements etc. Geo Location Data - Collect Using PHP, Store in DB Programming Web Development by mattyd I want to collect basic user information when they land on an index page, … regarding these details, but think it may be easier to collect the same info via PHP. From some sample PHP code… ActiveX or Java program to collect system/hardware information Programming Web Development by DanceInstructor I'm looking for a way to collect hardware/software information from users that visit a site I'… How can i collect and send data from SERIAL and Ethernet port to V.B.? Programming Software Development by nyv19 Hi guys, Do you have any code to collect and send data from serial and ethernet port to V.B.2006? OR do you have any information to help me out to get that? I'll really appreciate your help. Best, How to Collect data from Alexa ? Programming Databases by bill Cook How to Collect data from Alexa ? Where to find a tool or service to Extract Alexa Ranking Data : Website Name, Website URL, Traffic Ranking Number etc. , Save Records to your Database such as MS Access, MS Excel, MySQL etc. How to collect data Digital Media Digital Marketing by sarfrazsama Hi there, I want to collect data of all of the business & industry, who are in touch or planning to come in touch with internet Can you advice me various sources of collecting particular data ? for example : I want to build business portal as similar to Alibaba.com Re: How to collect data Digital Media Digital Marketing by canadafred [QUOTE=sarfrazsama;1103581]...I want to collect data of all of the business & industry...[/QUOTE]Did you try the Yellow Pages? Re: How to collect data Digital Media Digital Marketing by InsightsDigital It depends on what you are planning to use this data for. For example, one good way to collect data is to create a CRM program - or a contact form on your website. How to collect the repeated item in the multimap? Programming Software Development by ztdep … two neighbor cells in the mesh. My mission is to collect all the faces and their neighbor cells from the multimap… How to connect to a Handpunch1000 from vb.net and collect data ? Programming Software Development by elie.karkafy i need to develop a software in which i can connect to a handpunch1000 throug vb.net and collect data , i am using visual studio 2010 any help ? Re: How to connect to a Handpunch1000 from vb.net and collect data ? Programming Software Development by elie.karkafy what you mean by your data , can you give me an example ? if i want to collect a txt file from the handpunch , one more thing the hand punch is connected ethernet throug a converter from serial to network Re: How to connect to a Handpunch1000 from vb.net and collect data ? Programming Software Development by elie.karkafy dunno oussama run this code i am confused a little , my handpunch is connected to a converter that have an ip ( 192.168.1.14) , i want to collect the data from my hand punct throug network Objective C - Collect Input, Check even or odd Programming Software Development by <M/> … I have stumbled onto a problem involving one trying to collect a user's input and checking if it is odd… Re: Collect data from different lines in file Programming Software Development by TrustyTony You can use ordereddict if you want to remember the order of entry. Is your data in sorted like it looks? So you woild end up with ordereddict of dicts/ordereddicts/defaultdict(int) of counts of things. Re: Collect data from different lines in file Programming Software Development by woooee [QUOTE=;][/QUOTE] And you might want to use a tuple for the key, ("man1", "car"), ("man1", "wallet"), etc. as a dictionary of dictionaries gets messy fast. Re: Collect data from different lines in file Programming Software Development by dnyansagar Yes my data is ordered and I don't want to loose that order. OrderedDict worked perfectly fine Thank you... [QUOTE=pyTony;1654692]You can use ordereddict if you want to remember the order of entry. Is your data in sorted like it looks? So you woild end up with ordereddict of dicts/ordereddicts/defaultdict(int) of counts of things.[/QUOTE] Re: Collect data from different lines in file Programming Software Development by TrustyTony If the thread is solved, it is your responsibility to close it. Same time it is also possible to do any up/down voting of answers (optionally giving reputation) if you wish. Re: Collect data from different lines in file Programming Software Development by dnyansagar Hi In similar case if the data is like this Input: man1 car man1 wallet man1 shirt man1 shirt man1 car man1 car man2 truck man2 house man2 jacket man2 jacket man2 jacjet man2 computer output: man1 car(1),wallet(1),shirt(2),car(2) man2 truck(1),house(1),jacket(3),computer(1) like if car… Re: Collect data from different lines in file Programming Software Development by TrustyTony As you got it working, here is my suggestion: [CODE]from operator import itemgetter from itertools import groupby data=''' man1 car man1 wallet man1 shirt man1 shirt man1 car man1 car man2 truck man2 house man2 jacket man2 jacket man2 jacjet man2 computer'''.splitlines() data = [d.split() for d in data if d] data = [(key, [b for a,b in g]) for … Re: Collect data from different lines in file Programming Software Development by dnyansagar Thank you pyTony, But let me explain it, I am working with protein domains, domains can be present at the start of the protein or at the end of the protein. If I take a combined count it would mean they are together which is incorrect. That is the reason I want to take a separate counts. Is there any trick to do this? Re: Collect data from different lines in file Programming Software Development by TrustyTony What you mean, the counts are by first item separately in count dictionaries? See the last line accessing 'man2' info of 'jacket' (2 as one was misspelled). Formatting the output I left to you. What info you are not getting from the dictionary of dictionaries? Maybe you want list of dictionaries instead?