Skip to content

Instantly share code, notes, and snippets.

View J2TEAM's full-sized avatar
💭
I may be slow to respond.

JUNO_OKYO J2TEAM

💭
I may be slow to respond.
View GitHub Profile
a,abandon,ability,able,abortion,about,above,abroad,absence,absolute,absolutely,absorb,abuse,academic,accept,access,accident,accompany,accomplish,according,account,accurate,accuse,achieve,achievement,acid,acknowledge,acquire,across,act,action,active,activist,activity,actor,actress,actual,actually,ad,adapt,add,addition,additional,address,adequate,adjust,adjustment,administration,administrator,admire,admission,admit,adolescent,adopt,adult,advance,advanced,advantage,adventure,advertising,advice,advise,adviser,advocate,affair,affect,afford,afraid,African,African-American,after,afternoon,again,against,age,agency,agenda,agent,aggressive,ago,agree,agreement,agricultural,ah,ahead,aid,aide,AIDS,aim,air,aircraft,airline,airport,album,alcohol,alive,all,alliance,allow,ally,almost,alone,along,already,also,alter,alternative,although,always,AM,amazing,American,among,amount,analysis,analyst,analyze,ancient,and,anger,angle,angry,animal,anniversary,announce,annual,another,answer,anticipate,anxiety,any,anybody,anymore,anyone,any
@J2TEAM
J2TEAM / youtube.user.js
Last active October 3, 2023 13:06
Tự động đóng tab Youtube khi hết video. Sử dụng bằng cách cài Tampermonkey nhé.
// ==UserScript==
// @name YouTube Auto Close
// @namespace http://j2team.dev/
// @version 0.1
// @description Automatically closes YouTube videos after playback.
// @author JUNO_OKYO
// @match https://www.youtube.com/watch*
// @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com
// @grant window.close
// ==/UserScript==
@J2TEAM
J2TEAM / demo.au3
Created December 26, 2022 07:15
AutoIt Hotkey Example
#cs ----------------------------------------------------------------------------
AutoIt Version: 3.3.14.5
Author: JUNO_OKYO
Script Function:
Template AutoIt script.
#ce ----------------------------------------------------------------------------
@J2TEAM
J2TEAM / example.html
Created June 12, 2021 10:26 — forked from steve228uk/example.html
Deeplink Youtube
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<script type="text/javascript">
window.onload = function() {
@J2TEAM
J2TEAM / git-compare.sh
Created April 5, 2021 08:02 — forked from jimmysawczuk/git-compare.sh
Compare commit differences between two branches
git log master..dev --pretty=format:"%Cgreen %m %h %Creset%s (%ae) %Cred%d%Creset" --left-right
@J2TEAM
J2TEAM / envato-preview-bypass.js
Created December 28, 2020 07:21
Bookmarklet to remove preview iframe on Envato sites (Themeforest, Codecanyon)
javascript:window.top.location.replace(document.querySelector('.full-screen-preview__frame').src);
@J2TEAM
J2TEAM / J2TEAM Security - Privacy Policy.md
Last active March 17, 2023 14:01
Privacy Policy for J2TEAM Security

J2TEAM Security - Privacy Policy

This privacy policy has been compiled to better serve those who are concerned with how their 'Personally Identifiable Information' (PII) is being used online. PII, as described in US privacy law and information security, is information that can be used on its own or with other information to identify, contact, or locate a single person, or to identify an individual in context. Please read our privacy policy carefully to get a clear understanding of how we collect, use, protect or otherwise handle your Personally Identifiable Information in accordance with our Extension.

What personal information do we collect from the people that use J2TEAM Security extension?

We DO NOT collect any Personally identifiable Information. We only collect extension usage statistics to help improve user experience. If you want to opt-out of Google Analytics tracking, please visit https://tools.google.com/dlpage/gaoptout.

When do we collect information?

@J2TEAM
J2TEAM / Bookmarklet.txt
Created January 9, 2020 03:51
Bookmarklet to create links for your post on Facebook group. Create a new bookmark and paste this code.
data:text/html,<p style="text-align:center"><a href="https://www.junookyo.com" contenteditable>EDIT_ME</a></p>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="author" content="Jake Albaugh">
<title>JUNO_OKYO</title>
</head>
<body>
<!-- Simple audio playback -->
@J2TEAM
J2TEAM / log.js
Created March 21, 2019 19:09
Auto disable console.log() on production
const DEBUG = false;
if (!DEBUG) {
if (!window.console) window.console = {};
let methods = ['log', 'debug', 'warn', 'info'];
for (let i = 0; i < methods.length; i++) {
console[methods[i]] = function() {};
}
}