Bitcoin Forum
June 21, 2024, 11:20:34 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 4 5 »
1  Economy / Services / Re: ANSWER SIMPLE MONGODB QUESTION: GET 0.05 BITCOINS :) [closed I think we got it] on: July 05, 2016, 02:05:20 AM
Alright, problem solved in a sketchy way.  Data is inputted this way:

Code:
function insertEvent(topic,payload) {  
  var key=topic.replace(deviceRoot,'');
  console.log(payload);
  collection.update( 
  { _id:key },
  { $push:   { value:String(payload), when:new Date()  }  },
  { upsert:true },
  function(err,docs) {
    if(err) { console.log("Insert fail"); } // Improve error handling
  }
  )
}

which gives
Code:
   "_id" : device01
   "temp" :[ 33.2,
34

]
   "when" : [
                ISODate("2016-07-05T01:42:38.314Z"),
                ISODate("2016-07-05T01:42:43.631Z"),
                ISODate("2016-07-05T01:42:48.964Z"),
}

which can be used sketchily with
Code:
 var resultArray=[];
    mongo.connect(url, function(err, db) {
    var cursor = db.collection('test_mqtt').find({"_id":"arduino01"},{"value":1,"_id":0});
         cursor.forEach(function(doc, err) {
         resultArray.push(doc.value);
}, function() {
  db.close();
  console.log(resultArray[0]);


but Lavender, I'll tip for pointing me in the right direction by saying it was impossible Smiley  PM me your address (apparently btc is burning a hole in my hdd)
2  Economy / Services / Re: ANSWER SIMPLE MONGODB QUESTION: GET 0.05 BITCOINS :) on: July 05, 2016, 01:38:44 AM
I've been trying to save the data using,  
Code:
collection.update(  
  { _id:key },
  { $push:  { event: { value:String(payload), when:new Date() } }  },
  { upsert:true },
but maybe that's not the right way to go?  maybe some sort of nonformatted list is better............

changing it to not have events does give a better format I think

Code:
        "_id" : "device01",
        "value" : [
                "36.00",
                "23.60"
        ],
        "when" : [
                ISODate("2016-07-05T01:42:38.314Z"),
                ISODate("2016-07-05T01:42:43.631Z")
        ]
3  Economy / Services / Re: ANSWER SIMPLE MONGODB QUESTION: GET 0.05 BITCOINS :) on: July 05, 2016, 01:34:40 AM
If this helps any, I also tried

Code:
 var resultArray=[];
    mongo.connect(url, function(err, db) {
    var cursor = db.collection('test_mqtt').find({"_id":"arduino01"},{"event.value":1,"_id":0});
         cursor.forEach(function(doc, err) {
         resultArray.push(doc.event);
}, function() {
  db.close();
  console.log(resultArray);
 
});

but the array isn't right.   I need to be able to grab (for only the device I want) a plain array of temperature values and a plain array for time values for a specified sensor.......and that's in some weird object format.   

and here i stuck as well.. sorry dude, but i thought it will be easiest. It looks like i'm out for tonight. I hope @grimo007 will find out what is going on Wink

Good luck guys!

Alright, thanks for trying to help Smiley. Maybe this is impossible, I can change the way the data is saved if there's any recommendations on that XD
4  Economy / Services / Re: ANSWER SIMPLE MONGODB QUESTION: GET 0.05 BITCOINS :) on: July 05, 2016, 01:10:49 AM
If this helps any, I also tried

Code:
 var resultArray=[];
    mongo.connect(url, function(err, db) {
    var cursor = db.collection('test_mqtt').find({"_id":"arduino01"},{"event.value":1,"_id":0});
         cursor.forEach(function(doc, err) {
         resultArray.push(doc.event);
}, function() {
  db.close();
  console.log(resultArray);
 
});

but the array isn't right.   I need to be able to grab (for only the device I want) a plain array of temperature values and a plain array for time values for a specified sensor.......and that's in some weird object format.   
5  Economy / Services / Re: ANSWER SIMPLE MONGODB QUESTION: GET 0.05 BITCOINS :) on: July 05, 2016, 01:01:19 AM
it is not simple chief. it needs more patience and knowledge of course. i will try it. challenge accepted

Haha alright, I've been working on this for almost a day now and can't find the solution...... but I'm also a sh*t high schooler programmer
6  Economy / Services / [CLOSED] ANSWER SIMPLE MONGODB QUESTION: GET 0.05 BITCOINS :) [CLOSED] on: July 04, 2016, 11:17:24 PM
So my friend has stuff posting in a mongo database like this:
Code:
{
    "_id" : "device01",
    "event" : [
            {
                    "temperature" : "32.00",
                    "when" : ISODate("2016-07-02T00:21:41.441Z")
            },
            {
                    "temperature" : "42.00",
                    "when" : ISODate("2016-07-02T00:21:46.766Z")
            },            
    ]
}
 {
    "_id" : "device02",
    "event" : [
            {
                    "temperature" : "22.00",
                    "when" : ISODate("2016-06-02T00:21:41.441Z")
            },
            {
                    "temperature" : "43.00",
                    "when" : ISODate("2016-07-02T00:21:46.766Z")
            },            
    ]
}

and he wants to be able to query one of the devices on command and have an array return of the temperature, or when  (query device2 temp and get [22.00, 43.00] returned etc.  )

I tried this:
Code:
db.collection('test_mqtt').aggregate([
    {$unwind: '$event'},
    {$group: {
        _id: '$_id',
        t: {$push: '$event.temperature'}
        d: {$push: '$event.when'}
    }}
]);
but its somehow not working....its pulling my hair out, and driving me crazy.  Using Node, if anyone can figure it out, then send the code and post the address for 0.05 bitcoins!!!! Smiley

7  Economy / Service Discussion / Re: Advice for new users regarding CLOUD MINING on: September 30, 2014, 11:09:59 PM
https://www.kncminer.com/products/400ghs-btc-cloud-mining

Does anyone have experience with this btw?  It seems profitable?  But I don't believe it?
8  Bitcoin / Hardware / Re: ANTMINER S4 Discussion and Support Thread on: September 25, 2014, 03:00:07 PM
I thought the S1 had the same efficiency as the S2?   Huh   I think that graph might be misleading?
9  Economy / Service Discussion / Re: Anyone have experience with HolyBitcoin.com ? on: September 22, 2014, 03:09:16 PM
I'm still waiting for someone to speak up about it.  I might just order from 112bit....
10  Economy / Service Discussion / Anyone have experience with HolyBitcoin.com ? on: September 20, 2014, 01:23:45 PM
Hi Bitcoiners!

Want to replace my S1s with the asicminer tubes.  Is this guy trusted?  HolyBitcoin.com
I haven't seen much talk him on the forums, except a grand opening post.  So many scams, any input would be appreciated!
11  Bitcoin / Mining speculation / Which is better Antminer S3, L1 or Asicminer Tube? on: September 18, 2014, 10:53:30 PM
Currently have two S1s, had asicminer cube and blade and looking to upgrade.  What do you guys think is the best?  I realize the L1 is really unknown right now in profitability.

Personally I have electric heat so electricity doesn't matter that much.  Grin
12  Bitcoin / Mining / Re: BBT Episode 20: Cloud Mining | GAWMiners feat. Zencloud Review on: September 08, 2014, 01:06:42 AM
What is the ROI on the Hashlets and how is the scrypt difficulty doing?
13  Alternate cryptocurrencies / Mining (Altcoins) / Re: AntMiner L1 for sales $5/MH/s ships in December on: September 05, 2014, 01:27:07 AM
Initially excited when Bitmaintech announced it....but a 4 month preorder.....are you kidding me?  Angry
14  Economy / Games and rounds / Re: BTCJam forum name verification on: August 30, 2014, 03:25:00 AM
I want to link my Bitcointalk name with BTCJam's. Verification code: 7b60f935-eaba-4d03-9331-7f9a0b3d7210
15  Bitcoin / Mining / Re: Comedy!! Child Labor in Bitcoin Mines Exposed on: August 26, 2014, 02:13:41 AM
I thought this was true for a second. Grin
Lol...you never know with news these days Cheesy
16  Bitcoin / Mining / Re: List of Mining Rig Spec on: August 26, 2014, 02:12:06 AM
Nice website...just wish I could sort by efficiency or cost by clicking on the column.
17  Alternate cryptocurrencies / Mining (Altcoins) / Re: Looking for best scrypt-n x11 x13 miner on: August 25, 2014, 02:15:14 AM
I am looking for the miners that run at least 10MH on scrypt-n coins. I am very new to mining so I am not sure what brands are best for the N type. I would prefer one that does not have to be connected to a computer but rather a RasPI or another controller with a Wi-Fi connection. Are there any that can mine multiple coins like x11 and x13? Remember im new so please be kind lol. Thank you.

We are china we can sell you x11 x13 scrypt n fpga or aspics.

You sell scrypt-n x11/x13?  Are the rumors true?
18  Bitcoin / Mining speculation / Re: I bought 2x 18gh/s Bitburner XX's for 50 dollars. Did I pay to much? on: August 22, 2014, 12:58:15 PM
Hi,

I bought 2x 18gh/s Bitburner XX's for 50 dollars for the pair.
And he will throw in a 10 chip version with another 4-5 gh/s but probably defect.
Did I pay to much?

Thanks,

Depends on the efficiency of electricity.  Not a bad price.....  You can use a bitcoin profit calculator to find profits.....the difficulty is quickly increasing right now.
19  Bitcoin / Hardware / Re: [GUIDE] Undervolt antminer s1 [1.19W/GH at the wall] on: August 17, 2014, 03:14:05 AM
I was looking at the antminer S3 page, at it says it is 355 watts with a 225 mhz frequency.....Is it possible that that S3 just has a lot of undervolted S1 chips?   Anyone with a S3 can comment on this?  Or is this a nm change?
That's basically what the S2 was. The S3 actually has fewer chips than a S1, it is in fact a die shrink, and the chips are much faster (per chip).

Okay cool.   The s2 was really short lived though. Anyone e have one?
20  Bitcoin / Mining / Re: Antminer S3 upgrade kit???? on: August 15, 2014, 08:19:35 PM
They state that the kit is NONREFUNDABLE AFTER PURCHASE.  Why?  What are they hiding?  The fact they they are a nonreputable company who only wants your money?  They take your money, and say thank you and screw off now and never call us again?

DO NOT BUY AN ASIC!  I keep telling you idiots and you never learn!!!
Lol yeah....but GPUs are not making anything right now right?
Pages: [1] 2 3 4 5 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!