- Test Test Test -[ ] Test
- Test
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
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
Verifying that +marcosrjjunior is my blockchain ID. https://onename.com/marcosrjjunior |
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
Menu->Tools->Developer->New Snipper.. | |
<!-- dd($object) --> | |
<snippet> | |
<tabTrigger>dd</tabTrigger> | |
<content><![CDATA[ | |
dd(${1:this}); | |
]]></content> | |
</snippet> |
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
#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 |
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
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()}); | |
}, |
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
<div className="loading-overlay"> | |
<div className="bouncing-loader"> | |
<div></div> | |
<div></div> | |
<div></div> | |
</div> | |
</div> | |
<style> | |
.loading-overlay { |
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
// .babelrc | |
{ | |
"presets": [ | |
"@babel/preset-env", | |
"@babel/preset-react" | |
], | |
"plugins": [ | |
"@babel/plugin-transform-runtime", | |
"@babel/plugin-proposal-class-properties" | |
] |
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
#!/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 |
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 hash from 'object-hash'; | |
import { createClient } from 'redis'; | |
import { config } from '../config'; | |
import { serialize } from '../utils/objectTransformer'; | |
import { log } from '../utils/errors'; | |
export const REDIS_KEY_PREFIX = `PROJECTPREFIX-${config.env?.toLowerCase()}`; | |
class RedisService { | |
client: any; |
OlderNewer