Category Archives: Errors
Error: fix Chrome browser update error.
If you try to update the Chrome browser on Settings – About Chrome and you receive this error:
1 | error code 7: 0x80040902: 50 -- system level ... |
then you need to stop all tasks that depend on the Chrome browser. The error tells me something changed the browser functionality, maybe a browser hijacker threat or a similar malware rooted in the browser area.… Read More »
Google Apps Script – Google Analytics API usage limit error – part 051.
1 2 3 | GoogleJsonResponseException: API call to youtube.channels.list failed with error: The request cannot be completed because you have exceeded your <a href="/youtube/v3/getting-started#quota">quota</a>. |
… indicating that you have reached the usage limit for the YouTube API. for each A.P.I. comes a different limit of usage, on the case of YouTube API, each user is assigned a set of quota units per day, which can be used to make requests to the A.P.I. and once the usage limit… Read More »
Error: The ebuild selected to satisfy …
I found this error in the Gentoo Linux distro when I used the emerge command and return me this text:
1 2 3 | ... The ebuild selected to satisfy ... |
Open the /etc/portage/make.conf uncomment the old USE row and use this:
1 | USE="-* X acl alsa" |
The /etc/portage/make.conf file is used to customize the Portage environment on a global level to every package that is emerged. The USE… Read More »
Web – Firefox browser and debug options for programmers and users.
Today’s tutorial solves a number of issues for the programmer and the regular user. First. let show you a download tool for GitHub. This online tool allows you to download any folder from GitHub without using the classic git clone command. With this online tool, I download this animated parrot theme from Mozilla Developer Network… Read More »
Error: Discord cannot find Update.
Discord can have problems with the process of install and uninstall. The error is shown in the next image: This error can appear when you want to uninstall discord to solve errors like Discord Javascript Error [Fatal Error]. To fix that error use this operation: try to close all Discord process tasks using Task Manager,… Read More »
Web – Detect errors show by Blogger theme.
The problems with the Google Blogger websites are the same you cannot have good control over the theme and the newest features are in progress. A few days ago, I wrote some tutorials and because I published it without seeing it looks good. Yesterday I take a look at the blogger and I see this:… Read More »
Error: failed to push some refs on GitHub.
This error I got from GitHub when I try to push my source code:
1 2 3 4 5 6 7 8 9 10 | [mythcat@desk django]$ git push -u origin master Username for 'https://github.com': catafest Password for 'https://catafest@github.com': To https://github.com/catafest/django_chart.git ! [rejected] master -> master (non-fast-forward) error: failed to push some refs to 'https://github.com/catafest/django_chart.git' hint: Updates were rejected because the tip of your current branch is behind hint: its remote counterpart. Integrate the remote changes (e.g. hint: 'git pull ...') before pushing again. hint: See the 'Note about fast-forwards' in 'git push --help' for details. |
You need to use the argument –force:
1 2 3 4 5 6 7 8 9 10 11 12 | [mythcat@desk django]$ git push --force origin master Username for 'https://github.com': catafest Password for 'https://catafest@github.com': Enumerating objects: 8690, done. Counting objects: 100% (8690/8690), done. Delta compression using up to 2 threads Compressing objects: 100% (5020/5020), done. Writing objects: 100% (8690/8690), 14.10 MiB | 744.00 KiB/s, done. Total 8690 (delta 2593), reused 8690 (delta 2593) remote: Resolving deltas: 100% (2593/2593), done. To https://github.com/catafest/django_chart.git + 998aaa4e...8c36d1f7 master -> master (forced update) |