Bitcoin Forum
May 24, 2024, 11:59:31 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 4 5 »
1  Other / Off-topic / Hype project for Play-to-Earn (P2E) Just Tap Screen and Quests on: January 16, 2024, 07:25:54 PM
Currently, the P2E (Play-to-Earn) trend is on fire, just tap the screen, and there are quests too using the Telegram application:
- Telegram Bot: Notcoin
- News: Notcoin News

Usually, for airdrop enthusiasts, they use Zealy, but it is still considered complicated to use. Well, this might be an alternative and very easy because it's just a matter of clicking. It seems that projects under TON are currently trending because they can leverage the Telegram application directly without going through the hassle of the original site.
2  Local / Topik Lainnya / Lagi Hype P2E Tap2 Layar Doang & Quest2nya on: January 16, 2024, 07:21:03 PM
Lagi Hype P2E tap2 layar doang & ada quest2nya juga menggunakan aplikasi Telegram:
- Bot Telegram: Notcoin
- News: Berita Notcoin

Biasanya kalau pengincar airdrop pake Zealy, tapi masih dianggap ribet penggunaannya. Nah ini mungkin alternatifnya dan sangat mudah karena tinggal klik2. Sepertinya memang project2 dibawah TON memang lagi tren naik ya karena bisa memanfaatkan aplikasi Telegramnya langsung tanpa ribet2 ke situs aslinya.
3  Local / Topik Lainnya / Re: Penghasilan tambahan on: December 30, 2023, 03:01:10 PM
Bisa ikut2 airdrop seperti di Zealy atau freelance an kategori kripto juga banyak di Fiverr
4  Local / Altcoins (Bahasa Indonesia) / Re: Tokocrypto launch toko token on: December 20, 2020, 12:24:21 PM
TKO ini nantinya akan menjadi token pertama dari exchanger lokal yang ada di Indonesia. Tentu ini menjadi nilai tersendiri.
Sepertinya tidak lagi akan menjadi token pertama dari Exchange lokal karena ada kompetitornya yang sudah duluan meluncurkan tokennya yaitu Zipmex dengan token ZMX


Apa kalian lupa terhadap TEN ? Yang bikin rugi banyak orang Indonesia yang di luncurkan orangbterkenal di dunia crypto, yang sekarang mengclaim dirinya sukses di startup. Temen kakak saya rugi 100jt gara2 ngikutin Ten dan padahal saya dah bilang jangan beli itu Token entah apa tujuannya.

Seharusnya tau disclaimer untuk trading, kalau rugi berarti salah temenmu. Di dunia trading, rugi-untung itu hal biasa. Makanya perlu review terlebih dahulu Token2 yang ingin diinvestasikan dan dimainkan apakah ada progress baik kedepannya atau tidak.

Kalau menurutku untuk TKO ini, tergantung konsep bisnis yang mau dibangun seperti apa. Semisal seperti Binance konsepnya dikarenakan investornya, tentu aku berpikir ada pandangan bagus kedepan (karena investornya + token pasti digunakan seperti pengganti fee trading dll). Tinggal mau di jalankan saja seperti apa nanti.
5  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: December 13, 2020, 06:20:21 AM
(For 999dice) Run Bot, You Sleep. Stable program and low balance (minimum 1000 Doge)

Code:
resetseed()
resetstats()

chance        = math.random(15, 49)
basebet       = 0.00001 -- this recomendeed for low balance. If dogecoin more than 10k Doge, set basebet up to 0.0001 Doge
nextbet       = basebet
varmaxbet     = 2 -- set max bet 10 Doge for low balance. If dogecoin more than 10k, set maxbet up to 100 Doge
vartarget     = 10000 -- edit your target total profit
varstoploss   = 5000 -- edit your stop loss
varmaxrollwin = 2
varrollwin    = 1
multwin       = 1
multlose      = 1.4
varbetlose    = math.random(0, 1)

function dobet()
    chance  = math.random(15, 49)
    varbetlose    = math.random(0, 1)
    if (varbetlose == 0) then
        bethigh = true
    else
        bethigh = false
    end
    if (balance >= vartarget) then
        stop();
        print("target success")
    end
    if (balance <= varstoploss) then
        stop();
        print("stoploss")
    end
    if (win) then
        if (varrollwin >= varmaxrollwin) then
            nextbet = basebet
            varrollwin = 1
        else
            varrollwin = varrollwin + 1
            nextbet = nextbet * multwin
        end
    else
        if (nextbet >= varmaxbet) then
            nextbet = basebet
            varrollwin = 1
        else
            nextbet = nextbet * multlose
        end
    end
