Bitcoin Forum
May 08, 2024, 05:31:18 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: what framework use this app?  (Read 1520 times)
MrCrank (OP)
Sr. Member
****
Offline Offline

Activity: 1336
Merit: 258



View Profile
April 04, 2017, 05:19:29 PM
 #1

Hi,
what framework use this app?
jQuery?

games.bitcoin.com
1715189478
Hero Member
*
Offline Offline

Posts: 1715189478

View Profile Personal Message (Offline)

Ignore
1715189478
Reply with quote  #2

1715189478
Report to moderator
"This isn't the kind of software where we can leave so many unresolved bugs that we need a tracker for them." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715189478
Hero Member
*
Offline Offline

Posts: 1715189478

View Profile Personal Message (Offline)

Ignore
1715189478
Reply with quote  #2

1715189478
Report to moderator
1715189478
Hero Member
*
Offline Offline

Posts: 1715189478

View Profile Personal Message (Offline)

Ignore
1715189478
Reply with quote  #2

1715189478
Report to moderator
1715189478
Hero Member
*
Offline Offline

Posts: 1715189478

View Profile Personal Message (Offline)

Ignore
1715189478
Reply with quote  #2

1715189478
Report to moderator
nemgun
Hero Member
*****
Offline Offline

Activity: 882
Merit: 533



View Profile WWW
April 04, 2017, 05:51:45 PM
 #2

It ses jQuery, but it is made in javascript, you can try and open a console, then type : var t = new VideoPokerSystem()
It will ask for the Prize and maybe other informations, i did that just to test it and see what is the language, but i am sure at 90% that it is only JS. Especially when you check the sources, if it was something like scala, the sources would be different.
I think they are using something like Vue.js to render frontend as i found a JS object with informations about the page etc who are arranged for such framework.
I also checked more pages and it is all made in javascript, i like it.
Joel_Jantsen
Legendary
*
Offline Offline

Activity: 1876
Merit: 1308

Get your game girl


View Profile
April 04, 2017, 07:02:27 PM
 #3

Hi,
what framework use this app?
jQuery?

games.bitcoin.com
Doesn't Matter actually.What would you do with that information anyway ?

Jquery for front-end along with Scss for styles.Their header section of the file actually shows the scripts used.

Code:
 <link rel="shortcut icon" type="image/x-icon" href="/static/images/bitcoin_coin_32.png" /> 
    <script type="text/javascript" src="/static/bitcoinjs-min.js"></script> <!-- this must come first -->
    <link rel="stylesheet" href="/static/videopoker_EVERYTHING.css?_=1485230419" type="text/css" media="all" />
    <script type="text/javascript" src="/static/videopoker_EVERYTHING.js?_=1491227565"></script>

I'm not sure of the back-end.Must be php.
nemgun
Hero Member
*****
Offline Offline

Activity: 882
Merit: 533



View Profile WWW
April 04, 2017, 07:13:32 PM
 #4

Hi,
what framework use this app?
jQuery?

games.bitcoin.com
Doesn't Matter actually.What would you do with that information anyway ?

Jquery for front-end along with Scss for styles.Their header section of the file actually shows the scripts used.

Code:
 <link rel="shortcut icon" type="image/x-icon" href="/static/images/bitcoin_coin_32.png" /> 
    <script type="text/javascript" src="/static/bitcoinjs-min.js"></script> <!-- this must come first -->
    <link rel="stylesheet" href="/static/videopoker_EVERYTHING.css?_=1485230419" type="text/css" media="all" />
    <script type="text/javascript" src="/static/videopoker_EVERYTHING.js?_=1491227565"></script>

I'm not sure of the back-end.Must be php.

No, they use JS, i am sure it is a nodeJS application because of the structure, and have a look at the Ajax calls, they don't send to .php files, they send to /something
They could have used mod rewrite to hide this, but i don't think it is required. when you check the sources, you will find that all the informations present in the page including back-end functions are included, depending on the page who is open, but the calls are all directing to files without extention.
You can do this with express, app.on('/server', function .....}); this is how to do it, then you have just to set some params.
MrCrank (OP)
Sr. Member
****
Offline Offline

