Today GoBlog got the option to configure your own map tile server. So not only standard OpenStreetMap is possible, but also Stamen Toner for example. Fits much better to my blog aesthetics, right? (See the map page.) ⌘ Read more
Accelerate security adoption in your organization
The GitHub Services Engineers have released the Advanced Security Enforcer GitHub Action to enable organizations to utilize code scanning in a consistent and automated way. ⌘ Read more
On the blog: Developer Journal, Albanian Alphabet Anniversary https://john.colagioia.net/blog/2021/11/22/manastir.html #programming #project #devjournal
On the blog: Superheroes Behaving Badly https://john.colagioia.net/blog/2021/11/21/super.html #rant #superhero #ethics
Public service announcement: The fork lockdown is suspended from now on, 2021-11-20 15:45 UTC. Thank you for observing the measure. There were no complaints brought to our attention during the period. Our patrols did not catch anybody in the act of committing forks.
🙌 Liked: About Forth Haiku ⌘ Read more
On the blog: Free Culture Book Club — if then else, part 2 https://john.colagioia.net/blog/2021/11/20/else2.html #freeculture #bookclub
Mark emails me all the time with bugs he found in GoBlog (some that I would never have found myself) and features he would like to see (e.g. better display of Brid.gy webmentions). I take it as motivation and try to improve GoBlog in a way that it is useful for others as well. And I think there is a good progress. ⌘ Read more
In case you missed it, GitHub Education at Universe 2021!
A recap of all the GitHub Education news from Universe 2021, including the new Intro to Web Dev Experience. ⌘ Read more
On the blog: Tweets from 11/15 to 11/19 https://john.colagioia.net/blog/media/2021/11/19/week.html #twitter #week #socialmedia #linkdump
Public service announcement: There will be a fork lockdown starting 2021-11-20 00:00:00 UTC!
What’s new from GitHub Changelog? October 2021 recap
A public beta of the new GitHub Issues, a “security manager” role for organizations, a command palette beta, and lots more. ⌘ Read more
Congratulations on the successful launch of Eagle v2, Henrique! 🎉 Welcome to the club of “I have developed my completely own CMS”. 😂 ⌘ Read more
On the blog: Real Life in Star Trek, The Slaver Weapon, part 1 https://john.colagioia.net/blog/2021/11/18/slaver.html #scifi #startrek #closereading
7 advanced workflow automation features with GitHub Actions
Check out some advanced automation and CI/CD capabilities you can use today with GitHub Actions on any GitHub account. ⌘ Read more
GitHub’s developer-first approach to content moderation
GitHub puts the needs of developers at the core of our content moderation policies. Learn more about our approach and how you can contribute. ⌘ Read more
A few days ago I changed my home network so that the FRITZ!Box now directly establishes a DSL connection and I can use IPv6 again. Too bad that I only now noticed that this has led to the fact that it used the DNSv6 server of the ISP. Now I adjusted everything so that AdGuard Home is also used for DNSv6. Less advertising and tracking again… ⌘ Read more
The Brave browser now reveals its true face and becomes a web3 browser with integrated crypto wallet. More bullshit is really not possible… ⌘ Read more
GraphQL global ID migration update
All newly created GraphQL objects now have IDs that conform to a new format, which we refer to as “next IDs.” Learn how to migrate older IDs to the new format and why we’re making the change. ⌘ Read more
My neighbors always seem to be playing Forza Horizon 5 in the evenings the last few days, loud engine noises from the apartment below. 😂 ⌘ Read more
Blue-teaming for Exiv2: adding custom CodeQL queries to code scanning
The Exiv2 team tightened our security by enabling GitHub’s code scanning feature and adding custom queries tailored to the Exiv2 code base. ⌘ Read more
The 2021 State of the Octoverse
The State of the Octoverse analyzes data from millions of developers & repos to share trends across working habits, productivity, and career satisfaction. ⌘ Read more
GitHub’s commitment to npm ecosystem security
We’re sharing details of recent incidents on the npm registry, our investigations, and how we’re continuing to invest in the security of npm. ⌘ Read more
What do you do with unlimited mobile data?
Do any of my readers have unlimited mobile data? If so, what do you do to with it? How has unlimited mobile data changed your usage behavior? ⌘ Read more
How to run Windows 3.1 software on Windows 10 & 11 (64bit) & Linux
Because… because… why not? ⌘ Read more
Highlights from Git 2.34
To celebrate this most recent release, here’s GitHub’s look at some of the most interesting features and changes introduced since last time. ⌘ Read more
On the blog: Developer Journal, Geography Awareness Week https://john.colagioia.net/blog/2021/11/15/geography.html #programming #project #devjournal
I missed the exact day, but now it’s been over a year since I switched to my completely custom blogging system. And still I am very happy with it! It has all the features I need, and if I have a new idea, I can usually implement it quickly right away. ⌘ Read more
Nobody can deny that the year will soon be over… ⌘ Read more
On the blog: Free Culture Book Club — if then else, part 1 https://john.colagioia.net/blog/2021/11/13/else.html #freeculture #bookclub
Hey @manton I got this email this morning from name.com – Just wondering if I could have my prologic.blog domain transferred to me? 🤔 Whilst I have enjoyed using my micro.blog service I’d like to move away off of micro.blog and host my own blog, which I intend to use my own static tool for.
Thank you for providing such a great service over the years I’ve used micro.blog 🙇♂️
⌘ Read moreRelease Radar · October 2021 Edition
What an incredible month it’s been for GitHub and our communities. Whilst we’ve been busy with GitHub Universe, our communities have been busy coding. It’s been a successful year for Hacktoberfest, with many first-time contributors ⌘ Read more
On the blog: Tweets from 11/08 to 11/12 https://john.colagioia.net/blog/media/2021/11/12/week.html #twitter #week #socialmedia #linkdump
Highlights from GitHub’s security roadmap at Universe 2021
During Universe, we received a number of security questions ranging from our strategy to our advisories. Here’s what we’ve got planned! ⌘ Read more
對正規表示式進行模糊測試 ⌘ Read more
** Operators in C **
Following up my notes on Data Types and Variables in C here are notes on operators in C.
An operator is a symbol that represents a mathematical or logical operation. An operator effects operands.
C provides a number of operators.
Some arithmetic operators include,
”`hljs plaintext
+*
/
%
”`
% is the most exciting of the list, it is called modulo and it returns the remainder after division. Of note, modulo c … ⌘ Read more