Logo shuffle design jobs

Filter

My recent searches
Filter by:
Budget
to
to
to
Type
Skills
Languages
    Job State
    1,579 logo shuffle design jobs found, pricing in USD

    I NEED TO DESIGN 1 TOOL that can shuffle the characters 1, 2,3,4,5,6,7,8,9 AND A, B, C, D ,,,,, (Capital and uppercase letter),. DEFINITELY WANT TO KNOW THAT ALL THE CHARACTERS WILL BE MIXED. AFTER MIXING AND RESULTS, THE RESULTS WILL BE SAVE AND THEN CONVERT TO MD5 CODE. I WANT WHEN ENTERING A MD5 CODE, IT WILL PROPOSED A FUNCTION INTRODUCTION, STORAGE IN DATA AND SHOULD

    $146 (Avg Bid)
    $146 Avg Bid
    8 bids

    WALK HOME RUN 2 FOUL BALL STOLEN BASE MAKE SOME NOISE NOISE METER SMILE CAM FLEX CAM DANCE CAM KISS CAM HAT SHUFFLE WIN FIREWORKS REPLAY SWIPE WEATHER DELAY 2

    $1500 (Avg Bid)
    $1500 Avg Bid
    1 bids

    I have a cheap Chinese no name brand car audio head unit. I do not like the mp3 player that is in it. Especially the way the shuffle works and it does not play playlists. I am having problems trying to make one for myself. I want it developed in Visual Studio 2019 or Visual Studio 2017 and I want the full source code to make a few changes to it myself. I want the program to be able to find music files anywhere on the device itself and or an external drive. The head unit has 2 USB connectors on it. The current music player on the head unit does find all the music on a thumb drive that I plug into the USB connectors. I am not worried about graphics or visualizations, simple buttons are fine. one screen to show what's playing and second screen to show the songs and or playlists. I...

    $143 (Avg Bid)
    $143 Avg Bid
    3 bids
    $550 Avg Bid
    1 bids

    Project Requirements Overview You will be impleme...program for the server and client side, that is, an application that will process the multiplayer server-client online game that is placed. The program shall operate in the JavaFX. Program Design GameServer: Main JavaFX GUI file. Generate Random 6 digits number as pin. Questions and Results of the Game will appear here. Each Question has 30 sec for attempting. Must show the top 3 players at the end of the game. Player: Must Enter the pin (will be generated on the server side) of the game. Has username, points. Questions: Must read from the .txt file that was chosen by “Choose File” . Shuffle order of the options. Has 2 types of Test questions: Question with 4 options and True/False question. Fill In Ques...

    $350 (Avg Bid)
    $350 Avg Bid
    3 bids

    Kiss Cam Flex Cam Smile Cam Roar Cam Hat Shuffle Win Fireworks

    $1500 (Avg Bid)
    $1500 Avg Bid
    1 bids

    this need...the requirements, we’ve asked for 6 random categories. Unfortunately, the jService API doesn’t have a method that returns a random category — you’ll need to figure this out. There are a few possible strategies here: Get a bunch of categories, and keep randomly choosing one, making sure you don’t choose the same one twice. Get a bunch of categories, shuffle them, then pick the first 6. Unfortunately, Javscript doesn’t have a built-in shuffle function, but you can find hints online on how to make one. Find a function that will pick n random things for you. This is often called “sampling”. There’s a popular library for Javascript, Lodash, which provides a function that can sample a particular number of items fro...

    $160 (Avg Bid)
    $160 Avg Bid
    9 bids

    this need...the requirements, we’ve asked for 6 random categories. Unfortunately, the jService API doesn’t have a method that returns a random category — you’ll need to figure this out. There are a few possible strategies here: Get a bunch of categories, and keep randomly choosing one, making sure you don’t choose the same one twice. Get a bunch of categories, shuffle them, then pick the first 6. Unfortunately, Javscript doesn’t have a built-in shuffle function, but you can find hints online on how to make one. Find a function that will pick n random things for you. This is often called “sampling”. There’s a popular library for Javascript, Lodash, which provides a function that can sample a particular number of items fro...

    $139 (Avg Bid)
    $139 Avg Bid
    9 bids

    Tasks 1 Getting Your Big Data Into the Big Data Environment 2 Data Transformation: Big Data Cleaning and Wrangling 3 Aggregating and Summarizing Data Into Useful Reports 4 Powerful Exploratory Data Analysis with Machine Learning 5 Putting Structure on Big Data and Transformation 6 Immutable Design 7 Avoiding Shuffle and Reducing Operational Expenses 8 Saving Data in the Correct Format 9 Data Visualization: Leveraging the Graph API

    $86 (Avg Bid)
    $86 Avg Bid
    8 bids

    Tasks 1 Getting Your Big Data Into the Big Data Environment 2 Data Transformation: Big Data Cleaning and Wrangling 3 Aggregating and Summarizing Data Into Useful Reports 4 Powerful Exploratory Data Analysis with Machine Learning 5 Putting Structure on Big Data and Transformation 6 Immutable Design 7 Avoiding Shuffle and Reducing Operational Expenses 8 Saving Data in the Correct Format 9 Data Visualization: Leveraging the Graph API

    $103 (Avg Bid)
    $103 Avg Bid
    8 bids

    Hello Naveen, My name is Feras I want to produce an over the counter medication for nasal decongestion. I need you to research all the requirements to make a label ready for production. I also need a logo design for my company named Mist. Then I need you to create the label. I do not know the exact dimensions yet but please make the required content and we can shuffle things around once I get this. Could you please provide me with time you need to complete the project? Thank you, Feras

    $30 / hr (Avg Bid)
    $30 / hr Avg Bid
    1 bids

    The inputs and outputs are written in the enclosed Word file. I would like the program to be written in C or some other lower level language. I believe Python will be too slow. Please shuffle any list before a process modeled to be random.

    $541 (Avg Bid)
    $541 Avg Bid
    30 bids

    ...is the only one that have the copyrights on the shuffle system. Every body can become FREE Member Everybody can only own one account. Everybody earns 5% by beginning when you sign up 3 free approved members you will earn 10%. You will have a sponsorname, by signing up new members you will be their affiliate sponsor forever. This means everything they earn a month you get 5% if you have bring in 3 approved members this will become 10%. If someone sign up without a sponsor the latest sign up member gets the newest latest member as a affiliate member, this way everybody can get a FREE MEMBER under him /her. Building points website; Marketplace. (buying and selling new and second hand products by members) Shuffle systeem. Website explai...

    $5942 (Avg Bid)
    NDA
    $5942 Avg Bid
    42 bids

    # Python Program to shuffle a given array # A function to generate a random permutation of arr[] def randomize (arr, n): # Start from the last element and swap one by one. We don't # need to run for the first element that's why i > 0 for i in range(n-1,0,-1): # Pick a random index from 0 to i j = randint(0,i+1) # Swap arr[i] with the element at random index arr[i],arr[j] = arr[j],arr[i] return arr # Driver program to test above function. arr = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26] n = len(arr) print(randomize(arr, n)) Instead of printing the result on the terminal, I want the results written to a text file (), one array element per record. So there will be 26...

    $24 (Avg Bid)
    $24 Avg Bid
    14 bids

    Hi, me (Mariano) and Joao (freelancer @joaodavidsouza) are starting a project. The poker site would use a new shuffling system involving encryption and participation of the players to shuffle. The currency used would be a new token of ourselves or an existing one like matic for example. The hands would be stored in a blockchain system. The site would be only for tournaments. We are looking for two or three other teammates to develop the project, each one of us will own 25% of the revenue the site brings. I repeat, we look for teammates, not a specific task to be done. There is no payment from us at the moment, we will all work to build the site ans then divide the profits equally. We look someone with expertise in blockchain or in poker sites development. Kind regards

    $20 (Avg Bid)
    $20 Avg Bid
    3 bids

    Take the creek and pond from the completed contest, incorporate those into the game and update/enhance/improve the rest of the graphic elements

    $60 (Avg Bid)
    $60 Avg Bid
    1 bids

    ...discussed here and instead has to guess. Eaach participant has named a word to go with the word in the table (something they associate with the word, so if the word in the table is STARFISH, someone could say ‘beach’. The next person might say ‘creature’ and the next person ‘shape’, for example. If the Pretender is lucky enough to be the 4th person to have to say a word (there should be a random shuffle each time as to who goes first), then he/she has some opportunity to get ideas about what word they could be talking about since he/she has a choice of all the words on the table.. Once each participant has named a word, the moderator asks for discussion, discussion goes on for as long as the moderator allows, 1-2 minutes, then each participant ...

    $17 / hr (Avg Bid)
    $17 / hr Avg Bid
    9 bids

    Hello Kateryna, So this project is a flyer on a new range called the Antler range. A lot of the products you have probably displayed before in another flyer. The draft is rather sketchy I'm sorry, however we don't mind if you shuffle things around within the pages if it is easier to fit it all in I will start by sending through the first 3 pages for you to work on, I will finish the draft of the 4th page today, and sent it through this afternoon if that's okay.

    $120 (Avg Bid)
    $120 Avg Bid
    1 bids

    ... Categories: 1) Guest / Public 2) Students we should be able to create | modify | update categories with its required Images/Icons. Q/A: 1) Can be objective / Fill in the blank / type able. 2) Some question or answer couldn’t be able to type; in that case Question / answer will be uploaded as an Image, which should fit in the page and format. 3) Teacher & Admin should be able to shuffle the Question order and answers order. 4) Q/A should be able to export and import by Admin with its category and other parameter information’s. 5) Teachers & Admin can move Questions to other categories. 6) Content shouldn’t be able to copy by the students. 7) For objective type Q/A answer should be previewed once press next. 8) Marks for question types...

    $580 (Avg Bid)
    $580 Avg Bid
    36 bids

    ... For gym must have: AC, mirrors, 2x Treadmills, 1x Bike, 1x Wieght bench, 1x adjustabable dumbbel, 1x adjustable barbell, 1x Barbell stand For playroom side: AC, pump it up, shuffle board, ping pong, poker table/chairs, 75 inch tv, seating for tv area, display cases to show collectibles (50 of these size figures: ) I want hidden entrance that when you see from the outside the gym, you can not tell there is another room where the playroom is example :

    $156 (Avg Bid)
    $156 Avg Bid
    9 bids

    Hello, We are looking for an experience designer who can design basically the interior and exterior of the house (is about 5000sqf) condominium on a 20,000 sqf lot with about 30 houses total (you would only design my house). You would also need to specify what type of decoration and furniture you used and must be available within my country (Colombia) or can be from amazon (low value less then $200) or alibaba with prices and quantities needed for the space. House would have following: - 5 bed rooms (1 bedroom dedicated to 2 maids) - 3 car garage - Storage room - Machinery room - Gym/Play room - Theater/Studio room - Living Room - Kitchen - Terrace - Infinity Pool - Swimming Deck Patio with covered small dog/cat area - 6 bathrooms - Laundry room Most of the decoration and ...

    $1352 (Avg Bid)
    $1352 Avg Bid
    49 bids

    Hey Freelancers! I've got a business directory website, and I've developed a script that restyles these listing tiles the way I like it. But I'd like to have it done in PHP so that I don't need the script (which causes delays in loading the page, and you can see things moving around). I'm attaching before and after pictures. 'Before' what it displays now, without my script, and 'After' is the goal of what I want it to look like using PHP instead of my script. I'm also attaching the source file for that 'Listings' widget. As this is basically just shuffling things around on the page + creating the div with the green background that kinda highlights the rating (the data for which is already given in current structure), I thin...

    $44 (Avg Bid)
    $44 Avg Bid
    14 bids

    I need someone who can shuffle words and produce in CSV FILE

    $23 (Avg Bid)
    $23 Avg Bid
    4 bids

    I need someone who can shuffle words and produce in CSV FILE

    $27 (Avg Bid)
    $27 Avg Bid
    18 bids

    Hello, I need a demo app/ UX/ UI design for a university project and would like to get some quotes. It's about a training planner for football training and should go in the direction of Freeletics, but not nearly as extensive. Rough structure and design of the app: - Login and landing page - A section where you can create football teams and trainer profiles. Furthermore, you should be able to assign a few parameters to the teams - Favourites section with saved trainings / exercises - Training section: Here you should be able to filter training units with some previously selected parameters. There should also be 12-14 example training units stored here. I will provide some material. - Shuffle/ swipe function: Display training units randomly and swipe to t...

    $549 (Avg Bid)
    $549 Avg Bid
    34 bids

    ...cards) Shuffle the 16 cards Distribute 4 cards amongst players Look at your hand, decide which family you want to collect first, you must have 1 card already from that family A family is a suit (Example: Spade is a suit and father=king mother=queen jack=son ace=grandfather are the family members) Decide which player goes first During your turn you ask for a card, for example, father of hearts Each family member has a designation, father=king mother=queen jack=son ace=grandfather If the player you asked has said card they hand it to you, if they had it then it is still your turn If they do not have, they will say “not at home” and your turn is now over It is now your opponent's turn Whichever player collects the most families first wins Pseudo Code: Define th...

    $154 (Avg Bid)
    $154 Avg Bid
    17 bids

    I want to inquire about developing an app that allows someone to shuffle a deck of cards and then choose a card and get a pre-set reading. I would have to load the readings in the app via my website. There has to be an algorithm that makes sure that users cannot choose the same card twice in 2 months time.

    $1415 (Avg Bid)
    NDA
    $1415 Avg Bid
    42 bids

    Features Online/Offline Music Player Secured API Calls Play, Pause, Next and Previous Options for Songs Repeat and Shuffle Songs Categories, Albums, Artist, Playlists, Local Playlist features for Online Songs Artist wise albums Local Playlist, Albums, Artist, Song list features for Offline Songs Rate your favourite online songs Add to Queue option to add any song to your currently playing queue Share Online Songs(name + app link) and Offline Songs(audio file) Trending Songs and Recent Songs in Home Page Latest Albums and Artist in Home Page Suggest Song and Report Song Can select online mp3 app when playing song from file manager Download and view counts Download your Favourite Song and Share with your friends Downloaded songs can be only played in this app, cannot play in other app...

    $760 (Avg Bid)
    $760 Avg Bid
    7 bids

    ...puzzle. While it is solving, if the user presses Esc key, it stops its solving immediately. You can add more functions creatively. 3. Additional Hint: I found that some students thought the shuffling algorithm too difficult for Assignment 1-1. But the suffling algorithm of Assignments 1-1 and 1-2 is not very difficult. It is neither AI (Artificial Inteligence) nor mathematical. Think how you would shuffle the puzzle and implement your thought way with coding. You need to perform domain analysis (= Number Puzzle game analysis). I shared the binary executable file Puzzle1-2. You can download it and run it on your linux system to see how your program should look like. You can think that it is kind of re-engineering but you can better understand the assignment and its user requireme...

    $56 (Avg Bid)
    $56 Avg Bid
    5 bids

    ...will have a checkbox next to the same with "optimize for social". By checking this box, it would down size an image to be 500 pixels wide, so the "D-Scramble" can properly see the top bar and read the NAME code while on social media. NAME and KEY: The NAME is what is in the barcode at the top of the image. Just using simple barcode font. The KEY is the scramble phrase that generates the random shuffle function to the program. And any people that see the image and don't have the KEY, the plugin can't decode the image. Example, a user created a "D-Scramble" with the name "Larry's car photos". With the KEY: ZOOM. The plugin will needs to have an area to save existing NAMES/KEYS so the program can automatically decode images ...

    $655 (Avg Bid)
    $655 Avg Bid
    21 bids

    ...underlines, loading animations. It needs to feel like the same experience. 2. Add SCM music player (self-hosted) to every page: - playlist: - default grey skin - autoplay on - shuffle on I tried to get this thing to run but failed. The player shows up but it can't play songs. When I add the script to my page it won't let me play them. Autoplay doesn't seem to work at all, SoundCloud songs / playlists neither. Somehow YouTube links did work on the preview website of the dev but not on my own. I want it to shuffle my SoundCloud profile likes or a playlist. I suspect there have been small changes and the code needs a little tweaking to get things right again. It's really important to me that Soundcloud works as that's where all my big playlists

    $211 (Avg Bid)
    $211 Avg Bid
    53 bids

    Problem1 We would like to design a [network packet]() routing system. To do so, we will need to define the system and run a simulation so that we can generate data that will be used for the optimization of design parameters. Our router will be a bit of a simpler system, so do not worry about any specifics you know about ethernet or telecommunications in general. The goal of our router is that it will route packets from devices connected to it through to the internet. We'll parameterize our router so that it can accept $alpha$ packet routing connections at any time. Assume that packets take $beta$ time to be routed through the router. Let's say that each device connected to the router is only willing to wait for up to $gamma$ time for the

    $203 (Avg Bid)
    $203 Avg Bid
    7 bids

    I'd like to build an interface for my Shopify store - the objective i...Shopify: Confirmation email etc Considerations: This project scope only requires the web-app development I will provide Design for the interface Image upload needs resolution check Image loading / page loading needs to be fast Needs logic that calculates number of pages and adjusts price dynamically Please provide itemised quote so i can pull out features if it gets too expensive Not precious on timeline Looking for most cost effective solution Experience must be as easy and fast as possible Only functionality available to the customer should be; upload images, adjust image positioning in the frame, change order of images, delete image If a user deletes an image, all images shuffle out by 1 Platfor...

    $2642 (Avg Bid)
    $2642 Avg Bid
    24 bids

    I need a program that shows pictures with audio (like slides for example) and an option to shuffle them.

    $33 (Avg Bid)
    $33 Avg Bid
    7 bids

    Problem1 We would like to design a [network packet]() routing system. To do so, we will need to define the system and run a simulation so that we can generate data that will be used for the optimization of design parameters. Our router will be a bit of a simpler system, so do not worry about any specifics you know about ethernet or telecommunications in general. The goal of our router is that it will route packets from devices connected to it through to the internet. We'll parameterize our router so that it can accept $alpha$ packet routing connections at any time. Assume that packets take $beta$ time to be routed through the router. Let's say that each device connected to the router is only willing to wait for up to $gamma$ time for the

    $30 (Avg Bid)
    $30 Avg Bid
    1 bids

    ...uniqueidentifier ParentID uniqueidentifier CategoryName nvarchar(max) Please note categories can be HIERARCHICAL, I can have the following simply categories: --- History --- Math --- Sports But I can also have the following categories: --- Home ------ History --------- 1st World War --------- 2st World War ------ Math --------- Algebra ------------ Median algebra ------------ Modern algebra ------------ Shuffle algebra ------ Sports --------- Footbal --------- Baskeball ------------ NBA 2020 ------------ NBA 2021 Levels could be theorically unlimited (pratically I have a max level depth of 15 levels). I also have the following JSON: [ { "CategoryId": "a4ae4b6e-50cf-4058-b456-a26ed165dd39", "QuestionsToExtract": 3 }, { "C...

    $163 (Avg Bid)
    $163 Avg Bid
    12 bids

    I'm looking to get a Filter app created where a card appears on your forehead and when you tap the screen the cards on your head will shuffle and you will get a random card and then you will tap again to get another random card. I want the app to be able to record and take pictures with the filter and also be able to download and share on other social media platforms.

    $656 (Avg Bid)
    $656 Avg Bid
    26 bids

    Hello, I need a CBT online exam system The aim is to deploy it on our subdomain. We have a total of 100 questions but we need to shuffle the 100 questions so that applicants sitting close to each other will have different numbering of questions. Also, the admin will manually generate a username and password for each user so the user can use that on exam day. We can split applicants into morning and afternoon sections depending on the total number due to the space of our computer lab Then, when applicants login to start and finish exam, result will not be displayed to applicants to avoid fear. Admin will be able to login and generate a full score list and other reports

    $220 (Avg Bid)
    $220 Avg Bid
    18 bids

    ...address that in a format below. 1. Format [MP] – [0013] [5590] [Letter#1 Letter#2] - [Number #1] [Number #2] With two-letter prefix (English alphabet) - and 2 sets of 4 numbers. Letter #1: ABDEFGKMNPRSUVWXYZ [18 character available] Letter #2: NPRSUFGKMVWXYZABDE [18 character available] Note: The use of Letter #1 and Letter # must base on the order character set above. It can be change or shuffle the order later. [number #2]: 0000 to 9999 [number #2]: 0000 to 9999 2. Range of the latitude/longitude we will cover only (Laos): -Latitude of 13 Degree North to 23 Degree North OR: 13.00000000 to 23.00000000 (1 billion different numbers) -Longitude of 100degree East to 110 degrees East Or: 100.00000000 to 110.00000000 (1 billion of different number) 3. Resoluti...

    $2636 (Avg Bid)
    NDA
    $2636 Avg Bid
    19 bids

    I'm looking for someone who can create for me an iOS app that shuffles between a set of audio files. The transition must be seamless without any lag between audio files. The app has to have one button to start/stop the player.

    $21 (Avg Bid)
    $21 Avg Bid
    3 bids

    I want an android application similar to the Samsung Music app shown in the screenshots. I want it to load offline music files stored in Android RAW folder only. I want the ability to search music files and also ability to favourite, previous, next, repeat track, shuffle. Also I want notification control of the music player app. Please refer to screenshots for UI interface requirements. Please ask if you are unsure of requirements.

    $230 (Avg Bid)
    $230 Avg Bid
    27 bids

    Hi!! I am Vinit Founder of Real Estate Management company know as Property Shuffle Based in Goregaon Mumbai.

    $87 (Avg Bid)
    $87 Avg Bid
    6 bids

    Very simple music player with big numbers and dark mode for playing up to 65 minutes soundtracks (the soundtracks are songs mix together by a DJ). Will be use by spinning instructors, they have to see the time with big numbers so they can follow the routine that goes with the musique. Features needed : playlists, shuffle mode, playback 15 sec, etc. I've been looking for an app like this for a long time and couldn't find any.

    $212 (Avg Bid)
    $212 Avg Bid
    10 bids

    I want an android application similar to the Samsung Music app shown in the screenshots. I want it to load offline music files stored in raw folder. I want the ability to search music files and also ability to favourite, previous, next, repeat track, shuffle. Also I want notification control of the music player app. Please refer to screenshots for UI interface requirement. Please ask if you are unsure of requirements.

    $73 (Avg Bid)
    $73 Avg Bid
    12 bids

    Wpresidence theme recode My requirements is 1 edit sorting The first 6 properties is featured sorting if shuffle Else is regular and featured and sort is shuffle too for both for all pages (search & categories) 2 replace text for example from 1 to 5 stars with rating stars icon 3 optimize theme speed to be 90+ at gmetrix Need expert sellers please (php, sql , queries) No waste time

    $147 (Avg Bid)
    $147 Avg Bid
    29 bids

    Php Shuffle 10 words and display 5

    PHP
    $14 (Avg Bid)
    $14 Avg Bid
    20 bids

    I have a food delevery app built on Flutter i need to change few things in it bur i want to kickstart work right away

    $12 / hr (Avg Bid)
    $12 / hr Avg Bid
    16 bids

    ...be highly customisable to make changes as per requirement. With neat and professional coding standards. Later can be extended to mobile application Developer should deliver it with full source code and with all rights. Must be a robust platform should comply w3c standards and also Security standards. Must fix bugs and issues reported by Tester & Security Analyst Required features • Responsive Design • Admin Dashboard • Instructor Dashboard • Student Dashboard • Zoom Integration for Meetings • Multiple Instructor • Device Control • Payment Gateway integration • Player Settings • Allow Cookies • Free Courses • Private courses • Featured Categories • Secured Cart System • Site Settings • Automated...

    $1260 (Avg Bid)
    $1260 Avg Bid
    26 bids

    I'm looking for an experienced mobile app developer who can add a playlist feature to the existing Android/IOS app. Basically, it gets the audio list from the server and you can add audios to playlist. You are required to implement a playlist feature with play, shuffle, and random functionalities. The screen is attached below. As this is an urgent job, someone who can be available within the next 1 or 2 days would be preferred. Add some previous work related to a music app in your proposal

    $218 (Avg Bid)
    $218 Avg Bid
    12 bids

    ...website (custom theme) and I need help for adding ajax-functionality in combination with (). So I need a Wordpress expert who is familiar with wordpress custom theming and advanced skills in PHP and JavaScript. 1) When clicking on a button "change tags" I would like to load new tags and photos (connected with the tags) with ajax. In this case the current tags would be replaced by the new loaded tags and all the current photos removed from the list. 2) For the tags and revealing the photos I am using shuffle.js. I would like to prepend photos when clicking a tag like in this example: At the moment I load all the photos and the sorting is just as it comes from the data base… If you think you can

    $24 / hr (Avg Bid)
    $24 / hr Avg Bid
    51 bids