Let's say you want to host domains first.com and second.com.
Create folders for their files:
| <?php | |
| $template =[ | |
| '@name@' => [ | |
| 'User name', | |
| 'Anik', | |
| ], | |
| '@email@' => [ | |
| 'Email', | |
| 'my.mail@mail.com' |
| import requests | |
| from BeautifulSoup import BeautifulSoup as BS | |
| import re | |
| def get_dl_page(package_id): | |
| get_request = requests.get('https://apkpure.com/search?q=' + package_id) | |
| page = BS(get_request.text) | |
| # it is assumed that the first search result is the thing we are looking for | |
| link_ps = page.findAll('p', {'class': 'search-title'}) | |
| page_link = link_ps[0].a.get('href') |
| <snippet> | |
| <content><![CDATA[ | |
| public function ${1:relationship}() | |
| { | |
| return \$this->belongsToMany(${1/^(.+)$/(?1\u$1:)/g}::class, {$2:table}); | |
| } | |
| ]]></content> | |
| <!-- Optional: Set a tabTrigger to define how to trigger the snippet --> | |
| <tabTrigger>belt</tabTrigger> | |
| <!-- Optional: Set a scope to limit where the snippet will trigger --> |
| import facebook | |
| from collections import Counter | |
| import requests | |
| likes_counter = Counter() | |
| # Get temp tokens at: https://developers.facebook.com/tools/explorer/ | |
| USER_ACCESS_TOKEN = "" | |
| client = facebook.GraphAPI(access_token=USER_ACCESS_TOKEN, version='2.5') |
| <?php | |
| Route::group([ | |
| 'prefix' => 'api/v1', | |
| 'middleware' => ['api', 'auth:api'] | |
| ], function () { | |
| Route::get('/', function () { | |
| return Auth::guard('api')->user(); | |
| }); |
| // This will open up a prompt for text to send to a console session on digital ocean | |
| // Useful for long passwords | |
| (function () { | |
| var t = prompt("Enter text to be sent to console, (This wont send the enter keystroke)").split(""); | |
| function f() { | |
| var character = t.shift(); | |
| var i=[]; | |
| var code = character.charCodeAt(); | |
| var needs_shift = "!@#$%^&*()_+{}:\"<>?~|".indexOf(character) !== -1 |
I have collected and moderated these ideas from various public sources and put into one place so that problem solvers and solution developers may find inspirations. Because I wish to update it regularly, I have setup as a single page wiki. You may try these ideas on hackathons/competitions/research; some are quite intense problems and some are not. Many of the problems were prepared keeping Dhaka/Bangladesh in mind, but of course can be applied to just about any underdeveloped/developing and sometimes developed countries.
| /** | |
| * Mass (bulk) insert or update on duplicate for Laravel 4/5 | |
| * | |
| * insertOrUpdate([ | |
| * ['id'=>1,'value'=>10], | |
| * ['id'=>2,'value'=>60] | |
| * ]); | |
| * | |
| * | |
| * @param array $rows |