Search content
Sort by

Showing 5 of 5 results by m2gnus
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][NEW][CRYPTONIGHT][COIN] PINKSTARCOIN
by
m2gnus
on 04/04/2018, 20:48:29 UTC
I am not so confident in this coin at the moment. There needs to be a transparent roadmap, measurable goals to be met. Right now, the developer (what dev is going on except of cloning other coin tech, btw?) changes his mind every few days, looses trust into someone or announces something else unexpected. Plainly speaking, this looks childish.

I am not criticizing because I don’t like the coin, but to the contrary, because I want it to become a success. However, I am skeptical.

  • What makes this coin different from other coins?
  • The coin swap will be a major pain in the ass for users. What will be the benefits of it (apart from reducing the number of coins)?
  • What problem is this coin trying to solve? What is its mission statement?
  • Getting on exchanges is one thing. The other -more important one- is to be able to *buy* stuff with the coins. Any plans for this? Like, for example, the dev selling his old bike? (Sounds like a joke, I know, but a coin has one main purpose: As currency.)
  • Any plans regarding the algorithm? You know, PoW algorithm changes are the talk of the town these days (Monero, Electroneum...) and pretty soon there might be a lot of leftover CryptoNight hash power as soon as the PoW change in the major coins is done.
  • Please no more secrecy. Telling users they do not know what the dev did / does just shows, that the work is not communicated properly. There is no reason to be secretive. One needs to convince / win over users. This is only done through transparency.

Rant over.

Greate example for your skepticism.
Crecpoin
Roadmap +
Exchange +
White Paper +
Features +
Marketing +

Result -> absolutly failure currency and platform.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [NO-ICO] [0% PREMINE] CREPCOIN: Friendly web environment crypto!
by
m2gnus
on 24/03/2018, 14:58:54 UTC
Hello i try deposite monero to your exchange platform. How long waiting?

Transaction
e44f5d224b6dcc2ae28070c36a7072983f5fdefec451a6316fe9a2b734d27bcb

Adress
42m4rU8BNx64PnEwiMddAkdxyJdKMKNfmUkneVWSTYPzcuchTQLmmKeKfnrGYbPhf6j9gmFVJ6sFK2Z as2wS8uQf49zUMp5

P. ID
149fdf2dc5e582678d66f0b7fe6ba411b639e3224f4f2ea4753f20bfd9c14ae6
Post
Topic
Board Beginners & Help
Mining on VEGA's with actual gaming drivers! (Cryptonight) No switching!
by
m2gnus
on 12/03/2018, 11:50:31 UTC
First, a screenshot confirming the work of this method.
https://i.imgur.com/DmQUojO.jpg

*
This instruction is in addition to the guide located on Reddit: https://www.reddit.com/r/MoneroMining/comments/7pwsme/vega_dual_driver_guide_easily_switch_between/.
*
I got it by accident, while writing a .bat file.
The original instruction suggests switching. I do not promise that it will work for you!


I will rewrite main instruction to here. This will save time.

For those that would be interested in mining Cryptonight coins when they are not gaming, I wanted to give a quick and dirty guide on how to switch between a gaming driver of your choice and Blockchain drivers with a few clicks using Windows Device Console Utility (devcon).

1.This guide assumes you have a working and stable Vega Cryptonight mining configuration with the Blockchain driver installed, and no gaming driver installed yet. There are plenty of guides out there already, but I would highly recommend following the one from /u/CircusDad here: http://vega.miningguides.com/

  • I only have 1 Vega, so not sure if this works with multiple.
  • You might be able to get away with installing the Blockchain driver second (if you already have gaming drivers installed) and then follow the mining guide, but that is not what I did so I cannot comment if you will run into issues.

2.Devcon is included when installing WDK, Visual Studio, and the Windows SDK. However, we only need the devcon.exe file. So to get it without all the other bloat we don’t need, follow instructions for your OS version in red text (about a quarter way down the page) from here:
Quote
https://networchestration. wordpress. com/2016/07/11/how-to-obtain-device-console-utility-devcon-exe-without-downloading-and-installing-the-entire-windows-driver-kit-100-working-method/
delete spaces to use link!

  • After that you should now have a file named devcon.exe

3. Get the correct directory for devcon:
  • Open a Command Window (in Start Menu type “Command Prompt”).
  • Right click and run as administrator. Always run this as an administrator.
  • Check the directory listed in the window and write it down. For example my directory (and what most will be) was C:\Windows\System32, as shown here: https://imgur.com/yo6yFPk

