Dia | Exercício | BPM | Check |
---|---|---|---|
03/01/2020 | Precisão 1 | 100 | ✅ |
03/01/2020 | Precisão 2 | 100 | ✅ |
03/01/2020 | Precisão 3 | 85 | ± |
03/01/2020 | Precisão 4 | 90 | ✅ |
Dia | Exercício | BPM | Check |
---|---|---|---|
04/01/2020 | Precisão 1 | 101 | ✅ |
{"v":"5.6.8","fr":29.9700012207031,"ip":3.00000012219251,"op":49.0000019958109,"w":60,"h":60,"nm":"20210630_LoadingAnimation C_xport","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":3,"nm":"Null 3","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[30.25,35,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[72,72,100],"ix":6}},"ao":0,"ip":0,"op":49.0000019958109,"st":-9.00000036657752,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 5","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-2.754,-3.39,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[84.746,84.746,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-7.304,10.755],[1.191,-18.213],[0,0],[2.609,41.875],[1.125,-18.375]],"o":[[13.625,-20.063],[-2.625,40.125],[0,0],[0.438,-33.5],[-0.886,14.475]],"v":[[10.125,-9.438],[41.625,-5.25],[2.297,34.438],[-37.234,-5.375],[-6,-24.5]],"c":false},"ix":2},"nm":"Path 1","mn":"ADB |
Dia | Exercício | BPM | Check |
---|---|---|---|
03/01/2020 | Precisão 1 | 100 | ✅ |
03/01/2020 | Precisão 2 | 100 | ✅ |
03/01/2020 | Precisão 3 | 85 | ± |
03/01/2020 | Precisão 4 | 90 | ✅ |
Dia | Exercício | BPM | Check |
---|---|---|---|
04/01/2020 | Precisão 1 | 101 | ✅ |
Make sure everything is up to date.
Key | Action | Send |
---|---|---|
⌘← | HEX CODE | 0x01 |
⌘→ | HEX CODE | 0x05 |
⌥← | SEND ESC SEQ | b |
⌥→ | SEND ESC SEQ | f |
Sublime
ln -s "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" /usr/local/bin/subl
Atom
ln -s /Applications/Atom.app/Contents/Resources/app/atom.sh /usr/local/bin/atom
add_filter( 'add_menu_classes', 'show_pending_number'); | |
function show_pending_number( $menu ) { | |
$type = "post_type"; | |
$status = "draft"; | |
$num_posts = wp_count_posts( $type, 'readable' ); | |
$pending_count = 0; | |
if ( !empty($num_posts->$status) ) | |
$pending_count = $num_posts->$status; | |
// build string to match in $menu array |
#Easily follow back your twitter followers using jQuery
Make sure that you are signed in twitter.
Go to Twitter followers page.
Open Developer Tools.
class myDate{ | |
var $myDate; | |
function theDate () | |
{ | |
setlocale (LC_ALL, 'pt_BR'); | |
$this->myDate = strftime ("%A, %d de %B de %Y"); | |
return $this->myDate; | |
} | |
} |
$text = "Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Nullam id dolor id nibh ultricies vehicula ut id elit. Donec id elit non mi porta gravida at eget metus."; | |
$split = strpos($text, '. ', 10)+1; | |
$text1 = wpautop(substr($text, 0, $split)); | |
$text2 = wpautop(substr($text, $split)); |