What do you want to save?
Add Code snippet
New code examples
-
Javascript 2022-03-28 00:25:20
javascript download string as file
function download(filename, text) { var element = document.createElement('a'); element.setAttribute('href', 'data:text/plain;charset=utf-8,' + encodeURIComponent(text)); element.setAttribute('download', filename); element.style.display = 'none'; ... Add solution -
Shell/Bash 2022-03-28 00:25:19
how to send a pull request in git
git push origin some-branch Add solution -
PHP 2022-03-28 00:25:01
wordpress get_date
<?php echo get_the_date( 'l F j, Y' ); ?> Add solution -
C# 2022-03-28 00:15:17
Delete last modification on EntityFramework Core
Remove-migration Add solution -
Best helpers
Ranking is empty