Skip to content

Instantly share code, notes, and snippets.

@ravisiyer
Last active April 11, 2024 06:44
Show Gist options
  • Save ravisiyer/2af538d9714cb276b5ed8fda0d54c180 to your computer and use it in GitHub Desktop.
Save ravisiyer/2af538d9714cb276b5ed8fda0d54c180 to your computer and use it in GitHub Desktop.
Image resize test
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Image Resize Test</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<main>
<div>
<h1>Image Resize Test</h1>
<p>
Dummy Text: Getting started with git gui on Windows: I was facing this
issue with Git GUI previously and did not have the time to investigate
it. Checked it out today and got the above solutions and another
solution. The issue: Opening Git GUI from Windows Start/Search leads
to Git GUI using current directory as C:\Users\Ravi-user and after
some time giving a message of 5000 files limit reached and it seems to
be listing all files in that directory as Unstaged! The solution was
to delete the .git directory that I seem to have created in
C:\Users\Ravi-user many months ago as I was trying out Git and Git
GUI. After that opening the Git GUI from Start/Search leads to a
different start window giving options to open a new (local) repo or
open an existing repo.
</p>
<p>
Below HTML code: &lt;img src=&quot;./pic1.jpg&quot;
width=&quot;1200&quot; /&gt;
</p>
<img src="./pic1.jpg" width="1200" />
<p>
Dummy Text: Github Desktop allows working on local directories. Its
user interface is more polished that Git GUI. However, when I ran it
after many months, it was very slow which I later understood was, in
all probability, because it was auto updating. Once the update got
done, it was quite fast. An issue was that I could not close the
program in the midst of its long update as it warned of possibly
breaking the installation.
</p>
</div>
</main>
</body>
</html>
main {
display: flex;
justify-content: center;
align-items: center;
}
img {
max-width: 100%;
}
@ravisiyer
Copy link
Author

pic1.jpg

pic1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment