Bitcoin Forum
May 13, 2024, 07:53:36 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 [2]  All
  Print  
Author Topic: Need a C/MIPS programmer [$300 for an one hour]  (Read 582 times)
NeedACcoder (OP)
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile
April 18, 2019, 10:59:36 PM
 #21

I'm currently in escrow with someone on this. Commenting just in case the deal falls through
1715630016
Hero Member
*
Offline Offline

Posts: 1715630016

View Profile Personal Message (Offline)

Ignore
1715630016
Reply with quote  #2

1715630016
Report to moderator
"Your bitcoin is secured in a way that is physically impossible for others to access, no matter for what reason, no matter how good the excuse, no matter a majority of miners, no matter what." -- Greg Maxwell
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
NeedACcoder (OP)
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile
April 30, 2019, 09:12:12 PM
 #22

Still looking. Same proposal different needs at the moment
NeedACcoder (OP)
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile
May 02, 2019, 05:12:33 AM
 #23

Still looking, open to offers
NeedACcoder (OP)
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile
May 03, 2019, 05:03:38 PM
 #24

I've had multiple people message me, but still no dice.
LoyceV
Legendary
*
Offline Offline

Activity: 3304
Merit: 16655


Thick-Skinned Gang Leader and Golden Feather 2021


View Profile WWW
May 03, 2019, 05:06:53 PM
 #25

Still looking, open to offers
Since you've been looking for this for a month now: can you explain a bit what exactly you need?

Patatas
Legendary
*
Offline Offline

Activity: 1750
Merit: 1115

Providing AI/ChatGpt Services - PM!


View Profile
May 03, 2019, 10:39:27 PM
 #26

Still looking, open to offers
Since you've been looking for this for a month now: can you explain a bit what exactly you need?
My usual assumption on threads like this is: Shady Activities.

I don't see any harm in providing a little technical background about the issue. It will also help OP find the right developers, unlike the ones who backed out after getting to know the challenge.
NeedACcoder (OP)
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile
May 04, 2019, 04:02:26 PM
 #27

Still looking, open to offers
Since you've been looking for this for a month now: can you explain a bit what exactly you need?

I was looking for different things a month ago. Now, I am looking for someone to create a doomsday algorithm on MIPS/C
sdp
Sr. Member
****
Offline Offline

Activity: 469
Merit: 281



View Profile WWW
May 05, 2019, 12:58:45 AM
Merited by LoyceV (1)
 #28

Here is what the user wanted but implemented in C++.  If he still wants me to do it in MIPS, then he will fund the escrow.

#include <iostream>
#include <sstream>
#include <string>
using namespace std;

enum weekday { Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday };
weekday anchor_table[22] = {Sunday, Sunday,    Sunday,  Sunday, Sunday, Sunday,
                            Sunday, Sunday,    Sunday,  Sunday, Sunday, Sunday,
                            Sunday, Sunday,    Sunday,  Sunday, Sunday, Sunday,
                            Friday, Wednesday, Tuesday, Sunday};
const string weekday_names[7] = {"Sunday",   "Monday", "Tuesday", "Wednesday",
                                 "Thursday", "Friday", "Saturday"};

ostream &operator<<(ostream &out, const weekday w) {
  return out << weekday_names[w % 7];
}

int main() {
  char buffer[30];
  int year;

  cout << "Enter year:" << flush;
  cin.getline(buffer, 30);
  istringstream iin(buffer);
  iin >> year;
  int a = (year % 100) / 12;
  int b = (year % 100) % 12;
  int c = b / 4;
  int d = a + b + c;
  cout << "Doomsday : " << (weekday)((d + anchor_table[year / 100]) % 7)
       << endl;
  return 0;
}


Coinsbank: Left money in their costodial wallet for my signature.  Then they kept the money.
NeedACcoder (OP)
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile
May 05, 2019, 10:57:43 PM
 #29

Here is what the user wanted but implemented in C++.  If he still wants me to do it in MIPS, then he will fund the escrow.

#include <iostream>
#include <sstream>
#include <string>
using namespace std;

enum weekday { Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday };
weekday anchor_table[22] = {Sunday, Sunday,    Sunday,  Sunday, Sunday, Sunday,
                            Sunday, Sunday,    Sunday,  Sunday, Sunday, Sunday,
                            Sunday, Sunday,    Sunday,  Sunday, Sunday, Sunday,
                            Friday, Wednesday, Tuesday, Sunday};
const string weekday_names[7] = {"Sunday",   "Monday", "Tuesday", "Wednesday",
                                 "Thursday", "Friday", "Saturday"};

ostream &operator<<(ostream &out, const weekday w) {
  return out << weekday_names[w % 7];
}

int main() {
  char buffer[30];
  int year;

  cout << "Enter year:" << flush;
  cin.getline(buffer, 30);
  istringstream iin(buffer);
  iin >> year;
  int a = (year % 100) / 12;
  int b = (year % 100) % 12;
  int c = b / 4;
  int d = a + b + c;
  cout << "Doomsday : " << (weekday)((d + anchor_table[year / 100]) % 7)
       << endl;
  return 0;
}





Escrow has been funded for the last 10 hours.
Pages: « 1 [2]  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!