Skip to content

Instantly share code, notes, and snippets.

@suissa
Created February 21, 2018 17:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save suissa/2b533697571db19c0b03f107536c6856 to your computer and use it in GitHub Desktop.
Save suissa/2b533697571db19c0b03f107536c6856 to your computer and use it in GitHub Desktop.
List PT users from Steemit
const arr = ['https://steemit.com/@naturald',
'https://steemit.com/@bkdbkd',
'https://steemit.com/@ignis2',
'https://steemit.com/@belzunces',
'https://steemit.com/@claudiasartiyoga',
'https://steemit.com/@ezekielgomes',
'https://steemit.com/@sergi023',
'https://steemit.com/@jsantana',
'https://steemit.com/@missfernandes',
'https://steemit.com/@defremont',
'https://steemit.com/@ota901',
'https://steemit.com/@andre3301',
'https://steemit.com/@wagnertamanaha',
'https://steemit.com/@vempromundo',
'https://steemit.com/@alender',
'https://steemit.com/@britohevertton',
'https://steemit.com/@casberp',
'https://steemit.com/@hellfishbr',
'https://steemit.com/@robertoueti',
'https://steemit.com/@alinequeiroz',
'https://steemit.com/@gazetagaleguia',
'https://steemit.com/@dudutaulois',
'https://steemit.com/@coyotelation',
'https://steemit.com/@barbaralisarti',
'https://steemit.com/@fireguardian',
'https://steemit.com/@pataty69',
'https://steemit.com/@croniquista',
'https://steemit.com/@violinada',
'https://steemit.com/@caroline.muller',
'https://steemit.com/@tmarisco',
'https://steemit.com/@fabriciolux',
'https://steemit.com/@thomasmmaker',
'https://steemit.com/@lucasportella',
'https://steemit.com/@bermeo',
'https://steemit.com/@paulo.sar',
'https://steemit.com/@d4rkflow',
'https://steemit.com/@aldenio',
'https://steemit.com/@micloop',
'https://steemit.com/@klaused',
'https://steemit.com/@ufscoin',
'https://steemit.com/@luiscoelho',
'https://steemit.com/@aleister',
'https://steemit.com/@thomashblum',
'https://steemit.com/@matheusggr',
'https://steemit.com/@albertogm',
'https://steemit.com/@nascimentoab',
'https://steemit.com/@gustavofreitas',
'https://steemit.com/@rsrestinga',
'https://steemit.com/@portugalcoin',
'https://steemit.com/@igalapagos',
'https://steemit.com/@letlive',
'https://steemit.com/@lpessin',
'https://steemit.com/@rodrigomf',
'https://steemit.com/@brupvoter',
'https://steemit.com/@jamesmoura',
'https://steemit.com/@rafaelzerbini']
const URL = 'https://steemit.com/@'
const sortASC = (a, b) => {
const nameA=a.toLowerCase()
const nameB=b.toLowerCase()
if (nameA < nameB) //sort string ascending
return -1
if (nameA > nameB)
return 1
return 0 //default return value (no sorting)
}
const users = arr.map(link => URL + link.split('@')[1]).sort(sortASC)
console.log(users)
[ 'https://steemit.com/@albertogm',
'https://steemit.com/@aldenio',
'https://steemit.com/@aleister',
'https://steemit.com/@alender',
'https://steemit.com/@alinequeiroz',
'https://steemit.com/@andre3301',
'https://steemit.com/@barbaralisarti',
'https://steemit.com/@belzunces',
'https://steemit.com/@bermeo',
'https://steemit.com/@bkdbkd',
'https://steemit.com/@britohevertton',
'https://steemit.com/@brupvoter',
'https://steemit.com/@caroline.muller',
'https://steemit.com/@casberp',
'https://steemit.com/@claudiasartiyoga',
'https://steemit.com/@coyotelation',
'https://steemit.com/@croniquista',
'https://steemit.com/@d4rkflow',
'https://steemit.com/@defremont',
'https://steemit.com/@dudutaulois',
'https://steemit.com/@ezekielgomes',
'https://steemit.com/@fabriciolux',
'https://steemit.com/@fireguardian',
'https://steemit.com/@gazetagaleguia',
'https://steemit.com/@gustavofreitas',
'https://steemit.com/@hellfishbr',
'https://steemit.com/@igalapagos',
'https://steemit.com/@ignis2',
'https://steemit.com/@jamesmoura',
'https://steemit.com/@jsantana',
'https://steemit.com/@klaused',
'https://steemit.com/@letlive',
'https://steemit.com/@lpessin',
'https://steemit.com/@lucasportella',
'https://steemit.com/@luiscoelho',
'https://steemit.com/@matheusggr',
'https://steemit.com/@micloop',
'https://steemit.com/@missfernandes',
'https://steemit.com/@nascimentoab',
'https://steemit.com/@naturald',
'https://steemit.com/@ota901',
'https://steemit.com/@pataty69',
'https://steemit.com/@paulo.sar',
'https://steemit.com/@portugalcoin',
'https://steemit.com/@rafaelzerbini',
'https://steemit.com/@robertoueti',
'https://steemit.com/@rodrigomf',
'https://steemit.com/@rsrestinga',
'https://steemit.com/@sergi023',
'https://steemit.com/@thomashblum',
'https://steemit.com/@thomasmmaker',
'https://steemit.com/@tmarisco',
'https://steemit.com/@ufscoin',
'https://steemit.com/@vempromundo',
'https://steemit.com/@violinada',
'https://steemit.com/@wagnertamanaha' ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment