#
tips
Here are 332 public repositories matching this topic...
1
Knogobert
commented
Feb 2, 2016
You should add a tip on little known (or remembered) CSS Counters i believe.
It is supported on all major platforms, http://caniuse.com/#feat=css-counters
Here is an example: http://codepen.io/Monochrome/pen/bEMbdr
android
kotlin
java
performance
material
adb
gradle
tips
tricks
android-library
android-development
cheatsheet
android-studio
-
Updated
Jun 14, 2020 - Java
A collection of tips to help up your jQuery game
-
Updated
Apr 29, 2020
-
Updated
Apr 27, 2020 - HTML

-
Updated
Nov 9, 2019 - Swift
The Killer Elixir Tips and Tricks...from the experience...
snippets
elixir
tips
tricks
snippet
hacks
elixir-examples
elixir-tips
elixir-hacks
elixir-tricks
elixirhacks
elixir-advanced-tips
elixir-expert-tips
elixir-beginner-tips
elixir-in-pocket
elixir-pocket-tips
functional-programming-tips
programming-tips
awesome-elixir-tips
coding-tips
-
Updated
Mar 20, 2020 - CSS
for those seeking software engineering internships
-
Updated
Dec 23, 2019
Часто используемые трюки и советы при работе с Git
-
Updated
Sep 6, 2017 - JavaScript
-
Updated
Apr 4, 2020 - JavaScript
1
humazed
commented
Jan 4, 2020
In your example when you remove the ink it still has the same behavior.
a better example would be the one from the docs
Material(
color: Colors.teal[900],
child: Center(
child: Ink(
color: Colors.yellow,
width: 200.0,
height: 100.0,
child: InkWell(
onTap: () { /* ... */ },
child: Center(
child: Text('YELLOW'),
A summary of all the Kotlin tips from Google's Android Developer #31DaysofKotlin on Twitter 💻
-
Updated
Apr 5, 2018 - Kotlin
Advanced Pandas Vault — Utilities, Functions and Snippets (by @firmai).
-
Updated
May 6, 2020 - Python
컴공생을 위한 대학 생활 가이드라인
-
Updated
Nov 24, 2019
Un listado de preguntas y respuestas que hemos y nos han preguntado en entrevistas para Ingenieros y Desarrolladores de Front End (Para facilitar las entrevistas y el estudio)
javascript
css
html
interviewing
statistics
tips
estudio
interview-questions
tips-and-tricks
preguntas
respuestas
entrevista
-
Updated
Jan 12, 2018
Improve this page
Add a description, image, and links to the tips topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the tips topic, visit your repo's landing page and select "manage topics."
Currently:
Undo local changes with the last content in head
git checkout -- <file_name>
Should be:
Undo local changes with the content in index(staging)
git checkout -- <file_name>
Reference: https://git-scm.com/docs/git-checkout
Examples: git checkout hello.c
restore hello.c from the index