Skip to content

Instantly share code, notes, and snippets.

@gryphon2411
gryphon2411 / download-file-without-blob.js
Last active March 19, 2023 15:18
Download file without blob
/**
* Downloads a file from a given URL.
**/
function download(url) {
return new Promise((resolve, reject) => {
// Workaround for a programmatical file download.
const anchor = document.createElement("a");
anchor.href = url;
anchor.setAttribute("download", "");
document.body.appendChild(anchor);
@gryphon2411
gryphon2411 / main.cpp
Last active November 28, 2019 17:21
אתחול מטריצה, קליטת ערכים לתוכה, ופליטת הערכים שנקלטו לתוכה
int main()
{
// מטריצה היא מערך רגיל, שכל תא בו הוא מערך בפני עצמו
// המשתנה בשם "מטריקס" הוא מערך שכל תא בו הוא מערך בפני עצמו ("אינט" עם כוכבית) - מה שהופך אותו למטריצה
// מאחורי הקלעים - מטריקס הוא מערך רגיל
// אתחול המטריצה
int **matrix, rows, columns, row, column;
cout << "Please enter number of rows:" << endl;
cin >> rows;
initial creation