How to import another "app" into my next-project? - merge

I am building my very first react/next.js-page.
Time is short and I would like to cut some corners if possible.
You can find it on the master-branch of this repo: https://github.com/ehak123/SpeedDating
I want to add a simple login/registration-form and found this great "how-to-guide" online. It really looks sleak. The code for the finished login/reg-form is found on this repo: https://github.com/cornflourblue/next-js-11-registration-login-example
How do I in a simple way import this into my own project?
I have tried to "merge" the two projects in so many ways but keep hitting into problems. I searched the web for help, but cant really find any. I figure: it must exist an easier way, like a custom way to do this?

Related

Unable to use gist in medium

I have searched a lot and tried several approaches. I believe I am doing something wrong as I am unable to have code from gist in the medium plataform bloggers.
I have only get the links on there but the code does not show or is not integrate. I have tried all the modalities of gist share code possible and paste using the embedded option in medium.
For example,
https://gist.github.com/GMoneyAccount/84fb1a9836aa91054e1714ac9d176630
https://gist.github.com/GMoneyAccount/84fb1a9836aa91054e1714ac9d176630.js">
https://gist.github.com/84fb1a9836aa91054e1714ac9d176630.git
https://gist.github.com/84fb1a9836aa91054e1714ac9d176630
https://gist.github.com/SumeraMartin/6369e704caffa8bacdaa859a1bec8b7d
https://gist.github.com/SumeraMartin/6369e704caffa8bacdaa859a1bec8b7d
This code does not show in the medium.
What I am missing? I have looked how people do but does not work for me for some reason and also I have changed from google to firefox and nothing changed.
The vendor that they use for processing embeds is currently down. You can watch the status of the incident here: http://status.embed.ly/
So, basically, the way you are doing it isn't a problem. You'll just have to wait until the incident resolves.
Cheers.

Candlestick chart on bitcoinwisdom

Im in need for good candlestick chart for my web app and chart at http://bitcoinwisdom.com/ is really what Im looking for. I like the way you can zoom and move with it. Is it possible to figure out what they are using or do you think they made it up on their own? If so with what tools? Another amazing charting can be found here https://www.tradingview.com/e/ these two sites have even better charting than some desktop apps and I wanna know how they did it.
In searching the bitcoinwisdom's forums I found a couple posts asking for the exact same thing. In fact, I stumbled upon your SO post here looking for the same thing.
According to those forum posts' responses they used d3js.org with the rest being custom code. Unfortunately for us as their implementation is very impressive! View source on the page and look for the JS files they are referencing. The code is obfuscated and minified so porting it will be very difficult.

open source/free MPMediaPicker replacement?

i'm looking to rebuild the MPMediaPicker from scratch (it's using my own song/artist data).
Does anyone know of an open source and free replacement for this? I'd really like to avoid creating all those views/etc
I've found PSMediaPicker, but it's $100.
I could have sworn I came across one - but I'm unable to find it anywhere.
If you are creating one for your own song/artist data then I would highly recommend just creating your own. If it is for music then it wouldn't really be much more than a modal view with some UITableViews in it, and since you know how the data is organized it shouldn't take long to get it up and running.
Bottom line - t will probably take you longer to find and integrate a suitable replacement than it would to just roll your own.

GWT - area selection/imagemap

So, I'm starting to use GWT and I am having a little problem.
I have to retrieve some information about a building and I want to show to the user a floorplan for him to choose from where does he want information to be shown.
So, I tried an imagemap, but Iit is not working. Do someone has any suggestion or example of that?
Thank you,
Mauricio
I'm sure there are a couple ways of going about this. You might want to try some extension of the an already existing class as was done here with ComplexPanel http://www.koders.com/java/fid1ACE81656C6F49C2E81126751E938A61215D6A6F.aspx?s=mdef%3ainsert

GOLD Parse, how do you actually implement your code?

I am not quite sure how to implement my the code after generating the skeleton. I didnt use const only, i do have main files and i tried several c(++) versions along with c# and still i dont understand. I dont think any of them can load a file and parse test files (i know gold builder can parse my test files).
The Kessels C skeleton looks complete. Buts not, it uses a struct and members (Token->Reduction->TokenStack) yet when i search TokenStack i cant find a place where it is defined, only used. I feel like i am missing something. I cant find Kessels other code anywhere.
My question is how do i implement my body? (is there another skeleton you prefer), are there any other downloads i overlooked? i tried looking at these downloads but i didnt understand what to do with them. It also looked more like example source code then a template http://www.devincook.com/goldparser/engine/c/index.htm
PS: I wouldnt mind doing a C# implementation, i am better with c(++).
I've used the Calitha C# Engine. Let me know (by posting a comment to this answer) if you still want an answer, which I can answer using my knowledge of this C# engine.
My question is how do i implement my body? (is there another skeleton you prefer), are there any other downloads i overlooked?
The Calitha Engine download includes source for the Engine, and a sample program (named "TextCalc") which illustrates using it.