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
Loathe ⣿⣿⣿⣿⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 29 | |
Pense ⣿⣿⣿⣿⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 29 | |
Counterparts ⣿⣿⣿⣿⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 27 | |
HEALTH ⣿⣿⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 15 | |
Iress ⣿⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 11 | |
The Smashing Pumpkins ⣿⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 11 | |
Terraplana ⣿⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 8 | |
Velvet ⣿⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 8 | |
Duster ⣿⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 7 | |
BADBADNOTGOOD ⣿⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 4 |
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
title:Personal WishList | |
description: | |
// Cold Denial () | |
dimwishlist:item=1216130969&perks= | |
// ABHORRENT IMPERATIVE STRIDES | |
dimwishlist:item=3371366804&perks= | |
// Tarântula |
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
title:10 MUST USE WEAPONS For Solo Players In Season 23 | |
descripttion:Season of The Wish Best Weapons by Eternal - https://www.youtube.com/watch?v=FlCI47xGIss | |
// Dragon's Breath () | |
dimwishlist:item=17096506&perks=1478423395,1996142143,2727957645,1067908860 | |
// Zaouli's Bane (Harrowed) () | |
dimwishlist:item=291092617&perks= |
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
title:jpcd12 - 2023-06-22 | |
description:https://youtu.be/EJLkdqAKgIA?si=rCmxgO-Dv3fkduML | |
// Raconteur (pve) | |
//notes: tags:pve | |
dimwishlist:item=45643573&perks=1583705720,124408337 | |
dimwishlist:item=45643573&perks=1583705720,1171887445 | |
dimwishlist:item=45643573&perks=1409206216,124408337 | |
dimwishlist:item=45643573&perks=1409206216,1171887445 |
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
#!/bin/bash | |
# headset mac | |
mac="00:1D:DF:67:0A:29" | |
profile="a2dp" | |
# Special Bluetooth controller | |
btMac="" | |
# connect|disconnect wait time | |
waitTime=5 | |
macId="${mac//:/_}" |
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
input=(73 foobar) | |
rg="^[+\-]{0,1}[0-9]+$" | |
for num in "${input[@]}"; do | |
(echo "${num//[^\-+0-9]/}" | grep -Eq $rg) \ | |
&& echo "$num is a number" \ | |
|| echo "$num is not a number"; | |
nnum="-"$num | |
(echo "${nnum//[^\-+0-9]/}" | grep -Eq $rg) \ |
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
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
) | |
type amenity struct { | |
Category string `json:"category"` | |
Name string `json:"name"` |
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
package main | |
import ( | |
"fmt" | |
"strconv" | |
"sync" | |
"time" | |
) | |
type Job struct { |
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
import sys | |
import pandas as pd | |
def parse_line(line): | |
return list(map(lambda l: l.strip(), line.split('|'))) | |
with open(sys.argv[1], 'r', encoding='utf8') as f: | |
lines = f.readlines() | |
[header, _, *rows] = lines |
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
package main | |
import "fmt" | |
func uniqueNonEmptyElementsOf(s []string) []string { | |
unique := make(map[string]bool, len(s)) | |
us := make([]string, len(unique)) | |
for _, elem := range s { | |
if len(elem) != 0 { | |
if !unique[elem] { |
NewerOlder