#Inspect

2025-06-19

Can someone explain to me, like a 2 year old, why everybody uses textwrap.dedent() while inspect.cleandoc() produces better results?

#python #inspect #textwrap

Lowyat.NETlowyat
2025-01-14

IGP: Police Authorised To Inspect Mobile Phones With Reasonable Suspicion

lowyat.net/2025/340867/igp-pol

2024-12-07

Xの #Web3 #拡張機能 を提供する 「 #Inspect#カルダノ ( #ADA ) とのコラボを発表 | 仮想通貨ニュースメディア ビットタイムズ
カルダノ #NFT のオンチェーン分析を統合. #X (旧 : #Twitter ) をWeb3プラットフォームに変える拡張機能を展開している「Inspect」は2023年11月16日に、カルダノ(Cardano/ ...
bittimes.net/news/159103.html

#AIP:
"
Neue Technologien für spektroskopische Durchmusterungen von Millionen Sternen und Galaxien
"
".. Antrag des Leibniz-Instituts für Astrophysik Potsdam (AIP) im Rahmen des Leibniz-Wettbewerbs 2024 mit dem Titel „Innovative Technologies for Spectroscopic Survey Telescopes (InSpecT)“ wurde erfolgreich bewilligt"

aip.de/de/news/new-technology-

27.11.2024

#Astronomie #Galaxie #InSpecT #Potsdam #Spektroskopie #Sterne #Teleskop

Wesley de Groot 🥷0xWDG
2024-07-23

Woohoo, I released 2 new Swift Packages today!

1) 𝗜𝗻𝘀𝗽𝗲𝗰𝘁
𝙸𝚗𝚜𝚙𝚎𝚌𝚝 𝚊𝚕𝚕𝚘𝚠𝚜 𝚢𝚘𝚞 𝚝𝚘 𝚐𝚎𝚝 𝚝𝚑𝚎 𝚞𝚗𝚍𝚎𝚛𝚕𝚢𝚒𝚗𝚐 *𝙺𝚒𝚝 𝚎𝚕𝚎𝚖𝚎𝚗𝚝 𝚘𝚏 𝚊 𝚂𝚠𝚒𝚏𝚝𝚄𝙸 𝚟𝚒𝚎𝚠.
github.com/0xWDG/Inspect

2) 𝗣𝗿𝗲𝘃𝗲𝗻𝘁𝗦𝗰𝗿𝗲𝗲𝗻𝘀𝗵𝗼𝘁
𝙿𝚛𝚎𝚟𝚎𝚗𝚝 𝚂𝚌𝚛𝚎𝚎𝚗𝚜𝚑𝚘𝚝𝚜 𝚏𝚘𝚛 𝚢𝚘𝚞𝚛 𝚂𝚠𝚒𝚏𝚝𝚄𝙸 𝙴𝚕𝚎𝚖𝚎𝚗𝚝𝚜
github.com/0xWDG/PreventScreen

2024-05-01

In Rails 7.2 you can configure the output of a model's #inspect method. I wrote a post about the performance issue that motivated this feature and how you can use it for some nicer DX :)

railsatscale.com/2024-04-30-fi

TIL about `:Inspect` in neovim, which returns the highlight group the current word under the cursor belongs to. Make changes on a theme way easier!

#neovim #inspect #theme #color #highlight

2024-01-17

🔬 Stately Inspector is now available in beta!

Visualize the state of any application, frontend or backend, with state machines and sequence diagrams.

npm install @statelyai/inspect

Read all about what Stately Inspector is capable of in David’s blog post:

stately.ai/blog/2024-01-15-sta

#Stately #XState #inspect #stateMachines #actors #visualize #diagramming #sequenceDiagrams

Ronan Limon Duparcmeurr3trofitted@ruby.social
2023-10-23

@soulcutter @noelrap I guess you could also go with a plain Object and redefine its #inspect method (`Delete = Object.new.tap { |o| def o.inspect = "Delete" }` ), but then we're almost back to were we started, and doing acrobatics again.

Ha, so many flavors of fun!

2023-06-07

Front-end folks, does anyone know how I can get the CSS details like this?

Is this a specific tool or browser, I tried in Chrome but didn't reach to that.

#CSS #Front_end #browser #inspect #programming #webdev

2023-06-01

Minha última publicação saiu na newsletter da CmapusCode. ☺️☺️☺️

Pra mim é motivo de muita felicidade ver quem admiro reconhecendo meu trabalho. 🥲
#ruby #love #inspect #brasil

2023-05-27
Jean Boussierbyroot@ruby.social
2023-03-17

@floehopper it's not gonna break Mocha. The method is defined in Object, you define yours in a subclass, it has precedence.

It's like redefining any other method from `Object` in a subclass, e.g. `#to_s` or `#inspect`.

The reason it broke in RSpec is because they were dynamically copying methods over and were not ignoring methods inherited from objects.

2023-01-10

なんで `3` て入力しているのに `(Object doesn't support #inspect)` が出力されるんだ

GenghisKen CoarGenghisKen@ruby.social
2022-11-27

Weirdness trying to modify #Ruby's default #𝚒𝚗𝚜𝚙𝚎𝚌𝚝 method. If I don't have an #𝚒𝚗𝚜𝚙𝚎𝚌𝚝 method in my #class, I get the usual

"#<𝚌𝚕𝚊𝚜𝚜𝚗𝚊𝚖𝚎:𝚒𝚗𝚜𝚝𝚊𝚗𝚌𝚎 @𝚒𝚟𝚊𝚛=𝚟𝚊𝚕𝚞𝚎, @𝚘𝚝𝚑𝚎𝚛_𝚒𝚟𝚊𝚛=𝚟𝚊𝚕𝚞𝚎>"

But if I define one like this,

def inspect
defval = super
return defval
end

what I get is

"#<𝚌𝚕𝚊𝚜𝚜𝚗𝚊𝚖𝚎:𝚒𝚗𝚜𝚝𝚊𝚗𝚌𝚎 ...>"

And I get anomalous results in the #byebug debugger, defval gets the above result. But if I enter "defval = super" by hand in the debugger, I get the original default output from 𝚒𝚗𝚜𝚙𝚎𝚌𝚝. ?

Arthur Lutz (Zenika)arthurzenika@pouet.chapril.org
2022-04-27

🐳 Pour explorer les fichiers dans une image Docker, j'ai utilisé dive github.com/wagoodman/dive sympathique outil interactif qui permet aussi de voir les modifications par couche et potentiellement de travailler sur la taille de vos images.

#docker #inspect #devops

Copie d'écran de dive
High Wycombehandy Manhighwycombehandyman
2022-03-07

Interior Decoration in High Wycombe

Your and need from the . does minor to and at an price. We and any in your home . us for - quick service. Call on 07984-314-055

: highwycombehandyman.com/servic

htmlq

> Like jq, but for HTML. Uses CSS selectors to extract bits of content from HTML files.

github.com/mgdm/htmlq

grep HTML classes from an URL on the console, to show isolated HTML elements/components

#curl #cmd #console #cli #html #search #grep #tool #find #inspect #sourcecode

Client Info

Server: https://mastodon.social
Version: 2025.04
Repository: https://github.com/cyevgeniy/lmst