Bitcoin Forum
June 24, 2024, 06:47:16 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Economy / Collectibles / Re: [WTS] Ravenbit Node Copper (20 & 40 coin sets) on: September 17, 2015, 08:03:58 PM
Anyone interested in a EU group buy? (Looking at you Mitchell) Cheesy
2  Economy / Collectibles / Re: *PRICES LOWERED!* [WTS] Cryptolator, MicroSoul, RavenBit, F*D, Antana, Kialara! on: August 23, 2015, 08:47:38 AM
Is there any difference between a standard Satoshi coin and your test coin?
3  Economy / Collectibles / Re: The (Official) RAVENBIT COLORS coin trading thread on: July 03, 2015, 05:06:44 PM
Looking to buy one of these beautiful coins, with shipping to EU.
Thanks  Kiss
4  Economy / Collectibles / Re: [GROUP BUY][EU] Ravenbit NODE Bronze on: June 10, 2015, 08:17:49 PM
User: MunchCrunch
Country: UK
Quantity: 1

Assuming this goes ahead what sort of timeframe for delivery are we looking?
Just asking because I am away for 2 1/2 weeks on a holiday fairly soon then straight back to *hopefully* move house so delivery might be an issue!
If this is an issue would it be possible if you could delay shipping my coin?

Thanks for doing this!
5  Economy / Collectibles / Re: [ANN] Ravenbit NODE physical coin on: June 10, 2015, 01:06:15 PM
mrbrt...I received your email today for your new NODE Antique Bronze.

Any chance you'll offer the remaining 15 at auction or as individuals?  I'd like one, but don't need 20.

Thanks.
I sent mrbrt a PM asking if he is willing to sell singles as well. If not, well, I guess that I'll have to do a group buy for them as I don't need 20 either. Tongue
I might be interested in getting 1 or 2 in a group buy Smiley (EU)
6  Economy / Games and rounds / Re: CONTEST: How many Bitcoin Penny™ coins are in the jar? on: May 17, 2015, 09:20:52 PM
286 :>
7  Economy / Services / Re: Bounties for programming help on: April 12, 2015, 07:45:53 AM
yes i have a 64 bit os.

removing all the libraries i added earlier didn't seem to help  Sad. i tried all possible combinations of the three. no difference Sad.'

no matter whether we get it figured out or not i just wanted to say thanks for all the help.
Smiley Thanks
8  Economy / Services / Re: Bounties for programming help on: April 11, 2015, 10:12:49 PM
This
Code:
#include "glfw3.h"

int main(){
glfwInit();
}
Did nothing.

However this
Code:
#pragma comment(lib, "C:/Users/Aaron/Documents/Visual Studio 2013/Projects/Project5/Project5/glfw-3.1.1.bin.WIN64/lib-vc2013/glfw3.lib")

#include "glfw-3.1.1.bin.WIN64\include\GLFW\glfw3.h"

int main() {
glfwInit();
}
definitely did something.

I had to switch from backslashes like this
Code:
#pragma comment(lib, "C:\Users\Aaron\Documents\Visual Studio 2013\Projects\Project5\Project5\glfw-3.1.1.bin.WIN64\lib-vc2013\glfw3.lib")

to forward slashes like this.
Code:
#pragma comment(lib, "C:/Users/Aaron/Documents/Visual Studio 2013/Projects/Project5/Project5/glfw-3.1.1.bin.WIN64/lib-vc2013/glfw3.lib")

inorder to resolve these errors.
Code:
1>------ Build started: Project: Project5, Configuration: Debug x64 ------
1>  main.cpp
1>main.cpp(1): warning C4129: 'A' : unrecognized character escape sequence
1>main.cpp(1): warning C4129: 'D' : unrecognized character escape sequence
1>main.cpp(1): warning C4129: 'V' : unrecognized character escape sequence
1>main.cpp(1): warning C4129: 'P' : unrecognized character escape sequence
1>main.cpp(1): warning C4129: 'g' : unrecognized character escape sequence
1>main.cpp(1): warning C4129: 'l' : unrecognized character escape sequence
1>LINK : fatal error LNK1104: cannot open file 'C:UsersAaronDocumentsVisual Studio 2013ProjectsProject5Project5glfw-3.1.1.bin.WIN64lib-vc2013glfw3.lib'
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

