• Shaarli
  • Tag cloud
  • Picture wall
  • Daily
  • RSS
  • Login
4369 shaares
55 / 219
Filters

2018+ Honda Odyssey Cabin Filter & Engine Filter Replacement

QRCode

Buy In Cabin Air Filter (CF11182):
US: https://amzn.to/3cymwcu
CDN: https://amzn.to/3dwlAXy

Buy Engine Air Filter:
US: https://amzn.to/2XwhokZ
CDN: https://amzn.to/30hjl6P

=========
In this video, I will show you how to replace the in cabin air filter and engine air filter on your 2018+ Honda Odyssey. The procedure is very simple and can save you a lot of money compare to paying a shop or dealer to do this service.

In cabin: Every 25,000 miles
Engine: Check once per year, replace if necessary

https://www.youtube.com/watch?v=Vghcsx_f6Is
September 13, 2021 at 4:00:17 PM EDT *
odyssey honda cars
FILLER

GitHub - susam/texme: Self-rendering Markdown + LaTeX documents

QRCode

Self-rendering Markdown + LaTeX documents. Contribute to susam/texme development by creating an account on GitHub.

https://github.com/susam/texme
September 13, 2021 at 3:58:46 PM EDT *
markdown latex documents
FILLER

This Jig Is A Two For One! Accurate and Repeatable! Make one Today!

QRCode

jointer and angle table saw jig

https://www.youtube.com/watch?v=hKUW7RxN1CA
September 9, 2021 at 5:16:27 PM EDT *
woodworking jig tablesaw
FILLER

Concentric Circle Spinner - Frontend Horse

QRCode

A cool spinner made only with divs, some border tricks, and one CSS animation.

I really enjoyed digging into this pen by Luke Richardville. You wouldn’t think it had much to teach, seeing as it’s only 12 lines of Pug and 32 lines of SCSS.

https://codepen.io/lukerichardville/pen/NWpYdQY

https://frontend.horse/articles/concentric-circle-spinner/
September 9, 2021 at 2:35:09 PM EDT *
webdesign spinner
FILLER

Jovan Rocanov – Medium

QRCode

Read writing from Jovan Rocanov on Medium. Visual storyteller. Passionate about guiding people through the maze of narratives, symbols, and meanings. Every day, Jovan Rocanov and thousands of other voices read, write, and share important stories on Medium.

Greek illustrations

https://rocanov.medium.com/
September 9, 2021 at 2:33:22 PM EDT *
design inspiration illustration
FILLER

List all indexes in SQL Server database - SQL Server Data Dictionary Queries

QRCode

Useful T-SQL queries for SQL Server to explore database schema.

select i.[name] as index_name,
    substring(column_names, 1, len(column_names)-1) as [columns],
    case when i.[type] = 1 then 'Clustered index'
        when i.[type] = 2 then 'Nonclustered unique index'
        when i.[type] = 3 then 'XML index'
        when i.[type] = 4 then 'Spatial index'
        when i.[type] = 5 then 'Clustered columnstore index'
        when i.[type] = 6 then 'Nonclustered columnstore index'
        when i.[type] = 7 then 'Nonclustered hash index'
        end as index_type,
    case when i.is_unique = 1 then 'Unique'
        else 'Not unique' end as [unique],
    schema_name(t.schema_id) + '.' + t.[name] as table_view, 
    case when t.[type] = 'U' then 'Table'
        when t.[type] = 'V' then 'View'
        end as [object_type]
from sys.objects t
    inner join sys.indexes i
        on t.object_id = i.object_id
    cross apply (select col.[name] + ', '
                    from sys.index_columns ic
                        inner join sys.columns col
                            on ic.object_id = col.object_id
                            and ic.column_id = col.column_id
                    where ic.object_id = t.object_id
                        and ic.index_id = i.index_id
                            order by key_ordinal
                            for xml path ('') ) D (column_names)
where t.is_ms_shipped <> 1
and index_id > 0
order by i.[name]
https://dataedo.com/kb/query/sql-server/list-all-indexes-in-the-database
September 9, 2021 at 2:18:07 PM EDT *
mssql
FILLER

My Advice To Machine Learning Newbies After 3 Years In The Game

QRCode
  • Stay away from unsupervised learning
  • Skip neural networks
    Plugging an on off-the-shelf model from sklearn is often enough for an MVP. While weeks of tuning a neural net might provide a couple extra points of f1, it’s often not worth it in the beginning.
  • Frame all problems as binary classification
  • Tune your hyper-parameters
https://towardsdatascience.com/my-advice-to-machine-learning-newbies-after-3-years-in-the-game-6eef381f540
September 1, 2021 at 8:00:45 AM EDT *
machinelearning ai
FILLER

Negative Space – How Best to Use It in Website and App Design

QRCode

In this post, UXPin looks at using negative space in design and how you can use it to create more engaging websites and apps.

Good web design with tall line-height

https://www.uxpin.com/studio/blog/what-is-negative-space-in-design/
August 25, 2021 at 9:55:31 AM EDT *
webdesign design typography
FILLER

Avatar generator playground - Boring Avatars

QRCode

Boring avatars is a tiny JavaScript React library that generates custom, SVG-based, round avatars from any username and color palette.

https://boringavatars.com/
August 23, 2021 at 2:57:09 PM EDT *
avatar svg stock colorscheme
FILLER

Get illustrations for Websites and applications

QRCode

100 Colorful vector illustration to design website banners and landing pages, commercial license and SVG FIGMA SKETCH AI files included

https://getillustrations.com/illustration-pack/flat-vector-illustrations-for-websites
August 23, 2021 at 2:49:07 PM EDT *
illustration webdesign stock
FILLER

