phpMyAdmin Cannot log in to the MySQL server. and it showing SQLSTATE[HY000] [1698] Access denied for user 'root'@'localhost'
sudo mysql -u root
use mysql;
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'new_password';
phpMyAdmin Cannot log in to the MySQL server. and it showing SQLSTATE[HY000] [1698] Access denied for user 'root'@'localhost'
sudo mysql -u root
use mysql;
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'new_password';
NET USE * \\serverpathOrIp\Files Password /user:username /PERSISTENT:YES
/** | |
* Function: convert_number | |
* | |
* Description: | |
* Converts a given integer (in range [0..1T-1], inclusive) into | |
* alphabetical format ("one", "two", etc.) | |
* | |
* @int | |
* | |
* @return string |
[{ | |
"id": "1", | |
"title": "Two Sum", | |
"question": "Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target.\nYou may assume that each input would have exactly one solution, and you may not use the same element twice.\nYou can return the answer in any order.", | |
"examples": [ | |
"Input: nums = [2,7,11,15], target = 9", | |
"Output: [0,1]", | |
"Output: Because nums[0] + nums[1] == 9, we return [0, 1].", | |
"Input: nums = [3,2,4], target = 6", | |
"Output: [1,2]", |
The latest version of Sublime Text 3 (Build 3211) 100% working License Key.
🔗 Download Sublime Text 3 x86bit
🔗 Download Sublime Text 3 x64bit
// run 1) on opac-detail pages & 2) if no user is signed in | |
if (!!location.pathname.match('/cgi-bin/koha/opac-detail.pl') && !$('.loggedinusername').length) { | |
// replace 856$u links with a link to login instead | |
// this would need to be tweaked if there are multiple URLs per record | |
$('.results_summary.online_resources a') | |
.replaceWith('<a href="/cgi-bin/koha/opac-user.pl">login to view PDF</a>') | |
} |
Enterprise: NJVYC-BMHX2-G77MM-4XJMR-6Q8QF | |
Professional: KBJFW-NXHK6-W4WJM-CRMQB-G3CDH | |
Keys are generic ones. These are the same from MSDN account. | |
Product Key : -6Q8QF | |
Validity : Valid | |
Product ID : 00369-90000-00000-AA703 | |
Advanced ID : XXXXX-03699-000-000000-00-1032-9200.0000-0672017 |
----- BEGIN LICENSE ----- | |
sgbteam | |
Single User License | |
EA7E-1153259 | |
8891CBB9 F1513E4F 1A3405C1 A865D53F | |
115F202E 7B91AB2D 0D2A40ED 352B269B | |
76E84F0B CD69BFC7 59F2DFEF E267328F | |
215652A3 E88F9D8F 4C38E3BA 5B2DAAE4 | |
969624E7 DC9CD4D5 717FB40C 1B9738CF | |
20B3C4F1 E917B5B3 87C38D9C ACCE7DD8 |
<!-- using the split filter --> | |
{% for post in site.posts limit:10 %} | |
<div class="post-preview"> | |
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2> | |
<span class="post-date">{{ post.date | date: "%B %d, %Y" }}</span> | |
{{ post.content | split:'<!--break-->' | first }} | |
{% if post.content contains '<!--break-->' %} | |
<a href="{{ post.url }}">read more</a> | |
{% endif %} | |
</div> |