The following debugging information was generated by Atom Beautify on Thu Dec 01 2016 22:19:10 GMT+0600 (Bangladesh Standard Time).
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
| সি এরজন্য এই দুইটা টিউটো ফলো করেন => | |
| http://url.mashpy.me/ctuto (শরীফ আহমেদ ১০১ টা টিউটরিয়াল) | |
| http://url.mashpy.me/ctamim (তামিম শাহরিয়ার সুবিন) | |
| প্রথম লিঙ্কে সি প্রোগ্রামিং এর বেসিক থেকে এডভান্স+প্রোগ্রামিং কনটেস্ট সম্পর্কে আলোচনা করা হয়েছে। | |
| আর পরের লিঙ্কটা সি প্রোগ্রামিং এর একেবারে বেসিক জানতে সাহায্য করবে। | |
| ভিডিও টিউটরিয়ালের পাশাপাশি নিটনের সবার জন্য সি বইটাও যদি কিনে পড়া শুরু করেন তাহলে অনেক ভাল হবে। | |
| আর সি প্লাস প্লাসের জন্য বাংলাতে ভিডিও টিউটরিয়াল তেমন নাই without Bdgeeks. | |
| http://url.mashpy.me/164 (বিডিগিকস ৪৫ টিউটরিয়াল) |
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
Show hidden characters
| { | |
| "presets": [ | |
| ["env", { | |
| "targets": { | |
| "node": "6.10" | |
| } | |
| }] | |
| ] | |
| } |
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
| var Sequelize = require('sequelize'); | |
| var sequelize = new Sequelize(undefined, undefined, undefined, { | |
| 'dialect': 'sqlite', | |
| 'storage': __dirname + '/basic-sqlite-database.sqlite' | |
| }); | |
| var Todo = sequelize.define('todo', { | |
| description: { | |
| type: Sequelize.STRING, | |
| allowNull: false, |
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
| // Setup Firestore. Note that all of these will be asyncronous tasks and can have a .then attached. Write in a config process for Firebase. Include the necessary process.env files and instructions how to make a .env file. | |
| *************************************************************** | |
| // Add data - C | |
| firestore.collection("CollectionName").add({ | |
| key: value, | |
| key: value, | |
| }) |
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
| $('body').on('mousewheel DOMMouseScroll', function(e){ | |
| if(typeof e.originalEvent.detail == 'number' && e.originalEvent.detail !== 0) { | |
| if(e.originalEvent.detail > 0) { | |
| console.log('Down'); | |
| } else if(e.originalEvent.detail < 0){ | |
| console.log('Up'); | |
| } | |
| } else if (typeof e.originalEvent.wheelDelta == 'number') { | |
| if(e.originalEvent.wheelDelta < 0) { | |
| console.log('Down'); |
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
| @layer utilities { | |
| .text-gradient { | |
| background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| } | |
| } |
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
| # 1. Install brew --> http://brew.sh/ | |
| # 2. run the following commands in your Terminal | |
| brew tap homebrew/dupes | |
| brew tap homebrew/versions | |
| brew tap homebrew/homebrew-php | |
| brew install --with-openssl curl | |
| brew install --with-homebrew-curl --with-apache php71 | |
| brew install php71-mcrypt php71-imagick | |
| # 3. Follow these instructions to make Apache and php-cli use the newer php executable and make the change persist after reboot. | |
| brew info php71 |
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
| <?php | |
| use Illuminate\Support\Facades\Log; | |
| use Symfony\Component\HttpFoundation\File\UploadedFile; | |
| /** | |
| * stream - Handle raw input stream | |
| * | |
| * LICENSE: This source file is subject to version 3.01 of the GPL license | |
| * that is available through the world-wide-web at the following URI: |
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
| { | |
| "meta": { | |
| "code": 200 | |
| }, | |
| "data": [ | |
| { | |
| "attribution": null, | |
| "tags": [], | |
| "type": "image", | |
| "location": null, |
OlderNewer