end
6  Alternate cryptocurrencies / Altcoin Discussion / Learn Create Dogecoin Wallet Terminal Using NodeJS on: December 02, 2020, 09:02:16 PM
Hello, I'm learning to create a Dogecoin wallet terminal using NodeJS. I've tried to create a Private Key and Address using Coinkey (https://www.npmjs.com/package/coinkey). Then, to check the balance using the API (https://dogechain.info/api/).

And lastly, I need to send Dogecoin with nodejs via Private Key. Does anyone have info on what kind of nodejs module uses? Pelase share link npmjs with me Smiley
7  Local / Bahasa Indonesia (Indonesian) / [SHARE] Proyek Sederhana Blockchain Data Dengan ArangoDB on: June 30, 2020, 12:19:12 AM
Saya menjadikan ini sebagai bahan belajar saya pada konsep blockchain dengan database NoSQL ArangoDB (semi-desentralisasi). Disini saya hanya berbagi, semoga aja ini bermanfaat buat temen2.

Link: https://github.com/RakaWA/simple-concept-blockchain-data

Next Project Open Source (Coming Soon):
1. Integrasi Blockchain Data dengan IPFS
2. Membangun API menggunakan Framework Fastify + Blockchain Data

Note: Itu hanya konsep blockchain data saja yang diimplementasikan menggunakan bahasa pemrograman Javascript
8  Bitcoin / Development & Technical Discussion / [SHARE] Project Simply Blockchain Data With ArangoDB on: June 30, 2020, 12:13:26 AM
I made this as my study material on the concept of blockchain with a database application (semi-decentralized). I didn't know this would be useful for those who needed it or not, but here I am just sharing. may be useful Grin Grin

Link: https://github.com/RakaWA/simple-concept-blockchain-data
9  Bitcoin / Development & Technical Discussion / Re: Search Module Javscript for Wallet on: April 24, 2020, 04:18:51 PM
oh thanks for the advice, it's very useful for me to be able to learn it.
10  Bitcoin / Development & Technical Discussion / Search Module Javscript for Wallet on: April 21, 2020, 07:24:01 AM
Does anyone know the simple npmjs wallet module (generate public-private key wallet, check balance and send cryptocurrency) for cryptocurrency Bitcoin and Monero? please help to share the URL if anyone knows Smiley

Because if I look at their respective sites, the application is rather broad. Which even though I only need a few functions.
11  Local / Bahasa Indonesia (Indonesian) / Re: Upbit Resmi Terdaftar di Bappebti on: December 19, 2019, 05:47:34 PM
Seperti yang saya dengar, waktu ikut Meeting saat peresmian kantor baru Indodax di Jakarta yang di hadiri oleh BAPPEBTI, Sebagian persyaratan dari Indodax sudah di ACC oleh BAPPEBTI seperti kantor pusat harus berada di Ibu Kota (Untuk kemudahan mengurus berkas penting) dll. -snip-
Maaf sedikit penasaran, saya baru tahu kalau salah satu syarat mendaftarkan ke BAPPEBTI itu mesti ada kantor pusat di Ibu Kota, berarti jika nantinya Ibu kota Indonesia jadi dipindahkan ke Kalimantan, kantor pusat setiap exchanger yang terdaftar mesti ikut pindah semuanya ya dengan tujuan untuk kemudahan mengurus berkas?

Iya juga ya, tapi mungkin bakal dipermudah oleh Pemerintah agar tetap di Jakarta saja (asumsiku). Tapi juga karena ada rencana bahwa Ibu Kota baru nanti bakal menjadi Pusat Inovasi, kemungkinan juga harus buat disana juga.

Jawabanku masih asumsi (tapi mungkin bisa jadi rujukan), karena bukan orang Pemerintah Grin Grin
12  Economy / Services / Re: I Need Job For Backend Developer (Website) or Blockchain Developer (Ethereum) on: October 17, 2019, 08:17:35 PM
I am a solidity and dapps developer and a blockchain expert.
My skills are: Solidity, Ethereum,Truffle, Web3.js, Javascript, Mocha, React.js, Blockchain, SQL.
You can contact me on my mail: bergamaschi400@gmail.com
Skype: bergamaschi400@gmail.com / Alessandro Bergamaschi
Telegram: Alessandro_Bergamaschi

Best regards,
Alessandro Bergamaschi

No, I mean that I was previously looking for work and not looking a worker.
13  Alternate cryptocurrencies / Altcoin Discussion / Re: Brave Browser and BAT tokens on: September 06, 2019, 03:50:39 PM
My suggestion is to follow the brave browser's twitter account, they update quite regularly about the roadmap and progress. I believe the next version is to replace bitcoin with BAT in the current contribution model, then followed by the ad model.

I think they just heed the crypto community. Though it is only a derivative of a browser add features to eliminate ads. But they will add advertisements for themselves so that browser users get BAT. But I also use that browser to support Cryptocurrency to be better.
14  Alternate cryptocurrencies / Altcoin Discussion / Re: I Call SmartContract Token ERC20, Why Show Hashing Output ? (Web3 + Metamask) on: September 03, 2019, 04:33:43 AM
By the way, "0x18160ddd" is the signature of the function totalsupply().
but I can't tell why the value wasn't there.
I think that is the Hex function on web3, from some other people's thinking it's because I'm using a new version. But somehow, I'm a little confused with this new one. Even though I used the previous version, it can come out real data. I tried changing HextoASCII (web3 function) too, but it didn't come out.

In the Metamask (Developer) document that I read, they recommend using a new one to make it safer (they said). So I want to try this new Smiley
15  Alternate cryptocurrencies / Altcoin Discussion / Re: I Call SmartContract Token ERC20, Why Show Hashing Output ? (Web3 + Metamask) on: September 03, 2019, 04:06:39 AM
I think you mistook "Ethereum" for "Electrum" Smiley

This isn't the right board for technical discussion about ETH.
Use the move topic button below (lower-left) to move this to Altcoin Discussion.
ok thanks, i'm wrong place for discussion.
16  Alternate cryptocurrencies / Altcoin Discussion / I Call SmartContract Token ERC20, Why Show Hashing Output ? (Web3 + Metamask) on: September 02, 2019, 05:44:48 PM
I do not know why with this, even though in the previous version (web3 + Metamask) can issue real data. But now used as hashing (output). I took the example in the code and output below (to get the TotalSupply on the ERC20 Token) :

Quote
const contractInstance = web3.eth.contract(contractAbi).at(contractAddress);
const total_supply = contractInstance.totalSupply.getData();
console.log(total_supply);

Output : 0x18160ddd (this is my problem)

How to showing real data ? In a sense it doesn't come out hashing. Thanks
17  Economy / Services / Re: I Need Job For Backend Developer (Website) or Blockchain Developer (Ethereum) on: September 01, 2019, 07:44:08 AM
Are you on linkedin? Even if you're not looking for work if you have crypto projects listed in your profile you will get contacted by headhunters.


I rarely do activities on linkedin, but it seems I want to do activities there. Thanks for your advice Smiley
18  Economy / Services / I Need Job For Backend Developer (Website) or Blockchain Developer (Ethereum) on: August 30, 2019, 07:43:57 AM
I'm looking for a job in a section that suits my expertise as Backend Developer (Website) or Blockchain Developer (Ethereum). I have advantages and disadvantages as follows :
- Good skills (PHP - expert, MySQL - expert, Google Cloud Platform - middle, Solidity - expert, Javascript - middle, web3js - expert)
- Bad skills (English Language - only understand reading)


If my expertise is someone who needs me, please include your Telegram number in the comments of this post.


question regarding remote or work in place :
1. Remote ?
    => I am of course willing, I will ask for a smaller salary than on-site of course.
2. On-site ?
   => I am of course willing but on condition. I was given an English course, supported by a visa sponsor, and a decent place to live on-site work. I will not ask for a high salary for this, but according to the standards in your city and country only as a Developer. Please also Contract Working me for this.

Note :
- https://stackoverflow.com/users/story/9708291
- https://github.com/RakaWA
- https://bitcointalk.org/index.php?topic=5079383.msg51896539 (The best I get merit)
19  Local / Altcoins (Bahasa Indonesia) / Re: [INFO] [TIPS] Keuntungan Menjadi Seorang Developer Ethereum on: July 21, 2019, 06:04:17 AM
Saya mempublikasikan program Solidity tentang Token ERC20 dengan beberapa tambahan fungsi lain dari Smart Contract-nya, agan2 dapat melihatnya disini https://github.com/solidity-pack/solidity-pack/tree/master/TokenERC20.

Link Github diatas terdapat 3 file seperti ini :
1. basic_tokenerc20.sol (Membuat Token ERC20 dengan standard biasa).
2. tokenerc20_feetransaction.sol (Membuat Token ERC20 dengan tambahan fitur fee Token pada setiap transaksi).
3. tokenerc20_stoptransaction.sol (Membuat Token ERC20 dengan tambahan 2 fitur penghentian transaksi secara keseluruhan dan setiap address pun dapat dihentikan).

Semoga informasi diatas dapat membantu agan2 Smiley .
20  Bitcoin / Project Development / Re: Read information from smart contract on: February 08, 2019, 04:27:06 PM
Good job, very important. I like your site, because very useful. I hope it will be developed again
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!