4.Move your new devcon.exe file to the given directory (so for me C:\Windows\System32). Configure it to always run as an administrator:

  • Right-click the file.
  • In the Properties dialog box, click the Compatibility tab.
  • Select the “Run this program as an administrator” check box, as shown here: https://imgur.com/a648MWw
  • Click OK.

5. Open the Command Window again and type the following: devcon.exe driverfiles “PCI\VEN_1002&DEV_687F”

  • Hit Enter.
  • Find the line with “driver installed from”. It should say something along the lines of C:\Windows\INF\oem[NUMBER].inf as shown here: https://imgur.com/CUBzAmH
  • Write down that number, it will be different for everyone.

6. Normally install any gaming driver you prefer, or Blockchain driver if you are installing that second instead (If you are installing the Blockchain driver, ONLY install the driver itself as noted in the guide I linked to above). WARNING: Switching is not currently stable with adrenaline drivers. You might sometimes get a BSOD when switching (for me, about 1/10 with 17.12.1 dirver). According to /u/Rholk88 switching was stable with the latest 17.11.x driver. Also /u/wily_virus has had no issues yet with 17.12.2 driver.

7. Follow the same instructions as bullet 5 with the gaming driver installed (or Blockchain driver if you installed that second). You should get another INF file with a new number. Write down that number, it will be different for everyone.

8. To switch between drivers:

  • Open the Command Window again and type the following: devcon.exe disable “PCI\VEN_1002&DEV_687F”
  • Now enter the following: devcon.exe updateni C:\Windows\INF\oem[NUMBER]
  • Replace [NUMBER] with the number that is associated with the driver that you want to switch to.
  • Hit enter (device will automatically re-enable after switching).

9. Now let’s create a batch file to do bullet 8 automatically with one click:

Original bat quide:
Quote
@echo on

set currentdir=%cd%

cd C:\Windows\System32

timeout /t 5

devcon.exe disable “PCI\VEN_1002&DEV_687F”

timeout /t 5

devcon.exe updateni C:\Windows\INF\oem[NUMBER] “PCI\VEN_1002&DEV_687F”

  • Change the directory after "cd" to wherever your devcon.exe file is. This way you can actually put devcon.exe anywhere you would like, but I just went with the default directory for simplicity.
  • Replace [Number] with the number associated with your Blockchain driver.
    Save the file.
  • Copy the file and rename it to “Switch to Gaming Driver” or something similar.
  • Edit the file and replace the [Number] with the number associated with your gaming driver.
  • Create shortcuts of both files and move them to your desktop.

Now the most important thing! We create a batch file on the desktop, devcon.exe is left in the System 32 folder, we copy the batch file in my sample to System32 folder.

Quote
@echo on

timeout /t 5

devcon.exe disable "PCI\VEN_1002&DEV_687F"

timeout /t 5

devcon.exe updateni C:\Windows\INF\oem[Number of blockchain INF\DRIVER] "PCI\VEN_1002&DEV_687F"

timeout /t 5

devcon.exe disable "PCI\VEN_1002&DEV_687F"

timeout /t 5

devcon.exe updateni C:\Windows\INF\oem[Number of game(adrenaline) INF\DRIVER] "PCI\VEN_1002&DEV_687F"

Now you can display this batch file on the desktop, creating a shortcut and launching it as administrator. Or just create a rule to initiate it when Windows starts!


I hope if this guide helped you, you will help me a little.  Grin

My adresess to donate:
Quote
BTC: 1P3226TaeTXyi2weNnEAoz7AdfLfBJMGyC
Quote
ETH: 0xb6960f74e8f53831b2284051fea6176a9c3d1ba0
Quote
LTC: LSPMy57CYRVVnbiUMTNzKWJN8XSsN3wWSs
Quote
XMR: 4ALcw9nTAStZSshoWVUJakZ6tLwTDhixhQUQNJkCn4t3fG3MMK19WZM44HnQRvjqmz4LkkA8t565v7i BwQXx2r34HNroSAZ
Payment id:
a3a27ad45eb7d62783d79033bdd2aa72e2eec82829eca621f6708d2e0c5e6397
Quote
USDT: 1JRXv4uAfbADzpitk1BRKTcPWCHLFrVv58
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][NEW][CRYPTONIGHT][COIN] PINKSTARCOIN
by
m2gnus
on 05/02/2018, 22:31:03 UTC
please indicate which commit on github the releases are on the first post and can you confirm there is an issue with the latest commit on the repo?
Repository updated on github Wink
Oooy! Very good price, 1000 pnk = 1$.  Or i don't understand something?
We are talking about cryptocoin so 1000PNKS is not $.
I understand, but every cryptocurrency has a price.
1000PNK=18CREP=0.234KRB=0.00002855BTC
So, 1PNK=0.00000003BTC=0.00024$. Sorry, it's my mistake.  Not $, its true.
Crypto currency without capitalization.
No sense to mine.... Embarrassed Embarrassed Embarrassed

