Skip to content

Instantly share code, notes, and snippets.

View khuongsatou's full-sized avatar
🏄‍♂️

Nguyễn Văn Khương khuongsatou

🏄‍♂️
View GitHub Profile
@khuongsatou
khuongsatou / main.dart
Created January 30, 2022 08:37 — forked from ffeu/main.dart
Flutter Main Example with StreamBuilder
import 'dart:async';
import 'package:flutter/material.dart';
void main() => runApp(new MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
@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?

@P8H
P8H / snippet.py
Last active April 4, 2022 06:12
Display two Images or SVGs side by side in a Jupyter/Colab Notebook
from IPython.display import HTML
style = "<style>#output-body{display:flex; flex-direction: row;}</style>"
display(HTML(style))
display(SVG('level_0_eval/cg.svg'))
display(SVG('level_0_eval/cg.svg'))
@quangdh
quangdh / codepush.md
Last active May 6, 2021 02:48
Tổng hợp các lệnh Code Push cơ bản

TỔNG HỢP CÁC LỆNH CODEPUSH CLI CƠ BẢN

Nhóm lệnh cơ bản

Login vào tài khoản AppCenter

code-push login

Logout tài khoản AppCenter

code-push logout

Xem đang login vào tài khoản AppCenter nào

code-push whoami

@hiepxanh
hiepxanh / speech viet.js
Last active May 7, 2024 11:55
show list voice and speak vietnamese
var langList = document.getElementById('langList');
if ('speechSynthesis' in window) {
// Start an html table for languages details
var text = '<table border=1><tr><th>Default<th>Language<th>Local<th>Name<th>URI</tr>';
// Get voices; add to table markup
function loadVoices() {
var voices = speechSynthesis.getVoices();
voices.forEach(function(voice, i) {
// Add all details to table
@tomysmile
tomysmile / mac-setup-redis.md
Last active May 23, 2024 03:17
Brew install Redis on Mac

type below:

brew update
brew install redis

To have launchd start redis now and restart at login:

brew services start redis
@brentvatne
brentvatne / logs.markdown
Last active February 17, 2022 16:00
Logs for iOS / Android on your computer

Logs in iOS simulator

Option 1: Use GUI log

  1. In simulator, press ⌘ + / or go to Debug -> Open System Log.
  2. That's it.

Option 2: Open it in terminal

  1. Run instruments -s devices