- Get the .deb from https://proton.me/authenticator/download
- Assuming the filename is ProtonAuthenticator-x.y.z.deb
- Run
mkdir AppDir dpkg-deb -x pa.deb AppDir
- Get linuxdeploy https://github.com/linuxdeploy/linuxdeploy/releases/
- Run
This file contains hidden or 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
| { | |
| "tags": [ | |
| { | |
| "id": "software", | |
| "label": "SOFTWARE" | |
| }, | |
| { | |
| "id": "offshore", | |
| "label": "OFFSHORE" | |
| }, |
This file contains hidden or 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": "Lily58", | |
| "vendorProductId": 81324845, | |
| "macros": ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], | |
| "layers": [ | |
| [ | |
| "KC_ESC", | |
| "KC_1", | |
| "KC_2", | |
| "KC_3", |
This file contains hidden or 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
| #!/bin/bash | |
| # --- Custom Git Prompt Script --- | |
| # This script is meant to be SOURCED, not executed. | |
| # e.g., append `source prompt.sh` at the end of .bashrc | |
| # This function gets the current git branch and status | |
| parse_git_status() { | |
| # Return early if not in a git repository | |
| local git_dir |
This file contains hidden or 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
| using System; | |
| public abstract class Option<T> | |
| { | |
| public static Option<T> some(T value) => new Some(value); //we need these to make the actual Some/None constructors internal | |
| public static Option<T> none() => new None(); | |
| public sealed class Some : Option<T> | |
| { | |
| public readonly T value; |
This file contains hidden or 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
| struct GenericAnimal { | |
| age: usize | |
| } | |
| impl GenericAnimal { | |
| fn sleep(&self) { | |
| println!("zzz"); | |
| } | |
| } | |
| struct Tiger { |
I hereby claim:
- I am ryanhossain9797 on github.
- I am zireael9797 (https://keybase.io/zireael9797) on keybase.
- I have a public key ASD6bJsyS_XF1CsKKBD39wxt_XNiiRyUlLTZGqbnXaLI4Ao
To claim this, I am signing this object:
This file contains hidden or 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
| import 'package:flutter/material.dart'; | |
| void main() => runApp(MyApp()); | |
| class MyApp extends StatelessWidget { | |
| // This widget is the root of your application. | |
| @override | |
| Widget build(BuildContext context) { | |
| return MaterialApp( | |
| title: 'Flutter Demo', |