Activity: 1336
Merit: 258



View Profile
April 05, 2017, 07:19:05 AM
 #5

Doesn't Matter actually.What would you do with that information anyway ?

I want to create poker game and choose framework now
MrCrank (OP)
Sr. Member
****
Offline Offline

Activity: 1336
Merit: 258



View Profile
April 05, 2017, 07:19:42 AM
 #6

It ses jQuery, but it is made in javascript, you can try and open a console, then type : var t = new VideoPokerSystem()
It will ask for the Prize and maybe other informations, i did that just to test it and see what is the language, but i am sure at 90% that it is only JS. Especially when you check the sources, if it was something like scala, the sources would be different.
I think they are using something like Vue.js to render frontend as i found a JS object with informations about the page etc who are arranged for such framework.
I also checked more pages and it is all made in javascript, i like it.

what best JS framework for create similar game?
Joel_Jantsen
Legendary
*
Offline Offline

Activity: 1876
Merit: 1308

Get your game girl


View Profile
April 05, 2017, 09:11:30 AM
 #7

what best JS framework for create similar game?
what best JS framework for create similar game?
That depends on a lot of things.
 -> You want to develop the game from scratch ? You can code yourself ?
 -> Maybe just hire a developer and he would do the needful ?
 -> Maybe buy the code online ?

 If you really want to start from scratch,you have n number of choices.
 ->Your front-end depends on your framework of choice like angular,react,jquery,etc
 -> It's just not one framework,you need to design the entire architecture which will get complicated.
nemgun
Hero Member
*****
Offline Offline

Activity: 882
Merit: 533



View Profile WWW
April 05, 2017, 10:09:39 AM
 #8

what best JS framework for create similar game?
what best JS framework for create similar game?
That depends on a lot of things.
 -> You want to develop the game from scratch ? You can code yourself ?
 -> Maybe just hire a developer and he would do the needful ?
 -> Maybe buy the code online ?

 If you really want to start from scratch,you have n number of choices.
 ->Your front-end depends on your framework of choice like angular,react,jquery,etc
 -> It's just not one framework,you need to design the entire architecture which will get complicated.

How about reproducing it ?
Copy paste the sources and launch them from a local machine, just retrieve the Ajax calls and adapt an API to use them with a database (i suspect reddis), then you could start working on the frontend, as it is better to use NodeJS, you could use some templating engines or use boilerplates, which will give you a boost to release quicker.
Or
The best thing to do is to work on it yourself, with your own knowledge. you can even mix languages/frameworks if you are good enough at handling them.
Joel have good advises, stick to them.
Bemerand
Hero Member
*****
Offline Offline

Activity: 532
Merit: 500



View Profile
April 05, 2017, 10:11:13 AM
 #9

It ses jQuery, but it is made in javascript, you can try and open a console, then type : var t = new VideoPokerSystem()
It will ask for the Prize and maybe other informations, i did that just to test it and see what is the language, but i am sure at 90% that it is only JS. Especially when you check the sources, if it was something like scala, the sources would be different.
I think they are using something like Vue.js to render frontend as i found a JS object with informations about the page etc who are arranged for such framework.
I also checked more pages and it is all made in javascript, i like it.

