You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
Instantly share code, notes, and snippets.
🐳
Deep Learning with Generative AI
Chanchana Sornsoontorn
offchan42
🐳
Deep Learning with Generative AI
Machine Learning Engineer, Full Stack Developer, Ex-Competitive Programmer, Vim+VSCode user.
I fork only projects that I contributed to.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Generate all 4096 permutations of "happy new year" in Python 3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
No bullsh*t resistance training and diet guide for improving your physique and performance. To obtain spectacular changes, we must train both your body and your mind.
Resistance training introduction
Resistance training A.K.A. strength training A.K.A. weight training is done by lifting weights in the gym or using bodyweight in order to improve your physique and performance.
The physique goal might be to gain muscle, lose fat, or maintain your weight.
The performance goal might be to improve strength, endurance, cardiovascularity, power, or technical showoff.
NOTE: I also talk about diet. I'm showing you how to improve your physique in scientifically proven ways. After reading this open-mindedly, you are going to be able to manipulate your bodyweight like crazy.
I also talk about how to eliminate excuses and difficulty for going to the gym. I'll show you how you can train your mind to be a new person.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Short Summary of (some language) development in Visual Studio
Building and using DLL in Visual C++
Create a library project to build DLL file. You will get .lib, .dll, and .h files.
Create another project to use the DLL file. Then follow steps 2 to 6 on this project. You need to tell Visual Studio where to find the header files and library files via its Properties window.
Go to project Properties > C/C++ > General and set Additional Include Directories to directory for header files (.h).
(Or you can just copy the header files into your project.)
If you build the project, you will get error LNK2019: unresolved external symbol because there is no library file yet.
Or just follow the Fast Instructions I wrote below.
If you want to install CUDA toolkit on your own, or if you want to install the latest tensorflow version, then you need to follow official installation guide.