Okay time to think like a critical investor here:

If you are mining currently you not mining to convert to $ straight away. This would be plain silly. If you wanted 2-5 $ a day go mine ETH. What is going right now is mad accumulation period. THIS is the easiest period to get PNKS. This even before "smart money" on the time frame right now. The reason we are doing this is because we are doing the super apocalyptic investment risk maneuver (the chance to literally do  9000x vs gain absolutely zero).

But we are not gamblers putting all on 9 or something on the roulette. We are doing a bit of thinking before that! PNKS is really very stealthy right now. It does not have easy to exchange pair to some big coin  like BTC. (there are plans to be able to go to exchange to Monero as far I heard). Once we get a pair with a more well known coin there will be flux of speculators that think they can do 10x easy on this "shitcoin" (sorry dev hang on) Thing is those people are our support, and they have already razed the $ of PNKS just by being there speculating. Lets say that their behavior puts PNKS at 0.001$ well my 48$ (i have 200 000 PNKS) just became 200$. And why is this gonna happen, just cause PNKS is a new coin and people like to speculate in case of a moon. Listing coins on exchange always bring s price influx

It keeps on giving.
Our good dev is organizing a bounty campaign (cheers for that) this is literally paid shills, nothing against it. It is also known as advertisement and marketing. Lets say that it has good results people get excited (to speculate even more) and buy more coins, PNKS get listed on more exchanges= new support and higher price levels new joy! PNKS now are worth 0.003$. Holly shit my 200 000 PNKS are now worth 900$

I can't believe it is not butter:

Our hardworking developer makes a web site with a proper road map and white paper explaining what he wants to do in a well written and thought up manner . Holly shit this guy sounds professional, he has a plan, he has a team, look how much he engages with the community this is the real deal! Fire interstellar engines = PNKS reach 0.01$. I personal chef informs me that my PNKS are not worth 2000$. I tip him a PNKS and tell him to hold it for a year!

Holly shit it is butter:

Team is working fine, road map goals are being done. Things are going on fine. New exchanges, more awareness.  PNKS team is ready to deploy the market place site. PNKS going to 0.1$ I decide its time to pain the PNKS logo on my lambo.

What is this in my butter?! What its a pink diamond.

The PNKS site is wildly regarded as the EBAY of crypto. With awesome support, prices and quality. PNKS are worth 1$. I am sipping Pink Star soda on my moon base, as my chef waves by on his star cruiser that he bought with his one 1 PNKS.


Also in all seriousness if PNKS somehow reach among the top 20 currently with marketcap PNKS are gonna be worth 1$. If i can make a comparison 4chan coin reached the price 0.15$ PNKS can do it too!


Remove your pink glasses)))))
This is fork of Bytecoin.
He had a huge issue, as a result of the price of $ 0.004. This is the price of a coin, which originated in times of small amounts of coins.

Now many new coins have appeared, and they look more serious.
They do not have such a huge emission, they have normal road maps and wallets. They are also traded on normal exchanges.
And yes, I'm sorry but your 200,000 PNKS now cost $ 4.8.

I think this coin will be sold in millions.
Think, even if I got with my home rig (1,500 H/s - 3*1060gtx + 1070gtx) - 4000 PNKS in one day. How many can get from 20-50-200 rigs with better hashrate?
 How many will be on the market? This is a terrible amount!
I hope you will have your own base on the moon, but not thanks to PNKS
Good luck.
Sorry for my English.

First hate comment, yeee). BTW Monero is fork of Bytocoin too, what you said about that, pink glass broker?) Wink
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][NEW][CRYPTONIGHT][COIN] PINKSTARCOIN
by
m2gnus
on 25/01/2018, 19:49:44 UTC
My 5 min logo  Grin

Best way to search right design - write a technical project.

Idea, prefer colors, prefer fonts.

https://i.imgur.com/fLCCaSy.jpg