How about you open your console and type
Quote
I Am Retarded = Stupid person (') -Dk in d4 a$$ towel head
and see what happens.

88.36255237114% of all ICO's are SCAMS
Joel_Jantsen
Legendary
*
Offline Offline

Activity: 1876
Merit: 1308

Get your game girl


View Profile
April 05, 2017, 11:49:11 AM
 #10

How about reproducing it ?
Copy paste the sources and launch them from a local machine, just retrieve the Ajax calls and adapt an API to use them with a database (i suspect reddis), then you could start working on the frontend, as it is better to use NodeJS, you could use some templating engines or use boilerplates, which will give you a boost to release quicker.
You cannot copy the back-endcode.Chrome dev tools won't allow you to have access to the backend code.If it was possible,most reliable websites would have thier algorithms used worldwide.Only DOM manipulation is possible.

How about you open your console and type
Quote
I Am Retarded = Stupid person (') -Dk in d4 a$$ towel head
and see what happens.
With your javascript skills,it will throw a run time error 'Intelligence Undefined '.
nemgun
Hero Member
*****
Offline Offline

Activity: 882
Merit: 533



View Profile WWW
April 05, 2017, 11:53:32 AM
 #11

How about reproducing it ?
Copy paste the sources and launch them from a local machine, just retrieve the Ajax calls and adapt an API to use them with a database (i suspect reddis), then you could start working on the frontend, as it is better to use NodeJS, you could use some templating engines or use boilerplates, which will give you a boost to release quicker.
You cannot copy the back-endcode.Chrome dev tools won't allow you to have access to the backend code.If it was possible,most reliable websites would have thier algorithms used worldwide.Only DOM manipulation is possible.

How about you open your console and type
Quote
I Am Retarded = Stupid person (') -Dk in d4 a$$ towel head
and see what happens.
With your javascript skills,it will throw a run time error 'Intelligence Undefined '. // Haha, you are killing !

The back-end must be built (or rebuilt ?) this is why i advised to rebuild a database and an API based on the cotent of the Ajax calls, an experienced developer don't need this to work, as he can simple adapt the script to his needs, but as crank may be a newbie in this case, i thought it it would be better to give him some directions.

Or, you can just buy a ready made script with full features. (i don't make or sell such scripts)
MrCrank (OP)
Sr. Member
****
Offline Offline

Activity: 1336
Merit: 258



View Profile
April 05, 2017, 03:59:42 PM
 #12

what best JS framework for create similar game?
what best JS framework for create similar game?
That depends on a lot of things.
 -> You want to develop the game from scratch ? You can code yourself ?
 -> Maybe just hire a developer and he would do the needful ?
 -> Maybe buy the code online ?

 If you really want to start from scratch,you have n number of choices.
 ->Your front-end depends on your framework of choice like angular,react,jquery,etc
 -> It's just not one framework,you need to design the entire architecture which will get complicated.

yes, i want to develop from scratch by self.
no need hire developer.

i think use angular..
MrCrank (OP)
Sr. Member
****
Offline Offline

Activity: 1336
Merit: 258



View Profile
April 05, 2017, 04:03:46 PM
 #13

How about reproducing it ?
Copy paste the sources and launch them from a local machine, just retrieve the Ajax calls and adapt an API to use them with a database (i suspect reddis), then you could start working on the frontend, as it is better to use NodeJS, you could use some templating engines or use boilerplates, which will give you a boost to release quicker.
You cannot copy the back-endcode.Chrome dev tools won't allow you to have access to the backend code.If it was possible,most reliable websites would have thier algorithms used worldwide.Only DOM manipulation is possible.

How about you open your console and type
Quote
I Am Retarded = Stupid person (') -Dk in d4 a$$ towel head
and see what happens.
With your javascript skills,it will throw a run time error 'Intelligence Undefined '. // Haha, you are killing !

The back-end must be built (or rebuilt ?) this is why i advised to rebuild a database and an API based on the cotent of the Ajax calls, an experienced developer don't need this to work, as he can simple adapt the script to his needs, but as crank may be a newbie in this case, i thought it it would be better to give him some directions.

Or, you can just buy a ready made script with full features. (i don't make or sell such scripts)


no need buy script.

ok, i will try cread nodejs app with angular.

Do you have another ideas?

thank.
cryptogear
Newbie
*
Offline Offline

Activity: 39
Merit: 0


View Profile
April 05, 2017, 04:09:38 PM
 #14

Doesn't Matter actually.What would you do with that information anyway ?

I want to create poker game and choose framework now
Try to find some open sourced projects, those could be a good base to build from
bussybuddy
Full Member
***
Offline Offline

Activity: 1176
Merit: 105


Chainjoes.com


View Profile
April 05, 2017, 04:15:55 PM
 #15

If you want to develop from scratch it will take long time till you will finish the beta plus bugs ...

Try to find something similar to convert to your needs if you can.

Regards,

fantomy
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
April 05, 2017, 04:20:15 PM
 #16

it uses Jquery.
nemgun
Hero Member
*****
Offline Offline

Activity: 882
Merit: 533



View Profile WWW
April 05, 2017, 06:32:31 PM
 #17

If you want to develop from scratch it will take long time till you will finish the beta plus bugs ...

Try to find something similar to convert to your needs if you can.

Regards,
Doesn't Matter actually.What would you do with that information anyway ?

I want to create poker game and choose framework now
Try to find some open sourced projects, those could be a good base to build from

Both are right, but i believe that my sollution is the best as you will get the scripts for some games ready to use, just needs some changes.
The problem with dice games or gambling games isn't related to how hard it is, because it isn't (as long as you don't cheat) it is just time consuming because a lot of aspects must be taken in count.
You should also use module.exports to manage easily the basic gambling functions.
Try to be as modular as possible, it will save you a lot of time.
MrCrank (OP)
Sr. Member
****
Offline Offline

Activity: 1336
Merit: 258



View Profile
April 08, 2017, 09:04:30 AM
 #18

If you want to develop from scratch it will take long time till you will finish the beta plus bugs ...

Try to find something similar to convert to your needs if you can.

Regards,
Doesn't Matter actually.What would you do with that information anyway ?

I want to create poker game and choose framework now
Try to find some open sourced projects, those could be a good base to build from

Both are right, but i believe that my sollution is the best as you will get the scripts for some games ready to use, just needs some changes.
The problem with dice games or gambling games isn't related to how hard it is, because it isn't (as long as you don't cheat) it is just time consuming because a lot of aspects must be taken in count.
You should also use module.exports to manage easily the basic gambling functions.
Try to be as modular as possible, it will save you a lot of time.

yes, but i get good experience coding and increase my level Smiley
nemgun
Hero Member
*****
Offline Offline

Activity: 882
Merit: 533



View Profile WWW
April 08, 2017, 12:10:33 PM
 #19

If you want to develop from scratch it will take long time till you will finish the beta plus bugs ...

Try to find something similar to convert to your needs if you can.

Regards,
Doesn't Matter actually.What would you do with that information anyway ?

I want to create poker game and choose framework now
Try to find some open sourced projects, those could be a good base to build from

Both are right, but i believe that my sollution is the best as you will get the scripts for some games ready to use, just needs some changes.
The problem with dice games or gambling games isn't related to how hard it is, because it isn't (as long as you don't cheat) it is just time consuming because a lot of aspects must be taken in count.
You should also use module.exports to manage easily the basic gambling functions.
Try to be as modular as possible, it will save you a lot of time.

yes, but i get good experience coding and increase my level Smiley

Great !
this kinde of platform doesn't really needs skilled programer, instead, it requires a lot of dicipline and a lot of comments, this way you won't be lost, and don't fall in the "It's my code" trap, it happened to me, just 5 minuts away and i forget what i was doing, then got lost in the code (it happens to everyone, don't laugh)
Also, don't put all the code in the same file, create one for each game or game section, with a common.js file, or create modules.
MrCrank (OP)
Sr. Member
****
Offline Offline

Activity: 1336
Merit: 258



View Profile
April 09, 2017, 03:53:06 PM
 #20


Great !
this kinde of platform doesn't really needs skilled programer, instead, it requires a lot of dicipline and a lot of comments, this way you won't be lost, and don't fall in the "It's my code" trap, it happened to me, just 5 minuts away and i forget what i was doing, then got lost in the code (it happens to everyone, don't laugh)
Also, don't put all the code in the same file, create one for each game or game section, with a common.js file, or create modules.

Ok, thanks for advice
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!