I doubt about Freebitco.in investment actually, they are starting from faucet gambling site and now offering an investment opportunity, I understand that the site got a good reputation, but I still not really trust it
What exactly don't you trust? Let's talk about it publicly!
Current biggest risk would not be your site but Bitfinex, their Wells Fargo troubles could make the value of a bitcoin drop significantly.
So you own a mining farm? Customers probably would like to see pictures of shelves full of mining equipment, or some hashrate statistics. Current or former data. I am not sure how those are verifyable as legit. On payouts they are proveable using a blockchain explorer.
if you want to earn, find online jobs and use them to earn bitcoin
if you really want to invest, start your own online business, or try lending your coins on poloniex/bitfinex for interest
Naw, "all" really implies a lot. To my observation if there is a fixed, even "failesssafe guaranteeed we sssswear" interest rate then something sneaky keeps going on. Mostly ponzi who have to exitscamm at some point in future. Regardless if it is investing into whatever it is to invest for, over there. Mining operation, special trade methods, regardless.
I'm keeping my BTC and currently beeing on the lookout for small programing tasks.
personaly i like gambling more than trading cause i hate when a lill scammer on paxful try to scam me... i make more money with gambling site even i know its more risky but i have chance with them
What's "paxful" ?
Post
Topic
BoardServices
Re: [Hiring] PHP Web Developer, Part Time
by
Njall
on 18/04/2017, 07:44:43 UTC
If there are sidelined tasks I'm inclined to apply for those. PHP/JS/HTML Posting just for later remindal.
Post
Topic
BoardAnnouncements (Altcoins)
Re: [BCN] Bytecoin. Secure, private, untraceable since 2012
Don't worry if you work really hard at shilling you might be able to get back up to 5 satoshis someday. That is, if people are stupid enough to buy an 82% premine There's a sucker born every minute, so you're good.
They are down to 4 Satoshis now? OH! Well, perhaps the market valued in a 82% Premine, so ... price is right, down that low.
mostly that. adding buttons next to people names, storing inside a cookie who made it on the lesser noisy trolls list. I mute people. a feature often requested from the website, but never arrived. now done client-side. (no update today, need more testing using this myself) Update works like a charm storing names inside PoloPreferences cookie.
second is VIP list, and looking for where to store data. On the long, a cookie is small space of some 4Kb. Perhaps I should transform names into numbers using a hash function, and use that for comparison. Or at least clipping to first 12 chars.
Post
Topic
BoardAltcoin Discussion
Re: Poloniex convenience modifications
by
Njall
on 09/09/2014, 16:03:14 UTC
reserved
Post
Topic
BoardAltcoin Discussion
Topic OP
Poloniex convenience modifications
by
Njall
on 09/09/2014, 15:51:37 UTC
a convenience modification fitting onto Poloniex trading page
to install, you have to fit these requirements:
install Greasemonkey or something similar suiting your platform
read the code, cut&paste into a desktop file like poloniex.user.js (it is NOT advised to blindly install stuff like that since it can do literally anything to your trading portfolio)
click your browser on that, and enjoy
tip the author
Update: using icons next to usernames to add/remove them on the list
Quote
: Please, do YOUR part to keep the TROLLBOX free of SPAM. Remember, only YOU can prevent Trollbox SPAM. Thank you. A message from your local MOD SQUAD
Hey! I'm on it
Quote
: Is it possible to hide FORVER the Depth Chart
short answer: yes!
Quote
: is there a way like on IRC to ignore people here? thx!
// // I got weary of always clicking the same buttons before doing sales, // so greased up some things. All action happens at the bottom of this // script, but before we begin need to setup some helper procedures. // And some preferences. //
// some people are special // window.mutelist = []; //handled by cookie store now, click the icon next to users to en/delist them here // window.VIPlist = ["your", "buddies", "here"]; //this still has to be done manually // // feeling gratious? send some to // BTC 12RfcMPgJWmV2kxfL3mT22DPbLCoJWdFbB // LTC LeKzdb8DZiwZUvDnT53uDuvSid3fXa4bMc
//~ http://www.w3schools.com/js/js_cookies.asp function getCookie(cname) { var name = cname + "="; var ca = document.cookie.split(';'); for(var i=0; i var c = ca[i]; while (c.charAt(0)==' ') c = c.substring(1); if (c.indexOf(name) != -1) return c.substring(name.length,c.length); } return ""; }
//http://www.shawnolson.net/a/503/altering-css-class-attributes-with-javascript.html function changecss(theClass,element,value){ var cssRules; for (var S = 0; S < document.styleSheets.length; S++){ try{ document.styleSheets[S].insertRule(theClass+' { '+element+': '+value+'; }',document.styleSheets[S][cssRules].length); } catch(err){ try{ document.styleSheets[S].addRule(theClass,element+': '+value+';'); } catch(err){ try{ if (document.styleSheets[S]['rules']) { cssRules = 'rules'; } else if (document.styleSheets[S]['cssRules']) { cssRules = 'cssRules'; } else { //no rules found... browser unknown } for (var R = 0; R < document.styleSheets[S][cssRules].length; R++) { if (document.styleSheets[S][cssRules][R].selectorText == theClass) { if(document.styleSheets[S][cssRules][R].style[element]){ document.styleSheets[S][cssRules][R].style[element] = value; break; } } } } catch (err){} } } } }
window.muteOnClick = function(someone){ var index = window.mutelist.indexOf(someone.substr(0,16)); if(index >= 0){ window.mutelist.splice(index, 1); alert(someone + " is not muted"); } else{ window.mutelist.push(someone.substr(0,16)); alert(someone + " is now on mute"); }
//~ moved that inside var cname = "PoloPreferences"; var cvalue = encodeURIComponent(window.mutelist.join(',')); var exdays = 356; //~ setCookie("PoloPreferences", escape(window.mutelist.join(';')), 356); //~ function setCookie(cname, cvalue, exdays) { var d = new Date(); d.setTime(d.getTime() + (exdays*24*60*60*1000)); var expires = "expires="+d.toUTCString();
// for our own chat, disable reply klickability since it always looks bad if we seem to talk // with ourselfes, doesn't it? Always klicking me in an ongoing conversation :-( else if(trollboxRow['username'] == trollboxUsername && trollboxRow['message'].substring(0,3) != "/me") { //trollboxRowContent = ''; trollboxRowContent = ''; trollboxRowContent += trollboxRow['username'] + ": "; trollboxRowContent += ''; trollboxRowContent += trollboxRow['message']; trollboxRowContent += ''; }
else { // all other cases are for the original function // I have a feeling the filtering for "'s or other suspicious stuff // is done server-side in a different language, like C trollboxRowContent = pologetTrollboxRow(trollboxRow); }
//our interface button always goes in front trollboxRowContent = '' + trollboxRowContent; // ⊗
return trollboxRowContent; }
window.runkit_function_rename = function(funcname, newname){ // http://kevin.vanzonneveld.net // + original by: Brett Zamir (http://brett-zamir.me) // % note 1: Function can only be copied to and from the global context // * example 1: function plus (a, b) { return (a + b); } // * example 1: runkit_function_rename('plus', 'add'); // * returns 1: true //~ we had to loosen it's resistance to mess with things a bit //~ if(typeof this.window[newname] !== 'function' || this.window[funcname] !== undefined) //~ return false; //presumably disallow overwriting existing variables this.window[newname] = this.window[funcname]; this.window[funcname] = undefined; return true; }
function check(node, value){ var childNode = document.getElementById(node); if(childNode != null) childNode.checked = value; else log("no checkbox "+node+" found"); }
function setvalue(node, value){ var childNode = document.getElementById(node); if(childNode != null) childNode.value = value; else log("no entry "+node+" found"); }
function replaceText(whichClass, fromString, toString){ var hits = document.querySelectorAll("."+whichClass); for(var i = 0; i < hits.length; i++) { var text = hits[i].innerHTML; if(text.search(fromString) >= 0) hits[i].innerHTML = text.replace(fromString, toString); } }
function exists(id){ if(document.getElementById(id) != null) return true; return false; }
var appendError = function(str){ throw new Error("DEBUG: "+str); }
function log(str){ setTimeout("appendError('"+str+"')", 1); }
setvalue("emaPeriod", 99); check("emaCheckbox", true); // it is too small! any above 100 needs more, but more pixels mess up the table layout // //document.getElementById("emaPeriod").style.width = "40px";
replaceText("hStyle", "Sell Orders", "sell,Sell,SELL"); replaceText("hStyle", "Buy Orders", "buy,Buy,BUY"); } //all parts created by Njall, unless otherwise stated, in 9.2014 //eof
I would buy here on this forum using trusted escrow. You can check for offers on currency exchange section.
Localbitcoins or OTC forum trades with utilizing escrow seem to be waaaay more difficult from a beginning perspective. The MtGox type of exchange service is just easy in comparison.