This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Requires AutoHotkey v2.0 | |
; Reset coordinate system to be based on screen | |
CoordMode "Mouse", "Screen" | |
Sleep 7000 | |
Loop 5 | |
{ | |
; Click |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="timerDiv"> | |
<button class="timerButton" onclick="toggleTimer()">Start Timer</button> | |
<span class="timer"> | |
<span class="min">00</span> : <span class="sec">00</span> | |
</span> | |
<button onclick="resetTimer()">Reset Timer</button> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Turn Off Spell Check --> | |
<input type="text" spellcheck="false"> | |
<!-- Auto Focus --> | |
<input type="text" autofocus> | |
<!-- Content Editable --> | |
<p contenteditable></p> | |
<!-- Horizontal Centering --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass[a4paper,11pt]{article} | |
% Use Bengali | |
% Must use XeLaTeX or LuaLaTeX compiler | |
\usepackage{polyglossia} | |
\setmainlanguage{english} | |
\newfontfamily\englishfont{Segoe UI} | |
% \setmainfont{Noto Serif} | |
% \setsansfont{Noto Sans} | |
% \setmonofont{Noto Mono} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Repeated Tasks</title> | |
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous"> | |
</head> | |
<body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Test the existance of a string | |
let myString = 'Hello, World!'; | |
let myRegex = /Hello/; | |
let result = myRegex.test( myString ); | |
console.log( result ); | |
// Extract a part of a string | |
let myString = 'Hello, World!'; | |
let myRegex = /Hello/; | |
let result = myString.match( myRegex ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class newPage extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return Scaffold( | |
appBar: AppBar( | |
title: Text(''), | |
centerTitle: true, | |
), // AppBar | |
body: SingleChildScrollView( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Check if original remote repository is already added or not | |
git remote -v | |
// Output | |
origin https://github.com/YOUR_NAME/REPO_NAME.git (fetch) | |
origin https://github.com/YOUR_NAME/REPO_NAME.git (pull) | |
upstream https://github.com/ORGINAL_USER/REPO_NAME.git (fetch) | |
upstream https://github.com/ORGINAL_USER/REPO_NAME.git (push) | |
// If it only shows origin, original remote repo is not added | |
// If not, add it |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*.aux | |
*.log | |
*.out | |
*.synctex.gz | |
*.toc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "phpmyadmin/phpmyadmin", | |
"type": "project", | |
"description": "A web interface for MySQL and MariaDB", | |
"keywords": ["phpmyadmin","mysql","web"], | |
"homepage": "https://www.phpmyadmin.net/", | |
"support": { | |
"forum": "https://www.phpmyadmin.net/support/", | |
"issues": "https://github.com/phpmyadmin/phpmyadmin/issues", | |
"wiki": "https://wiki.phpmyadmin.net/", |
NewerOlder