But after I switched from backslashes to forward slashes I got these errors.
Code:
1>------ Build started: Project: Project5, Configuration: Debug x64 ------
1>  main.cpp
1>LINK : warning LNK4098: defaultlib 'MSVCRT' conflicts with use of other libs; use /NODEFAULTLIB:library
1>glfw3.lib(window.c.obj) : error LNK2019: unresolved external symbol __imp_glClear referenced in function glfwCreateWindow
1>glfw3.lib(wgl_context.c.obj) : error LNK2019: unresolved external symbol __imp_wglCreateContext referenced in function _glfwCreateContext
1>glfw3.lib(wgl_context.c.obj) : error LNK2019: unresolved external symbol __imp_wglDeleteContext referenced in function _glfwDestroyContext
1>glfw3.lib(wgl_context.c.obj) : error LNK2019: unresolved external symbol __imp_wglGetProcAddress referenced in function _glfwPlatformGetProcAddress
1>glfw3.lib(wgl_context.c.obj) : error LNK2019: unresolved external symbol __imp_wglMakeCurrent referenced in function _glfwPlatformMakeContextCurrent
1>glfw3.lib(wgl_context.c.obj) : error LNK2019: unresolved external symbol __imp_wglShareLists referenced in function _glfwCreateContext
1>glfw3.lib(context.c.obj) : error LNK2019: unresolved external symbol __imp_glGetIntegerv referenced in function _glfwRefreshContextAttribs
1>glfw3.lib(context.c.obj) : error LNK2019: unresolved external symbol __imp_glGetString referenced in function glfwExtensionSupported
1>c:\users\aaron\documents\visual studio 2013\Projects\Project5\x64\Debug\Project5.exe : fatal error LNK1120: 8 unresolved externals
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

Not sure if that's progress but it could be Cheesy
Well the warning is about conflicting libraries so just remove all the libraries that you added earlier in the thread Smiley
Just to confirm, you do have a 64bit operating system?

===================
Try changing
Code:
#include "glfw3.h"
to
Code:
#include <GLFW/glfw3.h>
9  Economy / Services / Re: Bounties for programming help on: April 11, 2015, 09:33:11 PM
I'm a bit of a novice at programming but I'll try.
Make sure your GLFW and VS targets match (32bit+32bit or 64bit+64bit)
So make sure your program is compiling for 64bit as you're using 64bit libraries.

It is true that I was trying to build the application as 32bit while using glfw's 64 bit libraries (i think). So I went into project properties and at the top in the drop down menu "platform" i changed it from Win32 to x64 (which i think is what you were wanting me to do). Still getting the same error.

Code:
1>------ Build started: Project: Project5, Configuration: Debug x64 ------
1>main.obj : error LNK2019: unresolved external symbol glfwInit referenced in function main
1>c:\users\aaron\documents\visual studio 2013\Projects\Project5\x64\Debug\Project5.exe : fatal error LNK1120: 1 unresolved externals
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
Ok, try this first.
Code:
#include "glfw3.h"

int main(){
glfwInit();
}

If that doesn't work then try this, just remember to change PATH:TO Smiley
Code:
#pragma comment(lib, "PATH:TO\glfw3.lib")

#include "glfw-3.1.1.bin.WIN64\include\GLFW\glfw3.h"

int main(){
glfwInit();
}
10  Economy / Services / Re: Bounties for programming help on: April 11, 2015, 04:40:07 PM
I'm a bit of a novice at programming but I'll try.
Make sure your GLFW and VS targets match (32bit+32bit or 64bit+64bit)
So make sure your program is compiling for 64bit as you're using 64bit libraries.
11  Economy / Service Announcements / Re: Where to Spend Bitcoins - UK Bitcoin directory on: August 11, 2014, 04:45:16 PM
Sweet website Smiley
I wanted to find a jet charter company that accepts bitcoin Wink
12  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: FREE MONEY! on: August 03, 2014, 09:48:03 AM
Sent you 3200 (1000,1000,1200) from FishTing
Btc address: 1oNmd7fThLjTDba1eahovnxrBSXho16rT3cAE9Qh3va4ZLVTeTi3wzc3cAE9Qh3va4ZLVTeTi3wzc

Thanks Smiley

That´s not a valid btc address.

 Roll Eyes
19JgxtkyH2ZoM4TVp92wtE3GiYmsbwCZ5p
Hopefully that works :p
13  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: FREE MONEY! on: August 03, 2014, 09:40:37 AM
Sent you 3200 (1000,1000,1200) from FishTing
Btc address: 1oNmd7fThLjTDba1eahovnxrBSXho16rT3cAE9Qh3va4ZLVTeTi3wzc3cAE9Qh3va4ZLVTeTi3wzc

Thanks Smiley
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!