Polling threadproiecte

Filtrare

Căutările mele recente
Filtrează în funcție de:
Buget
la
la
la
Tip
Aptitudini
Limbi
    Starea proiectului
    2,000 polling thread proiecte găsite, la prețul de USD

    I need a web ...suggestion by name linked to google maps - add keywords/tags that are linked to the location - rating for (service, cleaniliness, food, ammenities) Front site/index will list all locations sortable by state, city (rating) and total number of reviews. Each site will have brief summary individual page, rating summary, most frequent tags/keywords, details of reviews. Each review item should have a thread where people can post comment and responses. Also Like button which is used to sort reviews. Ok to use css frontend, would love some sort of ajax integration to help reduce loading of unnecessary html, however do not want it to be heavy. Clean css design without graphics. Need this fairly quickly and those with fast turn around and good reference will be awarded ac...

    $378 (Avg Bid)
    $378 Oferta medie
    43 oferte

    All the below mentioned services are required in my newly launched website and a shared hosting plan. My website is very new but ...lagging and overloading broken links and dumped files database crash database optimization software version upgrade if required Minimize redirects avoid bad request avoid landing page requests minimize request size CSS in the document head / combine external CSS Fewer HTTP requests Server Side optimization Minify HTML Minify CSS Minify JavaScript Avoid chaining critical requests shorten long main-thread tasks scale down network payloads Leverage browser caching Defer parsing of JavaScript and CSS Optimize images Serve scaled images Enable gzip compression render-blocking js and css above the fold contents Suggest or give me a CDN or at least On-page SEO...

    $16 (Avg Bid)
    $16 Oferta medie
    8 oferte
    Design my discord server S-a încheiat left

    I want you to design my discord channel professionally. Its a community server like edgy and daddy. I want: Announcement channels Welcomer w/custom background image Anti-Raid System Verification System [Reaction role / Captcha] Ticket Syste...[Reaction role / Captcha] Ticket System Custom Embed posts Giveaway System Auto Twitter/Reddit feeds Auto Youtube/Twitch notifications Custom Reaction Roles Starboard System Level System Invites Tracker Themed Emojis Music System Partnership/Sever-listing System AFK Separator VC Join to create custom VCs Gatekeeper Auto server-security Deleted message log Auto Fortnite Itemshop posting Member counter Polling system Custom Color roles Server backup/Cloning Auto game updates Voice channel logging Bot Games and other things that'll make my di...

    $14 (Avg Bid)
    $14 Oferta medie
    23 oferte

    My business involves being a middle-man proxy reseller and we would like to establish a reverse proxy server that includes: - User management (create sub-users) - Assigning packages to users (bandwidth allocation incl. data usage tracking, data capping, thread limiting, custom plan duration) - Retrieval of user, package details including remaining data, expiration date etc - Logging requests (URL, client IP, proxy IP, date-time, request size, user) - Custom IP and domain access blacklisting - IP authentication | User:pass authentication - HTTP(S)/SOCKS5 proxy

    $1375 (Avg Bid)
    $1375 Oferta medie
    3 oferte
    Project for Md. Kamrul H. S-a încheiat left

    Hi Kamrul, I am needing you to reorganize the wordage on the CD artwork. Please see the message thread and thank you. -Mark

    $15 (Avg Bid)
    $15 Oferta medie
    1 oferte
    java thread creation -- 2 S-a încheiat left

    java thread creation Part 1: Thread creation Part 2: Synchronization Part 3: Interrupt handling

    $29 (Avg Bid)
    $29 Oferta medie
    4 oferte
    Java example S-a încheiat left

    ...be developed using Java. Part 1: Thread creation (30%) a. Using Java multithreading library, write a Java program that calculates the sum of the numbers from 1 to 100,000,000. Split the numbers between four threads equally where each thread calculates the sum of one fourth of the numbers. For example, the 1st thread will calculate the sum of the numbers from 1 to 25,000,000 whereas the 2nd thread will calculate the sum of the numbers from 25,000,001 to 50,000,000 and so forth. The main thread will have to print out the sum after gathering the results. Note that you have the choice to create threads by either implementing Runnable interface or extending Thread class. b. Now, write a sequential version of the program described above using a single...

    $103 (Avg Bid)
    $103 Oferta medie
    4 oferte
    Java java11 S-a încheiat left

    ...be developed using Java. Part 1: Thread creation (30%) a. Using Java multithreading library, write a Java program that calculates the sum of the numbers from 1 to 100,000,000. Split the numbers between four threads equally where each thread calculates the sum of one fourth of the numbers. For example, the 1st thread will calculate the sum of the numbers from 1 to 25,000,000 whereas the 2nd thread will calculate the sum of the numbers from 25,000,001 to 50,000,000 and so forth. The main thread will have to print out the sum after gathering the results. Note that you have the choice to create threads by either implementing Runnable interface or extending Thread class. b. Now, write a sequential version of the program described above using a single...

    $36 (Avg Bid)
    $36 Oferta medie
    5 oferte
    Project for Arumugam P. S-a încheiat left

    Hi Arumugam P., I cancled the milestone by mistake and can not send you any message. this is what they write to me when I try to contact you " Unfortunately, you are not allowed to send a message to this thread."

    $150 (Avg Bid)
    $150 Oferta medie
    1 oferte
    java thread creation S-a încheiat left

    Thread creation a. Using Java multithreading library, write a Java program that calculates the sum of the numbers from 1 to 100,000,000. Split the numbers between four threads equally where each thread calculates the sum of one fourth of the numbers. For example, the 1st thread will calculate the sum of the numbers from 1 to 25,000,000 whereas the 2nd thread will calculate the sum of the numbers from 25,000,001 to 50,000,000 and so forth. The main thread will have to print out the sum after gathering the results. Note that you have the choice to create threads by either implementing Runnable interface or extending Thread class. b. Now, write a sequential version of the program described above using a single main thread (i.e., without multit...

    $34 (Avg Bid)
    $34 Oferta medie
    8 oferte
    Multithreading in java S-a încheiat left

    Multithreading Experiment. Requests you to use multiple thread to perform matrix production, C = A * B, Where A is a 10 x 200 matrix, B is a 200 X 8 matrix, and the result C is 10 x 8 matrix. Implement the followings: (1) Initialize A with value from 1 to 2000, in row-major order (that is, one row by one row). (2) Initialize B with value from 1600 to 1, in row-major order (that is, one row by one row). (3) Create 10 threads: T1, T2, …, T10. T1 performs the product for row1 and A and matrix B, and the result will be save to row1 of matrix C, T2 performs the product for row2 and A and matrix B, and the result will be save to row2 of matrix C, …, T10 performs the product for row10 and A and matrix B, and the result will be save to row10 of matrix C. (4) T1, T2, ...

    $42 (Avg Bid)
    $42 Oferta medie
    9 oferte
    Community Manager S-a încheiat left

    ...at least monthly to meet minimum standards without any expectation for growth. PHASE II: You will serve as a moderator and liaison on Discord with the requirement to protect the privacy of corporate roles and enable the community to self-manage within the rules as much as possible. This can occasionally become analogous to acting as a press secretary, but most of the time the role involves polling feedback, fostering discussion, event planning, and get-out-the-vote messaging. PHASE III: Your role will expand to website related duties such as recruiting writers for the site, adding games and images to the site's back end content management system, and managing the homepage slideshow. PHASE IV: You may have the opportunity to handle outreach to journalists based on ...

    $1004 (Avg Bid)
    $1004 Oferta medie
    12 oferte
    Trophy icon Dine Gardiner S-a încheiat left

    Logo: Brand name: Sara Dahl (NOT Dine Gardiner - that is just the project name) Make bespoke curtains for the top end of the market in Oslo, Norway. We supply the textiles and the hardware for hanging curtains and blinds. Our curtains are hand-sewn. I go out to customers to give advice, measure up etc. Our curtains are top quality and of a style not common in the Norwegian mark...customer base is predominantly women 30-40ish, often with family. I also get lots of pregnant women. There is the occasional man that needs help and usually requires tight hand-holding. We do very little corporate work (some but not much). We have one or two exclusive customers including the Royal Palace and associated residences. What more can I tell you? DON'T give me a drawing of a needle and thread...

    $100 (Avg Bid)
    Garantat
    $100
    279 intrări
    Project for Sohaib H. S-a încheiat left

    Did you see my project? I cannot chat you on the thread

    $165 (Avg Bid)
    $165 Oferta medie
    1 oferte
    Trophy icon Logo Design S-a încheiat left

    Design a logo for The Luxury Thread. This is a luxury brand selling satin pillowcases. I have attached some examples of styles that I like. Use this for inspiration. Please design and do not add on wall or business cards. Use white background :) Logo : The Luxury Thread Colour options: Soft Pink & White or Gold & Grey Once chosen will require the logo for instagram profile pic, pdf files and all other file types.

    $10 (Avg Bid)
    Garantat
    $10
    297 intrări

    ...discs) Retail sale of sports apparel and equipment (including bicycles, boats and healthcare equipment) Retail sale of games and toys Retail sale of clothing for adults Retail sale of children and infants’ clothing (including products and accessories for infants) Retail sale of footwear Retail sale of bags, luggage and travel accessories Retail sale of sewing and clothing accessories (eg button, thread, lace, zip, belt, tie) Retail sale of clothing, footwear and leather articles n.e.c. Retail sale of cosmetics and toiletries (including skin care products) Pharmacies and drug stores (Western) Chinese medicine shops Retail sale of pharmaceutical and medical goods n.e.c. Retail sale of jewellery made from precious metals and stones Retail sale of costume jewellery Retail sale ...

    $107 (Avg Bid)
    $107 Oferta medie
    22 oferte

    I have a functioning Google script which moves rows between a target tab to a designated destination tab (all in the same sheet) based on a dropdown value in the target tab. The code functions well, however, when the values are copied from one tab to another, it is copied "values only", that means that cells containing formu...cells containing formulas are either not copies or what is copied is only the results of the formula and not the formula itself. What I need is to change the code so when the rows are being copied, the data copied will contain not only the values in the cells of target tab but also the formulas in those cells. The functioning Google script needing change is here: Deliverables A functioning Google script.

    $20 (Avg Bid)
    $20 Oferta medie
    3 oferte

    Looking at someone to Create a Voting and Polling website using AWS. The results of the poll need to be accessible via API for other usage.

    $567 (Avg Bid)
    $567 Oferta medie
    11 oferte
    Trophy icon Logo Design S-a încheiat left

    We are seeking a logo design for website Cotton'N Thread There are only 3 requirements for this design: FIRST REQUIREMENT: We need TWO VERSIONS - 1 version with only Cotton N Thread AND 1 version with .com at the end SECOND REQUIREMENT: We need a cotton graphic in the logo, maybe as one of the 'O's in the word Cotton? Maybe another way to incorporate it? THIRD REQUIREMENT: We need a needle icon or needle with thread graphic in the logo We are including some images for reference only, please feel free to be creative and do ANYTHING you feel looks best

    $100 (Avg Bid)
    Recomandat Urgent Garantat Sigilat Concurs de top
    $100
    978 intrări

    ...be muxed with an audio stream which will be available on another usb port via a usb mic. This muxing needs to be accurate so that there is good lip sync between the video and the audio. The titles and scrolling text can be taken by making an http request which will return the required parameters in json fomrat. These can change at any time during the live streaming and hence you need to keep polling the http server to see if anything has changed - or use websockets etc to get this information. Even the rtmp server where the output stream is being sent to can change mid stream like the textual content. We should be able to set the positions of these elements like the logo x,y position, and the title text x,y position and the ticker x,y coordinates in the settings area of the ap...

    $62 (Avg Bid)
    $62 Oferta medie
    2 oferte

    ...need to have it returned.*** I am interested in having a firearm muzzle device adapter manufactured and am in need of a 3D CAD model that can be translated to technical drawings of a currently in production muzzle device from a prominent suppressor manufacturer. Additionally, I am in need of a 3D CAD model that can be translated to technical drawings of the adapter that I wish to create that is thread and taper compatible with the muzzle device in question. The idea is that the muzzle device would screw into the adapter and the taper on the muzzle device seen in the pictures below seals against the inner wall of the adapter. I have included a rudimentary adapter 3D model that is similar to what I am looking to produce (sorry my skills in CAD are very limited). The inside thr...

    $150 (Avg Bid)
    $150 Oferta medie
    15 oferte

    Firmware development required for SoC Fullhan FH8852. You must use RT-Thread. Experience with this SoC is a must. If you haven't worked with this chip before, please don't waste time.

    $15 - $25 / hr
    $15 - $25 / hr
    0 oferte
    smtp checker wit proxy S-a încheiat left

    hello tools like that i have 2 list first list = lost tow = inside list () like that server|username|password|port inside list of proxy (http,https) tools start wit thread (member can choose thread ) after running program checking smtp which user and password True save which is bad save i have inside 1000 line inside proxy 200 line server after50 request block ip we must use for random proxy for request

    $180 (Avg Bid)
    $180 Oferta medie
    5 oferte

    Now i have a fivem server have 90up player online same time but the server thread hitch and the query time too high. that forced me to limit the player limit to 90. i want some one to help me optimization the server script ( not client ) please tell me your experience. ty

    $175 (Avg Bid)
    $175 Oferta medie
    2 oferte
    E-mail thread S-a încheiat left

    We would like to ask you to write 3 e-mails for our letters thread. NO long reads, native English speakers ONLY, thank you.

    $26 (Avg Bid)
    $26 Oferta medie
    14 oferte

    ...Warehouse Management System should be able to assign his products for sales Amazon Seller. This should be done via. existing API 2. New Order: When buyer purchase any of the Seller products from Amazon portal, our WMS will receive an order information alert. The application would group all the orders and send them to Warehouse for delivery 3. Order Cancelation: The StoreQuik platform shall keep on polling for the order update from Amazon eCommerce Platform and when it receive the order status as “Canceled”, the platform creates a return receipt and wait for product to return back to warehouse. There are two types of cancelation: Standard cancelation and Non-standard cancelation. Standard cancelation is something initiated by seller from Amazon Seller portal. Non-s...

    $746 (Avg Bid)
    $746 Oferta medie
    6 oferte
    Linguagem C e C++ S-a încheiat left

    Trata-se da implementação do Problema do Produtor-Consumidor, usando PThreads e Semáforos. Devem completar o código para torná-lo funcional. Há mais instruções no próprio código. Observações: - O código está preparado para trabalhar com um único Thread Produtor e um único Thread Consumidor. Essa implementação funcional e correta e permita o usuário informar quantos threads de cada tipo ele deseja.

    $40 (Avg Bid)
    $40 Oferta medie
    1 oferte
    java programmer S-a încheiat left

    a. Using Java multithreading library, write a Java program that calculates the sum of the numbers from 1 to 100,000,000. Split the numbers between four threads equally where each thread calculates the sum of one fourth of the numbers. For example, the 1st thread will calculate the sum of the numbers from 1 to 25,000,000 whereas the 2nd thread will calculate the sum of the numbers from 25,000,001 to 50,000,000 and so forth. The main thread will have to print out the sum after gathering the results. Note that you have the choice to create threads by either implementing Runnable interface or extending Thread class.

    $97 (Avg Bid)
    $97 Oferta medie
    10 oferte

    I need an Android app. I would like it designed and built.

    $485 (Avg Bid)
    $485 Oferta medie
    13 oferte

    I need a smart thread pool example written in c# winforms that shows it's basic implementations like: creating the pool adding thread item cancelling thread retrying thread enqueuing thread when pool is still running You can use list view control+context menu and buttons to do above functions on thread pool. Thanks

    $26 (Avg Bid)
    $26 Oferta medie
    3 oferte

    I need a smart thread pool example written in c# winforms that shows it's basic implementations like: creating the pool adding thread item cancelling thread retrying thread enqueuing thread when pool is still running You can use list view control+context menu and buttons to do above functions on thread pool. Thanks

    $26 (Avg Bid)
    $26 Oferta medie
    3 oferte
    Trophy icon Logo for kid's crafts S-a încheiat left

    Looking for a fun whimsical logo for "Sew Beautiful by H&S" This is for kid's crafts. I'm thinking something with a needle and thread. Christmas colors would be fantastic. This is for a kids craft so nothing "corporate" please. It should be fun.

    $20 (Avg Bid)
    Garantat
    java micro app S-a încheiat left

    1: Thread creation (30%) a. Using Java multithreading library, write a Java program that calculates the sum of the numbers from 1 to 100,000,000. Split the numbers between four threads equally where each thread calculates the sum of one fourth of the numbers. For example, the 1st thread will calculate the sum of the numbers from 1 to 25,000,000 whereas the 2nd thread will calculate the sum of the numbers from 25,000,001 to 50,000,000 and so forth. The main thread will have to print out the sum after gathering the results. Note that you have the choice to create threads by either implementing Runnable interface or extending Thread class. b. Now, write a sequential version of the program described above using a single main thread (i.e., ...

    $36 (Avg Bid)
    $36 Oferta medie
    8 oferte
    Christmas 2020 S-a încheiat left

    I need two designs made. 1) Logo - This is for a speech I am giving. The title is "Thread" I need a five color ribbon overlayed on the open pages of a book. The colors of the ribbon are Green, Red, Purple, White and Gold. 2) Postcard - which uses the logo above and the wording states "Christmas 2020: Receive a blessing. Be a blessing to others." I would like this to be more formal than whimsical. Looking for creativity

    $42 (Avg Bid)
    $42 Oferta medie
    56 oferte

    Hi, I need you to create a special version of MessageBox in C/C++ that will close automaticall...create MessageBoxTimed with these parameters? int seconds; seconds = 10; MessageBoxTimed( NULL, buffer, "Connection Status", MB_OK, seconds ); Here is an outline of the code that will achieve this, but you can do it any way that works. Create a Messagebox by applying its caption for Example ::Messagebox(hWnd,"TEXT","YOURTITLE",MB_OK); Now from other thread find window like HWND hWnd = ::FindWindow(NULL,"YOURTITLE"); if(hWnd) { ::PostMessage(hWnd,WM_CLOSE,0,0); } I am using the code to create a .dll. For the first milestone you will give me your code so I can make sure it works. It MUST compile usi...

    $170 (Avg Bid)
    $170 Oferta medie
    8 oferte

    I need a skilled freelancer to write an attractive sales script about my service

    $72 (Avg Bid)
    $72 Oferta medie
    15 oferte

    ...route colored threads need to take in order to represent the picture with strings. 3)The route should then be given to a CNC-machine for fabrication, alternatively as a rendering for the different colored strings, in pdf or some other format. 4) If possible, some tweakable parameters, such as removing/adding certain nails/regions (for example background around a person), increase contrast, adjust thread width, amount of detail I have several ideas for how to accomplish this: Nail placement: Using an algorithm called Superpixel to segment the picture into small homogeneous regions and put nails into where different regions meet. The algorithm is described here: , with a library here:

    $2529 (Avg Bid)
    $2529 Oferta medie
    19 oferte

    Hi Erica Lorraine D., I’d like to hire you to complete smart brave and kind artwork as we agreed in the thread. 31 Images at 5 dollars an image.

    $103 (Avg Bid)
    $103 Oferta medie
    1 oferte

    “The question, I suspect, is not whether many who moved to a city for work will head home to smaller towns and...post-COVID-19? Are you critical about the role of cities now? Do you believe cities will lose their attractiveness and therefore keep people from moving back? Or do you believe that cities have the strength and resilience to eventually overcome the challenges caused by the pandemic?  Similar to the first Discussion, once you’ve posted your response, you must also reply to at least one person’s thread with a critical question or comment about their post. The key word here is critical – be kind and respectful but don’t be concerned about questioning someone’s discussion (questioning and defending your argument is one o...

    $11 (Avg Bid)
    $11 Oferta medie
    1 oferte

    register in english language forums and websites and publish articles i have forums and websites besides articles i will send you 100 forums and websites and register in them and i will send 15 articles to you to publish them 100 forums * 15 articles = 1500 post = 100 $ websites and forums on these links

    $94 (Avg Bid)
    $94 Oferta medie
    10 oferte
    threadmill S-a încheiat left

    Need a threadmill program 1.125-12 thread .620" deep.

    $85 (Avg Bid)
    $85 Oferta medie
    5 oferte

    ...LinkedHashMap, Hashtable, Iterator and ListIterator, Comparable and Comparator) 3. Modifiers in java (Class level modifiers, member level modifiers, Public, Private, Protected, Default, Final, Abstract, Static, Synchronized, Native, Strictfop, Transient, volatile) 4. Concurrency or Multithreading in java (Concept → concurrency, threads, multithreading, classes hierarchy, Why multithreading, Working with Thread objects, Synchronization, Deadlock, Complete java memory model → Atomic + volatile variables, Executor, ThreadPool) 5. Java generics (Concept - what and need, Generic class and methods, generic types, Bounded generics, Wild cards, Type erasure) 6. Interfaces This content will be part of already existing course. What are we looking for? We are looking for technic...

    $230 (Avg Bid)
    $230 Oferta medie
    4 oferte
    java code S-a încheiat left

    Using Java multithreading library, write a Java program that calculates the sum of the numbers from 1 to 100,000,000. Split the numbers between four threads equally where each thread calculates the sum of one fourth of the numbers

    $95 (Avg Bid)
    $95 Oferta medie
    12 oferte

    looking for someone or solid service that can scrape list of asins on amazon with lot of data (not only price and stock but also for example seller rating and seller number of reviews) scraper must be able to process 1-2k product in paralell , about 5-10millions products 5-6 times a day. it will be built in python and will integrate with our workflow. looking for someone experienced with amazon scraping in high volumes, dont bother to send me if you have no experience with python and scrapping, confirmed and experienced people only ! READ REQUIREMENT: senior python senior concurrency and multi threading senior scraping, proxy, captcha dm me for details BUDGET max is 500$ not negotiable

    $500 (Avg Bid)
    $500 Oferta medie
    2 oferte

    ...which will implement a multi-threaded scheduling simulator. He/she will implement N threads simulating N processes. Where N can be up to thread of this kind is referred to as a PS thread (process Thread with simulator). A process passes through a cpu-burst / io-burst loop several times throughout its lifetime. This action will be simulated by a PS line. A scheduling and executor thread, called the SE thread, will also be available that will simulate the scheduling and execution of these processes' cpu bursts. Thus, with N+1 threads, your program will run. If you wish, the main thread of your program may be used to play the function of the SE thread. N will be less and equal than 5. It should be implemented using POSIX threads (pth...

    $156 (Avg Bid)
    $156 Oferta medie
    5 oferte
    Bethanie Fire Tanks S-a încheiat left

    Need Finite element Von Mises Stress analysis to be carried out on bolted panel tank. 3D DWG model attached. Poissons Ration 0.3, 2.9mm thick Pane...stress 247.50 MPa. Liquid can be full in both partitions (case 1) or empty left side (case 2) or empty right side (case 3). No wind loads or earthquake loads to be considered. Roof is solid 2.0mm steel panel bolted all round to walls. Joints between panels are bolted at 75mm centres. Horizontal Stiffener braces at two heights bolted to panels joints and centre of panel. Pairs of M16 horizontal all-thread tie rods at one level through tank. Bottom corners of panels stiffened with 2.00mm corner stiffening brackets. External corners of panels bolted together with 2.90mm corner angles 100x100x2.9mm Each case need stress distribution and de...

    $310 (Avg Bid)
    $310 Oferta medie
    12 oferte

    A previous fully working Httpwebrequest poster for phpBB which now upgraded to 3.2 on my forum and its stopped working. I have used fiddler to see what has changed and now the login requires the creation and form token in the request. I have changed this to suit but it's not logging in. The project also has a new thread, post on existing and pm but I don't need this looked at yet. This is written in vb.net and will likely take 15minutes or so to sort. I'm just up to my head in other work and dont have the time or a great deal of experience with web manipulation.

    $21 / hr (Avg Bid)
    $21 / hr Oferta medie
    6 oferte
    business card design S-a încheiat left

    i want a design for a business card on the front i want (Needle and Thread) to be written in white on a black backround and slightly under it (we suit you) and at the very bottom The Dubai Mall Fashion Avenue on the other side of the card i want the facebook instagram and cell numbers written also in white on a black backround

    $29 (Avg Bid)
    $29 Oferta medie
    59 oferte

    We currently are looking to hire more resources for a full time roles. Need help debug and further developers our Web App. The application is a custom developed market place for various vendors to sell used and new car parts. Must to have experience in the below technology set: * Node.js (with worker thread and node cluster experience) * PHP Laravel framework * PostgreSQL * STRIPE Extensive knowledge of payments API (we are utilizing Connect Platforms & Marketplace module) * MS SQL Server * NGINX (experience with load balancing and reverse proxy) * Digital Ocean or AWS or any other cloud web-services platform experience. We currently use Digital Ocean. * CentOS 8 Linux, shell scripting and Cron Jobs. * Lets Encrypt SSL. * Docker Container and Kubernetes. * Custom HTML, CSS, J...

    $8 / hr (Avg Bid)
    $8 / hr Oferta medie
    14 oferte