-
Notifications
You must be signed in to change notification settings - Fork 1
/
myrss.xml
7604 lines (5129 loc) · 393 KB
/
myrss.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<rss version="2.0">
<channel>
<title>Dan Moser astro blog</title>
<description>Space to share interesting news from Astronomy, Systems Engineering and Python.</description>
<link>http://danmoser.github.io/</link>
<lastBuildDate>Fri, 23 Feb 2024 21:08:21 -0000</lastBuildDate>
<webMaster>[email protected] (Dan Moser)</webMaster>
<item>
<title>Selected web dev learning sites</title>
<description>12 websites that will help you learn web development faster (completely free):
https://twitter.com/Prathkum/status/1574061048012984321</description>
<link>http://danmoser.github.io/notes/astro-blog.html#selected-web-dev-learning-sites</link>
</item>
<item>
<title>Summarize any book using Python</title>
<description>Using ``transformers`` . However, it requires PyTorch, TensorFlow >= 2.0, or Flax. PyTorch may require 2 GB for download of models!!
https://twitter.com/itsafiz/status/1573616101606715393</description>
<link>http://danmoser.github.io/notes/astro-blog.html#summarize-any-book-using-python</link>
</item>
<item>
<title>Desktop Notification with Python</title>
<description>With ``plyer``: https://youtu.be/g-4a2oub2HU</description>
<link>http://danmoser.github.io/notes/astro-blog.html#desktop-notification-with-python</link>
</item>
<item>
<title>SOLID OOP principles</title>
<description>S = Single Responsibility Principle
O = Open/Closed Principle
L = Liskov Substitution Principle
I = Interface Segregation Principle
D = Dependency Inversion Principle
https://twitter.com/vikasrajputin/status/1593460494886576128</description>
<link>http://danmoser.github.io/notes/astro-blog.html#solid-oop-principles</link>
</item>
<item>
<title>Google Java Format</title>
<description>https://github.com/google/google-java-format</description>
<link>http://danmoser.github.io/notes/astro-blog.html#google-java-format</link>
</item>
<item>
<title>Resume vs Resume 2.0</title>
<description>https://twitter.com/tanishka__yadav/status/1592166475745611780
Resume 2.0 is generated on https://www.showwcase.com/</description>
<link>http://danmoser.github.io/notes/astro-blog.html#resume-vs-resume-</link>
</item>
<item>
<title>Selected GitHub repos</title>
<description>16 GitHub repositories with more value than USD 20K+ bootcamps (learn for FREE):
https://twitter.com/madzadev/status/1592173978361253888?</description>
<link>http://danmoser.github.io/notes/astro-blog.html#selected-github-repos</link>
</item>
<item>
<title>Cartwright</title>
<description>Cartwright is a data profiler that identifies and categorizes spatial and temporal features. 100% Python.
https://github.com/jataware/cartwright</description>
<link>http://danmoser.github.io/notes/astro-blog.html#cartwright</link>
</item>
<item>
<title>The Enigma Machine</title>
<description>https://www.cryptii.com/pipes/enigma-machine</description>
<link>http://danmoser.github.io/notes/astro-blog.html#the-enigma-machine</link>
</item>
<item>
<title>Timeline of Computer History</title>
<description>https://www.computerhistory.org/timeline
2022-11</description>
<link>http://danmoser.github.io/notes/astro-blog.html#timeline-of-computer-history</link>
</item>
<item>
<title>Earthquakes visualization tool</title>
<description>https://glowy-earthquakes.glitch.me/</description>
<link>http://danmoser.github.io/notes/astro-blog.html#earthquakes-visualization-tool</link>
</item>
<item>
<title>hyperfine</title>
<description>A command-line benchmarking tool: https://github.com/sharkdp/hyperfine</description>
<link>http://danmoser.github.io/notes/astro-blog.html#hyperfine</link>
</item>
<item>
<title>Python code formatters</title>
<description>Most popular formatters:
- black
- autopep8
- yapf
Other useful tools:
- isort: good practices for imports in the code
- flake8: diagnostics https://github.com/pycqa/flake8
More at https://deepsource.io/blog/python-code-formatters/</description>
<link>http://danmoser.github.io/notes/astro-blog.html#python-code-formatters</link>
</item>
<item>
<title>ohmyzsh</title>
<description>A framework for managing your zsh configuration. Includes 300+ optional plugins (including git "superpowers"). It requires an Unix-like operating system with Zsh.
https://github.com/ohmyzsh/ohmyzsh</description>
<link>http://danmoser.github.io/notes/astro-blog.html#ohmyzsh</link>
</item>
<item>
<title>GitHub stars won't pay your rent</title>
<description>https://kitze.io/posts/github-stars-wont-pay-your-rent</description>
<link>http://danmoser.github.io/notes/astro-blog.html#github-stars-wont-pay-your-rent</link>
</item>
<item>
<title>Kindness, Tech Staffing and Resource Allocation</title>
<description>https://redmonk.com/rstephens/2022/11/01/kindness-and-staffing/</description>
<link>http://danmoser.github.io/notes/astro-blog.html#kindness-tech-staffing-and-resource-allocation</link>
</item>
<item>
<title>Remove Image background with Python</title>
<description>``pip install rembg``
.. code:: python
from rembg import remove
from PIL import Image
input_graph = 'cl.jpg'
output_graph = 'output.png'
inp = Image.open(input_graph)
output = remove(inp)
output.save(output_graph)</description>
<link>http://danmoser.github.io/notes/astro-blog.html#remove-image-background-with-python</link>
</item>
<item>
<title>JSON Crack</title>
<description>Seamlessly visualize your JSON data instantly into graphs.
https://jsoncrack.com/</description>
<link>http://danmoser.github.io/notes/astro-blog.html#json-crack</link>
</item>
<item>
<title>Printing coloured output in Python</title>
<description>.. code:: python
from colorama import Fore, Back
# Fore = foreground (font color)
# Back = background color
print(Back.YELLOW+Fore.RED+"Hello World")
print(Back.BLUE+Fore.RED+"Hello World")</description>
<link>http://danmoser.github.io/notes/astro-blog.html#printing-coloured-output-in-python</link>
</item>
<item>
<title>190 Python Projects with Source Code</title>
<description>https://amankharwal.medium.com/130-python-projects-with-source-code-61f498591bb</description>
<link>http://danmoser.github.io/notes/astro-blog.html#-python-projects-with-source-code</link>
</item>
<item>
<title>CLI video recorder</title>
<description>https://github.com/charmbracelet/vhs</description>
<link>http://danmoser.github.io/notes/astro-blog.html#cli-video-recorder</link>
</item>
<item>
<title>Shell Script Best Practices</title>
<description>Just make the first line be ``#!/usr/bin/env bash``, even if you don’t give executable permission to the script file!
https://sharats.me/posts/shell-script-best-practices/</description>
<link>http://danmoser.github.io/notes/astro-blog.html#shell-script-best-practices</link>
</item>
<item>
<title>Mermaid charts</title>
<description>- Basic overview of creating flowcharts using Mermaid: https://ckeditor.com/blog/basic-overview-of-creating-flowcharts-using-mermaid/
- Mermaid Live Editor: https://mermaid.live </description>
<link>http://danmoser.github.io/notes/astro-blog.html#mermaid-charts</link>
</item>
<item>
<title>Things your manager might not know</title>
<description>https://jvns.ca/blog/things-your-manager-might-not-know/</description>
<link>http://danmoser.github.io/notes/astro-blog.html#things-your-manager-might-not-know</link>
</item>
<item>
<title>The Perfect Commit</title>
<description>https://simonwillison.net/2022/Oct/29/the-perfect-commit/</description>
<link>http://danmoser.github.io/notes/astro-blog.html#the-perfect-commit</link>
</item>
<item>
<title>Developer tools to fill the void of space with intelligent life</title>
<description>Saganipsum http://saganipsum.com/</description>
<link>http://danmoser.github.io/notes/astro-blog.html#developer-tools-to-fill-the-void-of-space-with-intelligent-life</link>
</item>
<item>
<title>Why Functional Programming Should Be the Future of Software Development</title>
<description>https://spectrum.ieee.org/functional-programming</description>
<link>http://danmoser.github.io/notes/astro-blog.html#why-functional-programming-should-be-the-future-of-software-development</link>
</item>
<item>
<title>Transition from Java 8 to Java 11</title>
<description>Azure: https://learn.microsoft.com/en-us/java/openjdk/transition-from-java-8-to-java-11
Docs
Jaxb: https://www.jesperdj.com/2018/09/30/jaxb-on-java-9-10-11-and-beyond/</description>
<link>http://danmoser.github.io/notes/astro-blog.html#transition-from-java--to-java-</link>
</item>
<item>
<title>Road to Artificial General Intelligence</title>
<description>https://maraoz.com/2022/10/31/agi-roadmap/</description>
<link>http://danmoser.github.io/notes/astro-blog.html#road-to-artificial-general-intelligence</link>
</item>
<item>
<title>DevOps Roadmap for 2022 with learning resources</title>
<description>https://github.com/milanm/DevOps-Roadmap</description>
<link>http://danmoser.github.io/notes/astro-blog.html#devops-roadmap-for--with-learning-resources</link>
</item>
<item>
<title>hishtory</title>
<description>Your shell history: synced, queryable, and in context: https://github.com/ddworken/hishtory
hiSHtory cross-device Encrypted Syncing Design: https://blog.daviddworken.com/posts/hishtory-explained/</description>
<link>http://danmoser.github.io/notes/astro-blog.html#hishtory</link>
</item>
<item>
<title>Apache Age</title>
<description>Graph database optimized for fast analysis and real-time data processing. It is provided as an extension to PostgreSQL.
https://github.com/apache/age</description>
<link>http://danmoser.github.io/notes/astro-blog.html#apache-age</link>
</item>
<item>
<title>A Visual Guide to SSH Tunnels </title>
<description>SSH port forwarding explained
https://iximiuz.com/en/posts/ssh-tunnels/</description>
<link>http://danmoser.github.io/notes/astro-blog.html#a-visual-guide-to-ssh-tunnels-</link>
</item>
<item>
<title>typer</title>
<description>Typer, build great CLIs. Easy to code. Based on Python type hints.
https://github.com/tiangolo/typer</description>
<link>http://danmoser.github.io/notes/astro-blog.html#typer</link>
</item>
<item>
<title>Seven selected dev repositories</title>
<description>- Memphis: An open-source real-time data processing platform https://github.com/memphisdev/memphis-broker
- The art of command line https://github.com/jlevy/the-art-of-command-line
- Public-APIs: a collective list of free APIs https://github.com/public-apis/public-apis
- Hover: a collection of CSS3 powered hover effects https://github.com/IanLunn/Hover
- Path to a free self-taught education in Computer Science: https://github.com/ossu/computer-science
- A curated list of software and architecture related design patterns https://github.com/DovAmir/awesome-design-patterns
- 33 JavaScript concepts every developer should know https://github.com/vasanthk/react-bits
2022-10</description>
<link>http://danmoser.github.io/notes/astro-blog.html#seven-selected-dev-repositories</link>
</item>
<item>
<title>Wireframing with Pencil!</title>
<description>https://pencil.evolus.vn/
https://app.diagrams.net/ (former https://draw.io) is an alternative</description>
<link>http://danmoser.github.io/notes/astro-blog.html#wireframing-with-pencil</link>
</item>
<item>
<title>Programming Portals</title>
<description>https://maggieappleton.com/programming-portals</description>
<link>http://danmoser.github.io/notes/astro-blog.html#programming-portals</link>
</item>
<item>
<title>NRAO Image Gallery: Backgrounds </title>
<description>https://public.nrao.edu/gallery/gallery-collection/desktop-video-chat-backgrounds/</description>
<link>http://danmoser.github.io/notes/astro-blog.html#nrao-image-gallery-backgrounds-</link>
</item>
<item>
<title>Proof that paper accepts everything</title>
<description>Why we "stopped" making Einsteins: https://erikhoel.substack.com/p/why-we-stopped-making-einsteins</description>
<link>http://danmoser.github.io/notes/astro-blog.html#proof-that-paper-accepts-everything</link>
</item>
<item>
<title>Mike Acton's Expectations of Professional Software Engineers</title>
<description>https://adamj.eu/tech/2022/06/17/mike-actons-expectations-of-professional-software-engineers/</description>
<link>http://danmoser.github.io/notes/astro-blog.html#mike-actons-expectations-of-professional-software-engineers</link>
</item>
<item>
<title>How images from NASA’s James Webb Space Telescope get their iconic look</title>
<description>https://www.theverge.com/2022/10/10/23393194/nasa-image-processing-jwst-astrophotography</description>
<link>http://danmoser.github.io/notes/astro-blog.html#how-images-from-nasas-james-webb-space-telescope-get-their-iconic-look</link>
</item>
<item>
<title>The Well-Maintained Test: 12 Questions for New Dependencies</title>
<description>https://adamj.eu/tech/2021/11/04/the-well-maintained-test/</description>
<link>http://danmoser.github.io/notes/astro-blog.html#the-well-maintained-test--questions-for-new-dependencies</link>
</item>
<item>
<title>Covariance and contravariance in Computer Science</title>
<description>https://en.wikipedia.org/wiki/Covariance_and_contravariance_(computer_science)</description>
<link>http://danmoser.github.io/notes/astro-blog.html#covariance-and-contravariance-in-computer-science</link>
</item>
<item>
<title>Testing Bash with BATS</title>
<description>https://opensource.com/article/19/2/testing-bash-bats</description>
<link>http://danmoser.github.io/notes/astro-blog.html#testing-bash-with-bats</link>
</item>
<item>
<title>Software engineering practices</title>
<description>https://simonwillison.net/2022/Oct/1/software-engineering-practices/</description>
<link>http://danmoser.github.io/notes/astro-blog.html#software-engineering-practices</link>
</item>
<item>
<title>SI Units for PostgreSQL</title>
<description>https://github.com/df7cb/postgresql-unit</description>
<link>http://danmoser.github.io/notes/astro-blog.html#si-units-for-postgresql</link>
</item>
<item>
<title>Java Algorithms for Celestial Computation</title>
<description>Suitable for Navigation and Astronomy. Mainly based on Jean MEEUS' "Astronomical Algorithms".
https://celestjava.sourceforge.net/</description>
<link>http://danmoser.github.io/notes/astro-blog.html#java-algorithms-for-celestial-computation</link>
</item>
<item>
<title>Oh Shit, Git!?!</title>
<description>Git is hard: screwing up is easy, and figuring out how to fix your mistakes is fucking impossible.
https://ohshitgit.com/
2022-09</description>
<link>http://danmoser.github.io/notes/astro-blog.html#oh-shit-git</link>
</item>
<item>
<title>Short Thoughts on Computers and Programming</title>
<description>https://www.datagubbe.se/short/</description>
<link>http://danmoser.github.io/notes/astro-blog.html#short-thoughts-on-computers-and-programming</link>
</item>
<item>
<title>11 Laws of Software Estimation for Complex Work</title>
<description>Product Management. Wrong estimates aren’t your fault, but they are definitely your problem
https://mdalmijn.com/11-laws-of-software-estimation-for-complex-work/</description>
<link>http://danmoser.github.io/notes/astro-blog.html#-laws-of-software-estimation-for-complex-work</link>
</item>
<item>
<title>15 Python Code to automate your work</title>
<description>https://twitter.com/clcoding/status/1561889221526269952</description>
<link>http://danmoser.github.io/notes/astro-blog.html#-python-code-to-automate-your-work</link>
</item>
<item>
<title>6 free games that help you learn & practice coding skills </title>
<description>#programming
- http://Codingame.com
- http://Codewars.com
- http://CryptoZombies.io
- http://robocode-dev.github.io/tank-royale/
- http://alexnisnevich.github.io/untrusted/
- https://mystery.knightlab.com/</description>
<link>http://danmoser.github.io/notes/astro-blog.html#-free-games-that-help-you-learn--practice-coding-skills-</link>
</item>
<item>
<title>Build your own zoom with Python</title>
<description>`Zoom with Python <https://twitter.com/Saboo_Shubham_/status/1568501777195999232>`_</description>
<link>http://danmoser.github.io/notes/astro-blog.html#build-your-own-zoom-with-python</link>
</item>
<item>
<title>Top 75+ Interview Questions in OOP & Design Patterns</title>
<description>https://twitter.com/swapnakpanda/status/1568563856322236416</description>
<link>http://danmoser.github.io/notes/astro-blog.html#top--interview-questions-in-oop--design-patterns</link>
</item>
<item>
<title>Closure phase in astrophysics</title>
<description>In 1958, by Jennison, R. C.
- https://ui.adsabs.harvard.edu/abs/1958MNRAS.118..276J/abstract
- https://en.wikipedia.org/wiki/Closure_phase</description>
<link>http://danmoser.github.io/notes/astro-blog.html#closure-phase-in-astrophysics</link>
</item>
<item>
<title>Simple Python GUI/MP3 player</title>
<description>PySimpleGUI and VLC: https://github.com/driscollis/pytips/blob/main/applications/psg_mp3_player.py
``pip install python-vlc pysimplegui``</description>
<link>http://danmoser.github.io/notes/astro-blog.html#simple-python-guimp-player</link>
</item>
<item>
<title>UX/UI designer resources</title>
<description>- http://freeillustrations.xyz - free illustration kits!
- http://freeimages.com - free stock photos
- http://screenlane.com - design inspiration</description>
<link>http://danmoser.github.io/notes/astro-blog.html#uxui-designer-resources</link>
</item>
<item>
<title>Python Traitlets</title>
<description>https://traitlets.readthedocs.io/en/stable/using_traitlets.html</description>
<link>http://danmoser.github.io/notes/astro-blog.html#python-traitlets</link>
</item>
<item>
<title>This Man Is Trying to Put Mirrors in Space to Generate Solar Power at Night</title>
<description>With initiatives such as this and conspterate satellites for the internet, the future of astronomy could be restricted to telescopes on the moon or orbit L2 as James Webb.
https://www.vice.com/en/article/n7z3yq/this-man-is-trying-to-put-mirrors-in-space-to-generate-solar-power-at-night</description>
<link>http://danmoser.github.io/notes/astro-blog.html#this-man-is-trying-to-put-mirrors-in-space-to-generate-solar-power-at-night</link>
</item>
<item>
<title>You Should Be Using Python's Walrus Operator - Here's Why</title>
<description>https://martinheinz.dev/blog/79</description>
<link>http://danmoser.github.io/notes/astro-blog.html#you-should-be-using-pythons-walrus-operator---heres-why</link>
</item>
<item>
<title>No more paywalls for public research in USA by 2026</title>
<description>https://www.whitehouse.gov/ostp/news-updates/2022/08/25/ostp-issues-guidance-to-make-federally-funded-research-freely-available-without-delay/</description>
<link>http://danmoser.github.io/notes/astro-blog.html#no-more-paywalls-for-public-research-in-usa-by-</link>
</item>
<item>
<title>Introdução à Ciência da Computação com Python - USP</title>
<description>https://www.youtube.com/playlist?list=PLcoJJSvnDgcKpOi_UeneTNTIVOigRQwcn</description>
<link>http://danmoser.github.io/notes/astro-blog.html#introducao-a-ciencia-da-computacao-com-python---usp</link>
</item>
<item>
<title>Workshop 'Python em Astronomia' - UFS</title>
<description>https://sites.google.com/view/apoastro/p%C3%A1gina-inicial/python-em-astronomia</description>
<link>http://danmoser.github.io/notes/astro-blog.html#workshop-python-em-astronomia---ufs</link>
</item>
<item>
<title>Valor 'p' da estatistica</title>
<description>https://twitter.com/pedrocintra52/status/1559301222720471041</description>
<link>http://danmoser.github.io/notes/astro-blog.html#valor-p-da-estatistica</link>
</item>
<item>
<title>10 mind-blowing AI websites you probably didn't know existed</title>
<description>https://twitter.com/TessaRDavis/status/1557711104071110656</description>
<link>http://danmoser.github.io/notes/astro-blog.html#-mind-blowing-ai-websites-you-probably-didnt-know-existed</link>
</item>
<item>
<title>GitHub repositories to improve programming skills</title>
<description>https://twitter.com/denicmarko/status/1559850795805429761
2022-08</description>
<link>http://danmoser.github.io/notes/astro-blog.html#github-repositories-to-improve-programming-skills</link>
</item>
<item>
<title>Linguistic Antipatterns</title>
<description>Programming languages. Linguistic antipatterns were first studied in a series of papers led by Venera Arnaoudova.
https://www.linguistic-antipatterns.com/</description>
<link>http://danmoser.github.io/notes/astro-blog.html#linguistic-antipatterns</link>
</item>
<item>
<title>Websites to get things done for free</title>
<description>Originally from https://twitter.com/MakadiaHarsh/status/1553761431560011784
- https://pdfdrive.com -- more than 80 million eBooks for free.
- https://tinypng.com -- uses smart lossy compression to reduce the size of WEBP, JPEG, and PNG files.
- https://smallpdf.com -- master PDF files.
- http://photopea.com -- web-based photo and graphics editor.
- https://quillbot.com -- rewrite and enhance any sentence, paragraph, or article using state-of-the-art AI.
- https://freenom.com -- the world's first and only free domain provider.
- https://mega.io -- 20+GB of free cloud storage.
- https://wetransfer.com -- simplest way to send big files.
2022-07</description>
<link>http://danmoser.github.io/notes/astro-blog.html#websites-to-get-things-done-for-free</link>
</item>
<item>
<title>JOSS: The Journal of Open Source Software</title>
<description>Volunteers for revisions are welcome
https://joss.theoj.org/ </description>
<link>http://danmoser.github.io/notes/astro-blog.html#joss-the-journal-of-open-source-software</link>
</item>
<item>
<title>MetBrewer </title>
<description>Color palettes inspired by works at the Metropolitan Museum of Art in New York. R and Python included
https://github.com/BlakeRMills/MetBrewer</description>
<link>http://danmoser.github.io/notes/astro-blog.html#metbrewer-</link>
</item>
<item>
<title>Webb Deep Field in scale</title>
<description>https://twitter.com/SpaceToday1/status/1548004092605124613</description>
<link>http://danmoser.github.io/notes/astro-blog.html#webb-deep-field-in-scale</link>
</item>
<item>
<title>Astrophysicist Paul Sutter explains the world's seeming lack of trust in science</title>
<description>This "Edge of Knowledge" episode looks at facts versus feelings.
https://arstechnica.com/science/2022/07/astrophysicist-paul-sutter-on-trusting-science-and-why-so-many-people-dont/</description>
<link>http://danmoser.github.io/notes/astro-blog.html#astrophysicist-paul-sutter-explains-the-worlds-seeming-lack-of-trust-in-science</link>
</item>
<item>
<title>Astronomy community shapes their own destiny with Astropy </title>
<description>Astronomy is a software based field, and the community is building their own open source tools.
https://github.com/readme/featured/webb-telescope-astropy</description>
<link>http://danmoser.github.io/notes/astro-blog.html#astronomy-community-shapes-their-own-destiny-with-astropy-</link>
</item>
<item>
<title>Fink Broker and Gaia DR3</title>
<description>https://fink-broker.org/2022-07-05-science-portal-updates/
2022-06</description>
<link>http://danmoser.github.io/notes/astro-blog.html#fink-broker-and-gaia-dr</link>
</item>
<item>
<title>Java classifications or types</title>
<description>java versions, JRE vs JDK, Java SE vs EE, Oracle Java vs OpenJDK: https://programmingdigest.com/java-versions-jre-vs-jdk-java-se-vs-ee-oracle-java-vs-openjdk-vs-dalvik/</description>
<link>http://danmoser.github.io/notes/astro-blog.html#java-classifications-or-types</link>
</item>
<item>
<title>The collapse of complex software</title>
<description>https://nolanlawson.com/2022/06/09/the-collapse-of-complex-software/
Java course</description>
<link>http://danmoser.github.io/notes/astro-blog.html#the-collapse-of-complex-software</link>
</item>
<item>
<title>Harvard computer science course</title>
<description>https://pll.harvard.edu/course/cs50-introduction-computer-science
2022-05</description>
<link>http://danmoser.github.io/notes/astro-blog.html#harvard-computer-science-course</link>
</item>
<item>
<title>AI and art</title>
<description>DALL·E 2 is a new AI system that can create realistic images and art from a description in natural language.
https://openai.com/dall-e-2/
2021
**********
2021-10</description>
<link>http://danmoser.github.io/notes/astro-blog.html#ai-and-art</link>
</item>
<item>
<title>3 Ways To Calibrate Your Camera Using OpenCV and Python</title>
<description>Fix camera distortions in an easy way.
https://medium.com/vacatronics/3-ways-to-calibrate-your-camera-using-opencv-and-python-395528a51615
https://lensfun.github.io/
2021-09</description>
<link>http://danmoser.github.io/notes/astro-blog.html#-ways-to-calibrate-your-camera-using-opencv-and-python</link>
</item>
<item>
<title>Building a Globular cluster</title>
<description>- paper: https://arxiv.org/abs/2109.13943
- docs: https://artpop.readthedocs.io/en/latest/</description>
<link>http://danmoser.github.io/notes/astro-blog.html#building-a-globular-cluster</link>
</item>
<item>
<title>Using Self-Organizing Maps to solve the Traveling Salesman Problem</title>
<description>The Traveling Salesman Problem is a well known challenge in Computer Science: it consists on finding the shortest route possible that traverses all cities in a given map only once.
Although its simple explanation, this problem is, indeed, NP-Complete.
This implies that the difficulty to solve it increases rapidly with the number of cities, and we do not know in fact a general solution that solves the problem.
GitHub https://lnkd.in/ga_ni8Zi
Blog https://lnkd.in/guAWFaga</description>
<link>http://danmoser.github.io/notes/astro-blog.html#using-self-organizing-maps-to-solve-the-traveling-salesman-problem</link>
</item>
<item>
<title>Retirees help maintain Hubble after 30+ years in orbit</title>
<description>When something goes wrong with NASA’s workhorse space telescope, the agency relies on a deep bench of retired experts to help out
https://spie.org/news/how-does-nasa-fix-the-30-year-old-hubble</description>
<link>http://danmoser.github.io/notes/astro-blog.html#retirees-help-maintain-hubble-after--years-in-orbit</link>
</item>
<item>
<title>How narcissists climb the career ladder quickly</title>
<description>https://www.bbc.com/worklife/article/20210830-how-narcissists-climb-the-career-ladder-quickly
2021-08</description>
<link>http://danmoser.github.io/notes/astro-blog.html#how-narcissists-climb-the-career-ladder-quickly</link>
</item>
<item>
<title>A novel definition of life and its implications to cybernetic systems</title>
<description>https://phys.org/news/2021-08-definition-life-implications-cybernetic.html</description>
<link>http://danmoser.github.io/notes/astro-blog.html#a-novel-definition-of-life-and-its-implications-to-cybernetic-systems</link>
</item>
<item>
<title>NOIRLab Launches Integrated Science Website</title>
<description>https://noirlab.edu/public/announcements/ann21027/?lang=en
2021-07</description>
<link>http://danmoser.github.io/notes/astro-blog.html#noirlab-launches-integrated-science-website</link>
</item>
<item>
<title>Meet the Open-Source Software Powering NASA's Ingenuity Mars Helicopter</title>
<description>https://www.jpl.nasa.gov/news/meet-the-open-source-software-powering-nasas-ingenuity-mars-helicopter
2021-04</description>
<link>http://danmoser.github.io/notes/astro-blog.html#meet-the-open-source-software-powering-nasas-ingenuity-mars-helicopter</link>
</item>
<item>
<title>JS9 imexam</title>
<description>https://js9.si.edu/js9/demos/js9imexam.html</description>
<link>http://danmoser.github.io/notes/astro-blog.html#js-imexam</link>
</item>
<item>
<title>Calculus made easy</title>
<description>A friend has just shown me this book "Calculus made easy", published in 1914, and I think it's got one of the best prologues I've ever seen. This is *exactly* what textbooks should be doing. And they should all be honest about how terrifying the topic names are too. https://t.co/8Qodx8dLaq
https://mobile.twitter.com/helenczerski/status/1375915057905856513
2020
**********
2020-08</description>
<link>http://danmoser.github.io/notes/astro-blog.html#calculus-made-easy</link>
</item>
<item>
<title>NASA Launched Laser Beams at the Moon – For the First Time, They Received a Signal Back</title>
<description>https://scitechdaily.com/nasa-launched-laser-beams-at-the-moon-for-the-first-time-they-received-a-signal-back/</description>
<link>http://danmoser.github.io/notes/astro-blog.html#nasa-launched-laser-beams-at-the-moon--for-the-first-time-they-received-a-signal-back</link>
</item>
<item>
<title>Ozonioterapia</title>
<description>Promessas assim lembram muito os tratamentos “milagrosos” baseados em eletricidade e magnetismo oferecidos no século 19, quando essas forças eram misteriosas, desconhecidas e não faltavam espertalhões dispostos a usá-las para vender falsas esperanças aos doentes ou receitas de “bem-estar” aos hipocondríacos.
https://www.revistaquestaodeciencia.com.br/artigo/2019/03/11/que-mal-que-tem-amputacao-por-ozonioterapia</description>
<link>http://danmoser.github.io/notes/astro-blog.html#ozonioterapia</link>
</item>
<item>
<title>The 'Batman Effect': How having an alter ego empowers you</title>
<description>https://www.bbc.com/worklife/article/20200817-the-batman-effect-how-having-an-alter-ego-empowers-you</description>
<link>http://danmoser.github.io/notes/astro-blog.html#the-batman-effect-how-having-an-alter-ego-empowers-you</link>
</item>
<item>
<title>Common Hawaiian Words </title>
<description>https://poipubeach.org/blog/hawaiian-words-to-know-before-your-kauai-vacation/</description>
<link>http://danmoser.github.io/notes/astro-blog.html#common-hawaiian-words-</link>
</item>
<item>
<title>What it means having to work in foreign language</title>
<description>What it means having to work in foreign language: fear, time loss, lost opportunities. A triggered by a (kind of warranted) "please write in better English" in a recent referee report & one of my group member's lament on how their English writing sounds like robot writing. 1/2
It means constant fear: of saying something wrong or inappropriate. Of not understanding something, especially a question. Of knowing what you want to say, how you want to answer a question, but not being able to say it in the foreign language. 2/3
It means losing your first language: you look at essays you wrote in high school & know you are not able to express yourself the same way again. Your sentence structure changes. You use the wrong words, the wrong voice, idioms from the foreign language without even realizing. 3/4
It means having your competence and your intelligence constantly questioned: OMG, his talks are the worst! It may be interesting science, but I can't understand him because of the accent! I can't read her papers, they are just incomprehensible. 4/5
It means spending time you don't have: looking up words, making sure to follow obscure grammar rules, thay you don't sound off (short sentences and active voice make you sound like a kindergartener in German; passive voice and complex sentence are to be avoided in English). 5/6
It means knowing how to spell words you read, but having no idea how to pronounce them. Or having heard a word and being unable to look it up because you don't know how it's written. 6/7
It means using outdated rules that offend people ("Dear Sirs", "Fräulein"). It means trying to write in German and people piling on you because you don't do the gendering right (yes, * or : please, but how is a non-native speaker to know?). 7/8
It means lost outreach and engagement opportunities: media interviews that go to native speakers with clear pronunciation. Articles you are not asked to write. You are not funny enough, not witty enough, not expressing yourself clear enough, fast enough. 8/9
Some of the above we could solve with compassion and understanding. Others (the mental load, the time loss) are inherent and may get better with time and age (and thus with influence and less need to rely on opportunities), but never fully goes away ... 9/9
And there we go, me seeing tons of English mistakes in the thread once it is posted
https://mobile.twitter.com/vicgrinberg/status/1297103574489616384</description>
<link>http://danmoser.github.io/notes/astro-blog.html#what-it-means-having-to-work-in-foreign-language</link>
</item>
<item>
<title>Livro de Física</title>
<description>Recomendação do dia é o livro da Lisa Randall: Batendo à porta do céu: O bóson de Higgs e como a física moderna ilumina o universo.</description>
<link>http://danmoser.github.io/notes/astro-blog.html#livro-de-fisica</link>
</item>
<item>
<title>A Graphic Design Revolution For Scientific Conference Posters</title>
<description>A new trend at scientific conference poster sessions is waking scientists up to the power of good design. But experts in visual communication think...
https://www.forbes.com/sites/evaamsen/2019/06/18/a-graphic-design-revolution-for-scientific-conference-posters/
https://osf.io/8ajqs/</description>
<link>http://danmoser.github.io/notes/astro-blog.html#a-graphic-design-revolution-for-scientific-conference-posters</link>
</item>
<item>
<title>THELI -- a tool for the automated reduction of astronomical images</title>
<description>https://www.astro.uni-bonn.de/theli/</description>
<link>http://danmoser.github.io/notes/astro-blog.html#theli----a-tool-for-the-automated-reduction-of-astronomical-images</link>
</item>
<item>
<title>Gamma-ray Scientists "Dust Off" Intensity Interferometry</title>
<description>https://www.cfa.harvard.edu/news/2020-14</description>
<link>http://danmoser.github.io/notes/astro-blog.html#gamma-ray-scientists-dust-off-intensity-interferometry</link>
</item>
<item>
<title>Interferometria (e um pouco de Speckle)</title>
<description>https://slides.com/nicscott/andor
2020-07</description>
<link>http://danmoser.github.io/notes/astro-blog.html#interferometria-e-um-pouco-de-speckle</link>
</item>
<item>
<title>Matlplotlib 3D</title>
<description>Absolutely blown away by @NPRougier's matplotblog post showing how to render 3D objects in @matplotlib. And it looks like there's an entire book on Scientific Visualization to follow!
https://github.com/rougier/scientific-visualization-book
2019-02</description>
<link>http://danmoser.github.io/notes/astro-blog.html#matlplotlib-d</link>
</item>
<item>
<title>Horizontes da astronomia brasileira em 2014</title>
<description>De 2014 a 2020, muita coisa mudou.....
https://trabalhounido.blogspot.com/2020/02/horizontes-da-astronomia-brasileira-em.html</description>
<link>http://danmoser.github.io/notes/astro-blog.html#horizontes-da-astronomia-brasileira-em-</link>
</item>
<item>
<title>The search for extraterrestrial intelligence moves up a gear</title>
<description>https://trabalhounido.blogspot.com/2020/02/the-search-for-extraterrestrial.html</description>
<link>http://danmoser.github.io/notes/astro-blog.html#the-search-for-extraterrestrial-intelligence-moves-up-a-gear</link>
</item>
<item>
<title>Bibmanager: A BibTex Manager Designed for Astronomers</title>
<description>https://www.astrobetter.com/blog/2020/02/17/bibmanager-a-bibtex-manager-designed-for-astronomers/</description>
<link>http://danmoser.github.io/notes/astro-blog.html#bibmanager-a-bibtex-manager-designed-for-astronomers</link>
</item>
<item>
<title>Appeal by Astronomers</title>
<description>https://astronomersappeal.wordpress.com/</description>
<link>http://danmoser.github.io/notes/astro-blog.html#appeal-by-astronomers</link>
</item>
<item>
<title>Create a Tesla Cybertruck That Drives with Matplotlib</title>
<description>https://matplotlib.org/matplotblog/posts/create-a-tesla-cybertruck-that-drives/</description>
<link>http://danmoser.github.io/notes/astro-blog.html#create-a-tesla-cybertruck-that-drives-with-matplotlib</link>
</item>
<item>
<title>O ‘preço de mercado’ da universidade</title>
<description>https://trabalhounido.blogspot.com/2020/02/o-preco-de-mercado-da-universidade.html</description>
<link>http://danmoser.github.io/notes/astro-blog.html#o-preco-de-mercado-da-universidade</link>
</item>
<item>
<title>Choose Your Own Adventure: Developing A Values-Oriented Framework for Your Career</title>
<description>https://arxiv.org/abs/1805.09963</description>
<link>http://danmoser.github.io/notes/astro-blog.html#choose-your-own-adventure-developing-a-values-oriented-framework-for-your-career</link>
</item>
<item>
<title>Hawaii astronomy jobs</title>
<description>https://www.maunakeaastronomyjobs.org/searchresults.html</description>
<link>http://danmoser.github.io/notes/astro-blog.html#hawaii-astronomy-jobs</link>
</item>
<item>
<title>Don't Believe These 5 Myths About The Big Bang </title>
<description>https://trabalhounido.blogspot.com/2020/02/dont-believe-these-5-myths-about-big.html
2019-01</description>
<link>http://danmoser.github.io/notes/astro-blog.html#dont-believe-these--myths-about-the-big-bang-</link>
</item>
<item>
<title>Galactic Rainbow -- IOTW1952</title>
<description>The Milky Way hangs poised over the Gemini South telescope
https://nationalastro.org/news/galactic-rainbow-iotw1952/
2019
**********
2019-12</description>
<link>http://danmoser.github.io/notes/astro-blog.html#galactic-rainbow----iotw</link>
</item>
<item>
<title>The Invention of “Ethical AI”</title>
<description>https://theintercept.com/2019/12/20/mit-ethical-ai-artificial-intelligence/</description>
<link>http://danmoser.github.io/notes/astro-blog.html#the-invention-of-ethical-ai</link>
</item>
<item>
<title>Hayashi Saeko: Three Decades Pushing the Limits of Astronomical Observation with the Subaru Telescope</title>
<description>https://www.nippon.com/en/people/e00169/hayashi-saeko-three-decades-pushing-the-limits-of-astronomical-observation-with-the-subaru.html</description>
<link>http://danmoser.github.io/notes/astro-blog.html#hayashi-saeko-three-decades-pushing-the-limits-of-astronomical-observation-with-the-subaru-telescope</link>
</item>