How to create a color palette easily? 🎨

QRCode

Second base: pairing with other colors
After celebrating the first color down, now it’s time to give it some friends. Try to visualize the color picker — regardless of the tool of your choice — and then imagine a line that starts in the top left corner of the picker and then it bends all the way down to the bottom right, directly passing through the color you’ve just picked.

https://medium.muz.li/how-to-create-a-color-palette-easily-933abaf5b39d
August 16, 2021 at 3:11:57 PM EDT *
colorscheme color
FILLER

Fundamentals of table expressions, Part 6 – Recursive CTEs - SQLPerformance.com

QRCode

Continuing a series on table expressions, Itzik Ben-Gan explains recursive CTEs, features from the standard T-SQL is lacking, and workarounds.

Remember that the syntax of a query against a CTE is as follows:

WITH <CTE name> [ ( <with column list> ) ]
AS
(
<table expression>
)
<outer query>;
https://sqlperformance.com/2020/09/t-sql-queries/fundamentals-of-table-expressions-part-6-recursive-ctes
August 16, 2021 at 8:45:18 AM EDT *
mssql sql
FILLER

The secret of CSS triangles. If you ever wanted to create triangles… | by Mathilde E. | Achiev | Medium

QRCode

If you ever wanted to create triangles using CSS, you probably found code samples on stack-overflow or css-tricks. But how do they really work ? Understanding the process behind creating triangles…

https://medium.com/achiev/the-secret-of-css-triangles-a7534431d29f
July 30, 2021 at 7:58:59 AM EDT *
css webdesign
FILLER

Tips for Saving Money by DIYing Trim

QRCode

Save hundreds by making your own DIY trim. Here's how to do it.

Here at the Getaway, we kept it simple and made all our trim 1/2-in. thick. With some basic DIY skills, you can make your own trim for your 10-ft. x 14-ft. room for $28 from just one 4×8 sheet of 1/2-in. MDF.

https://www.familyhandyman.com/article/diy-trim-tips/
July 20, 2021 at 10:01:58 AM EDT *
home molding fhm
FILLER

Hip Workouts | Exercises to Strengthen Hips

QRCode

This 7-move circuit from trainer Yusuf Jeffers will strengthen your hips to prevent injuries and improve running efficiency.

Hip Controlled Articular Rotation

Hip Raise With Lateral Leg Lift

Over-Under Hurdle Walk

Seated Leg Lift

Single-Leg Glute Bridge With Leg Lift

Single-Leg Glute Bridge

Standing Hip Hinge With Rotation

https://www.runnersworld.com/training/a36942254/hip-workouts/
July 12, 2021 at 11:15:09 AM EDT *
running fitness workout hips
FILLER

30-Day Kettlebell Challenge - Best Kettlebell Workouts for Men

QRCode

Take on the Men's Health 30-Day Kettlebell challenge for a full month's worth of workouts using just one kettlebell that will help to build muscle and more.

https://www.menshealth.com/fitness/a36845883/30-day-kettlebell-challenge
July 9, 2021 at 3:31:31 PM EDT *
workout kettlebell fitness
FILLER

Shoulder Workouts | Shoulder Exercises

QRCode

Improve your posture and optimize arm swing with these shoulder exercises.

  • Push-Up to Shoulder Tap
  • Dumbbell Front Raise
  • Dumbbell Lat Press-Down
  • Mini Band External Rotation
  • Mini Band Pull-Apart
https://www.runnersworld.com/training/a36843577/shoulder-workouts/
July 9, 2021 at 9:40:44 AM EDT *
workout fitness shoulder
FILLER

Kent C. Dodds’ .filter() Trick Will Change How You Use JavaScript | by Dr. Derek Austin 🥳 | Coding at Dawn | Jun, 2021 | Medium

QRCode

Kent C. Dodds’ .filter() Trick Will Change How You Use JavaScript. This one-liner uses the Boolean constructor to magically remove all falsy values from an array ✨.

https://twitter.com/kentcdodds/status/1009918457394225152

const plugins = [
    isProd ? optimizePlug : null,
    isProd ? prodOnlyPlug : null,
    !isProd ? testingPlug : null,
    usefulPlug,
].filter( Boolean );
https://medium.com/coding-at-dawn/kent-c-dodds-filter-trick-will-change-how-you-use-javascript-87b5112f9f6d
July 9, 2021 at 9:31:51 AM EDT *
javascript coding perl
FILLER

q - Text as Data

QRCode

Text as Data - q is a command line tool that allows direct execution of SQL-like queries on CSVs/TSVs (and any other tabular text files).

http://harelba.github.io/q/
July 2, 2021 at 11:16:54 AM EDT *
sql
FILLER

UI/UX: How to Make Real Money as a Designer

QRCode

The Formula

This is the formula making real money in almost any profession, doing almost anything, for almost anyone. Here it is:

Your income is directly dependent on your ability to produce value at scale with ownership.

  • “Value is the gap between what clients can do for themselves and what we can do for them.”

Scale

  1. Eliminate any and all superfluous action on your part.
  2. Automate anything and everything that can be automated.
  3. Delegate anything that cannot be automated.
  4. Do anything that cannot be delegated.

Ownership

If you have no equity, no real ownership, the first two pieces of this formula DO NOT MATTER. YOU MUST HAVE OWNERSHIP OF YOUR VALUE!

https://uxplanet.org/ui-ux-how-to-make-real-money-as-a-designer-26ef6ed2915b
July 2, 2021 at 9:37:32 AM EDT *
lifehacks career
FILLER
55 / 219
Shaarli · The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community · Documentation
Fold Fold all Expand Expand all Are you sure you want to delete this link? Are you sure you want to delete this tag? The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community