Skip to content

Instantly share code, notes, and snippets.

View leduclinh7141's full-sized avatar

Le Duc Linh leduclinh7141

  • Japan, Chiba
View GitHub Profile
@leduclinh7141
leduclinh7141 / 5191.dart
Last active March 15, 2024 14:01
Generated code from pixels2flutter.dev
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
@leduclinh7141
leduclinh7141 / 5187.dart
Last active March 15, 2024 13:50
Generated code from pixels2flutter.dev
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
@leduclinh7141
leduclinh7141 / 5233.dart
Last active March 15, 2024 13:43
Generated code from pixels2flutter.dev
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
@leduclinh7141
leduclinh7141 / 5230.dart
Last active March 15, 2024 13:35
Generated code from pixels2flutter.dev
import 'package:flutter/material.dart';
void main() {
runApp(AuditApp());
}
class AuditApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
@leduclinh7141
leduclinh7141 / profile.dart
Last active March 15, 2024 13:26
Generated code from pixels2flutter.dev
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
@leduclinh7141
leduclinh7141 / AuthyToOtherAuthenticator.md
Last active November 27, 2022 03:37 — forked from gboudreau/AuthyToOtherAuthenticator.md
Export TOTP tokens from Authy

Generating Authy passwords on other authenticators


There is an increasing count of applications which use Authy for two-factor authentication. However many users who aren't using Authy, have their own authenticator setup up already and do not wish to use two applications for generating passwords.

Since I use 1Password for all of my password storing/generating needs, I was looking for a solution to use Authy passwords on that. I couldn't find any completely working solutions, however I stumbled upon a gist by Brian Hartvigsen. His post had a neat code with it to generate QR codes for you to use on your favorite authenticator.

His method is to extract the secret keys using Authy's Google Chrome app via Developer Tools. If this was not possible, I guess people would be reverse engineering the Android app or something like that. But when I tried that code, nothing appeared on the screen. My guess is that Brian used the

@leduclinh7141
leduclinh7141 / mopera-u-cellular6.mobileconfig
Created November 6, 2022 12:31 — forked from katojunya/mopera-u-cellular6.mobileconfig
APN configuration profile for IPv6 enabled NTT DoCoMo mopera U
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>ConsentText</key>
<dict>
<key>default</key>
<string>APN構成プロファイル (IPv6/Cellular Payload版)</string>
</dict>
<key>PayloadContent</key>
@leduclinh7141
leduclinh7141 / A Hypriot K8S install.md
Created June 9, 2019 07:55 — forked from elafargue/A Hypriot K8S install.md
K8s (v1.10.5) on Hypriot (July 2018)
@leduclinh7141
leduclinh7141 / py2ipynb.py
Last active October 21, 2018 08:13 — forked from KoheiKanagu/py2ipynb.py
Convert Python py file to Jupiter Notebook ipynb file
import nbformat
import os
import sys
file_name = sys.argv[1]
def parse(code: list) -> nbformat.v4:
nb = nbformat.v4.new_notebook()
nb["cells"] = []