My environment development after install Linux.
Everytime I format my linux, I need search all tools again Urgh.
So, I decided create a List of Best Things after install Linux, I hope help you too.
I currently use elementary OS 0.4 Freya
Index
#!/usr/bin/env bash | |
# delete branchs that were merged to main|develop|..... | |
git branch --merged | egrep -v "(^\*|main|develop|release/1.0.0)" | xargs git branch -d |
// .babelrc | |
{ | |
"presets": [ | |
"@babel/preset-env", | |
"@babel/preset-react" | |
], | |
"plugins": [ | |
"@babel/plugin-transform-runtime", | |
"@babel/plugin-proposal-class-properties" | |
] |
<div className="loading-overlay"> | |
<div className="bouncing-loader"> | |
<div></div> | |
<div></div> | |
<div></div> | |
</div> | |
</div> | |
<style> | |
.loading-overlay { |
const scraper = { | |
elements: [], | |
setElement: (name, el, option = 'textContent') => { | |
var content = document.querySelector(el); | |
if (!content) { | |
return console.log('Element for : '+ name + ' not found 404'); | |
} | |
return scraper.elements.push({[name]:content[option].trim()}); | |
}, |
#EXTM3U | |
#PLAYLISTV: pltv-logo="http://s28.postimg.org/66yw0liml/21312sasdas.png" pltv-name="Pedro Junior Tutoriais" pltv-description=TV ONLINE para PlaylisTV/IPTV" pltv-cover="http://s30.postimg.org/4w34lok2p/canal_pedro_junior_tutoriais.jpg" pltv-author="Pedro Júnior Tutoriais" pltv-site="https://www.youtube.com/user/matamataxiterbr?sub_confirmation=1" pltv-email="" pltv-phone="(51) 98435-1782" | |
################################################################################# Informações da Lista | |
#EXTINF:-1 tvg-logo="http://s20.postimg.org/i1p1srlvt/Official_site.png" group-title="Informações da Lista",downloadsdefimes.blogspot.com | |
https://www.youtube.com/channel/UCojJlqr-L9290l5D63SXTzg?view_as=public | |
#EXTINF:-1 tvg-logo="http://s20.postimg.org/our9cxj1p/youtube.png" group-title="Informações da Lista",youtube.com/matamataxiterbr |
Menu->Tools->Developer->New Snipper.. | |
<!-- dd($object) --> | |
<snippet> | |
<tabTrigger>dd</tabTrigger> | |
<content><![CDATA[ | |
dd(${1:this}); | |
]]></content> | |
</snippet> |
Verifying that +marcosrjjunior is my blockchain ID. https://onename.com/marcosrjjunior |
My environment development after install Linux.
Everytime I format my linux, I need search all tools again Urgh.
So, I decided create a List of Best Things after install Linux, I hope help you too.
I currently use elementary OS 0.4 Freya
Index