I created a new repo to get a better overview, and also updated the setup there.
Please use that repo as a reference from now on.
I created a new repo to get a better overview, and also updated the setup there.
Please use that repo as a reference from now on.
| if (window.location.hostname === "github.com") { | |
| const feedContent = document.querySelector('.feed-content') | |
| if (feedContent){ | |
| const feedMain = document.querySelector('.feed-main') | |
| feedContent.style.maxWidth = "unset" | |
| feedMain.style.maxWidth = "1200px" | |
| fetch('https://github.com/dashboard-feed') | |
| .then(response => response.text()) | |
| .then(text => { |
Ruscism – also known as Rashism, Russism, or ᵣussian fascism, is a term used by a number of scholars, politicians and publicists to describe the political ideology and the social practices of the ᵣussian state in the late 20th and early 21st centuries, especially during the rule of vladimir putin. — Ruscism
Russophobia – Anti-ᵣussian sentiment, commonly referred to as Russophobia, is dislike or fear or hatred of ᵣussia, the ᵣussians, ᵣussian culture, or ᵣussian policy. The Collins English Dictionary defines it as intense and often irrational hatred of ᵣussia. It is often related to anti-Soviet and occasionally also to anti-Slavic sentiment. The opposite of Russophobia is Russophilia. — Russophobia
You also might wanna just use Whisky which does this automatically
This guide works on macOS 13.4+ using Command Line Tools for XCode 15 Beta!
In the recent WWDC, Apple announced and released the "game porting toolkit", which upon further inspection this is just a modified version of CrossOver's fork of wine which is a "compatibility layer" that allows you to run Windows applications on macOS and Linux.
| // Plain ol' JavaScript module for fetching feature flags from the server | |
| // | |
| // import { isEnabled } from './flipper.js' | |
| // | |
| // if (await isEnabled("new_feature")) { | |
| // // render new feature | |
| // } else { | |
| // // render old feature | |
| // } | |
| // |
For years, people have been using jemalloc with ruby. There were various benchmarks and discussions. Legend had it that Jemalloc 5 didn't work as well as Jemalloc 3.
Then, one day, hope appeared on the horizon. @wjordan offered a config for Jemalloc 5.
FROM ruby:3.1.2-bullseye
RUN apt-get update ; \| Airbrake.configure do |config| | |
| # project specific | |
| config.project_key = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' | |
| # use git SHA & current commit as app version | |
| config.app_version = "Ruby: #{RUBY_VERSION} » Rails: #{Rails::VERSION::STRING} » " << `cd #{Rails.root} && git log -1 --pretty="%h - %B" HEAD` | |
| # can always be 1 | |
| config.project_id = 1 |
| # This demonstrates how we create a SEO friendly url for the previews of the artworks we sell. | |
| # | |
| # This is the URL we want: | |
| # https://festalab.com.br/image/invitation/birthday/carnival.jpg | |
| # | |
| # First, the route. | |
| # | |
| # "model" is the name of the active storage model that has the preview. | |
| # "classification" and "identifier" are together a unique key for the records. |
| // This code is to be used with https://turbo.hotwire.dev. By default Turbo keeps visited pages in its cache | |
| // so that when you visit one of those pages again, Turbo will fetch the copy from cache first and present that to the user, then | |
| // it will fetch the updated page from the server and replace the preview. This makes for a much more responsive navigation | |
| // between pages. We can improve this further with the code in this file. It enables automatic prefetching of a page when you | |
| // hover with the mouse on a link or touch it on a mobile device. There is a delay between the mouseover event and the click | |
| // event, so with this trick the page is already being fetched before the click happens, speeding up also the first | |
| // view of a page not yet in cache. When the page has been prefetched it is then added to Turbo's cache so it's available for | |
| // the next visit during the same session. Turbo's default behavior plus this trick make for much more responsive UIs (non SPA). |