every day's little every day's little #25: Cool new Zoom Features The video conferencing tool Zoom has some nice features in the latest version 5.3. Lipstick color, eyebrows and beard. You can activate it under: Settings |Background and Filters | Video
atlassian every day's little #24: Gifts from Atlassian Codegeist 2020 🎉 😃 I and my team participated in the Atlassian Codegeist again this year (https://devpost.com/software/search-gadget-for-jira). And now the gifts have arrived. Thanks Team, thanks Atlassian! notebook | t-shirt | thermos
webdev every day's little #23: example.com - Whats this? The domain names example.com, example.net, example.org, and example.edu are second-level domain names in the Domain Name System of the Internet. They are reserved by the Internet
css every day's little #22: CSS all The all CSS property resets all properties except unicode-bidi and direction to their original or inherited value. .my-class { all: unset; }Now all CSS properties for .my-class are set to unset.
atlassian Atlassian DevOps #2: Display standard dates in Jira server In Jira you have many places where a date and time is printed. If possible, this is displayed more readable for humans. For example: But you can also always output
javascript every day's little #21: Is it possible to abort a fetch in JavaScript? Yes! Yes, you can also abort a fetch at any time in JavaScript. This is possible with the AbortController. Here an example: var controller = new AbortController(); var signal = controller.signal; var
webdev every day's little #20: All secrets about window.console The console is a perfect debug and analytic tool for developers. But the usually used commands are often only console.clear, console.log, console.warn and console.error. But the
webdev every day's little #19: Secure HTTP request on window unload If you want to fire a HTTP request when closing a browser or tab, you could use the unload event in the past. But this was always a 50:50
raspberry-pi every day's little #18: No more advertising before videos (youtube, facebook, ...) at home! I still had a small Raspberry Pi at home in the craft box. Now I have a new project for the small computer. Because I am annoyed by the constant
google every day's little #17: Overview of all Google APIs Ihr sucht in eine der hunderte APIs von Google. Hier erhaltet ihr eine Übersicht mit Suche: Google APIs Explorer | Google DevelopersThe Google APIs Explorer is is a tool that helps
webdev every day's little #16: box-shadow vs drop-shadow You know the box-shadow. It is very practical for rectangular things. But if you want a shadow around a picture with transparent background, you don't want an "ugly" rectangular shadow
tools every day's little #15: Optimize your website There are many free Tools that you can use to optimize your website. Here I would like to introduce you to some of them. Each of the tools shows in
git every day's little #14: git blame with colors (Very useful) By default git blame is without color (none). But you have two nice configs for git blame: git config --global blame.coloring highlightRecentand git config --global blame.coloring repeatedLineshighlightRecentThe Blame
javascript every day's little #13: 8-bit Assembler Simulator in Javascript Wer mal "Hello World!" in Assembler sehen will. Hier ein interessanter Simulator, der Schrittweise zeigt, wie genau das geht: Simple 8-bit Assembler Simulator in JavascriptSimple 8-bit Assembler Simulator
atlassian Atlassian DevOps #1: Status Atlassian APIs You can check the API availability of the Atlassian APIs here. You also get a good overview of the weeks/month: Atlassian Developer StatusWelcome to Atlassian Developer’s home for
tipps every day's little #12: Tipps und Tricks für den Mac Hier mal eine kleine Sammlung von coolen Tipps und Tricks für den Mac User: Versteckte Dateien anzeigenIm Finder einfach den Short-Key Shift + Command + Punkt drücken. Das erneute Drücken lässt diese
webdev every day's little #11: Textmanipulation - Aber alles was das Herz begehrt. Mit Cryptii Ein sehr cooles Tool um Texte in und von verschiedenen Formaten umzuwandeln ist Cryptii. Dort Angeboten werden Text-Manipulationen wie z.B. Base64, urlencode, Enigma Verschlüsselung, Morse-Code, Revert, Replace, uvm. Modular
every day's little every day's little #10: Was ist das denn immer mit dem Polyfill? Ein Polyfill ermöglicht es fehlende Funktionen in einem Webbrowser zu ergänzen. Das hat den Vorteil das man einfach unabhängig, ob der Browser das Feature schon unterstützt (neue Browser) oder nicht
every day's little every day's little #9: Alle Case Styles (Camel-Case, Kebab-Case, Snake-Case, ...) Es gibt viele Case Styles in der IT die ich hier gerne mal alle auflisten möchte: camelCaseDer Camel-Case sieht von der Seite wie ein Kamel aus. Daher der Name. Wird
javascript every day's little #8: Scroll History Es gibt etwas im Browser das man kaum wahrnimmt. Und doch würde es uns fehlen, wenn es nicht mehr da ist. Die Rede ist von der Scroll Historie. Nach dem
javascript every day's little #7: Base64 native in Java Script Ja, es gibt tatsächlich in JavaScript native die Möglichkeit Text in Base64 umzuwandeln. Und natürlich wieder zurück. Dafür gibt es die beiden Methoden window.atob (ascii to binary) und window.
css every day's little #6: CSS Animation Kit Jetzt mal ein kleines sehr nützliches Tool. Ein kleiner Editor um einfach und visuell CSS-Animationen zu erstellen: CSS Animation Kit. CSS Animation KitAngrytools - CSS Animation Kit provide pure css
css every day's little #5: Alles über Html Text-Placeholder Wenn ihr eine HTML-TextBox habt, könnt ihr verschiedene Sachen mit dem Placeholder machen. Hier ein paar Beispiel: Placeholder definierenZuerst einmal ein Beispiel wie man überhaupt einen Placeholder definiert: <input
javascript every day's little #4: Zahlenschreibweisen in Java Script Es gibt in Java Script viele Schreibweisen einer Zahl. Hier mal ein paar Beispiele. Eventuell ist ja eine dabei, die ihr noch nicht kanntet: Normale Zahl (Basis 10)1405 1986Binär
javascript every day's little #3: Über 200 JavaScript Snippets in jeweils nur einer Zeile Auf der Seite https://1loc.dev/ werden aktuell über zweihundert einzeilige Snippets für JavaScript aufgelistet. Sollte jeder Dev mal reingucken. Sehr interessante Lösungen zum Teil. Ihr könnt auch selber welche