Zum Inhalt der Seite gehen

Suche

Beiträge, die mit tips getaggt sind


Hey, what about I start spinning off some threads 🧵 with quick and easy tips for #journalist and #activist to improve their workflow ( #opsec & #infosec focus ). You know that you can click an hashtag and choose "See #tips posts by user" to see all my posts with that specific hashtag. (bsky only)


FBI: The FBI is investigating an incident that occurred on the morning of Thursday, January 9, 2025, where an unauthorized drone flying in violation of an FAA
temporary flight restriction (TFR) collided with a firefighting aircraft. ... The FBI has set up a Digital Media Tipline, and is seeking the public’s help in order to identify the operator of the drone. Anyone with information, photos, and/or
video footage of the incident is asked to submit them to http://www.fbi.gov/palisadesdronestrike.

#Drone #PalisadesFire #FBI #tips
The FBI is investigating an incident that occurred on the morning of Thursday, January 9, 2025, where an unauthorized drone flying in violation of an FAA
temporary flight restriction (TFR) collided with a firefighting aircraft. The aircraft, commonly referred to as a “super scooper,” was conducting fire suppression
operations at the Palisades Fire near Malibu, California, and was able to land safely. The collision left a 3 x 6 inch hole in the left wing. Parts of the heavily
damaged drone were recovered.
The FBI has set up a Digital Media Tipline, and is seeking the public’s help in order to identify the operator of the drone. Anyone with information, photos, and/or
video footage of the incident is asked to submit them to http://www.fbi.gov/palisadesdronestrike.
If you have any information concerning the individual or group operating the drone, please contact the FBI's Toll-Free tipline at 1-800-CALL-FBI
(1-800-225-5324). You may also contact your local FBI office, the nearest American Embassy or Consulate, or you can submit a tip online at tips.fbi.gov.
Field Office: Los Angeles


🔢 Tired of messy decimals in your data? Learn how to master R's rounding functions like round(), signif(), ceiling(), and more! This guide is packed with examples to clean up your data and improve precision.

Check it out here: https://www.spsanderson.com/steveondata/posts/2024-12-31/ 💡

#R #RStats #Programming #Data #Tips #Blog
A code snippet in a dark-themed editor demonstrates various R functions for rounding numbers. The functions listed include `round()`, `signif()`, `ceiling()`, `floor()`, and `trunc()`, each with a comment explaining its purpose. Below the list, an example shows the creation of a vector `prices` with values 19.99, 24.49, and 5.75, and the use of the `round()` function to round the vector to 2 decimal places.


🧹 Struggling with messy datasets?

Learn how to clean them up with R's complete.cases()! This guide shows you how to handle missing data effectively with clear examples and tips. 🖥️💡

👉 https://www.spsanderson.com/steveondata/posts/2024-12-19/

#R #RStats #Programming #Data #Tips #RProgramming #blog
A code snippet in R creating a vector `x` with missing values (`NA`) and using `complete.cases(x)` to check which elements are non-missing, outputting `TRUE TRUE FALSE TRUE TRUE FALSE`.


🧹 Missing values in your R data? Learn how to handle them with na.rm! This guide shows you how to clean your data and get accurate results with practical examples for vectors and data frames. Try it out and share your thoughts!

👉 https://www.spsanderson.com/steveondata/posts/2024-12-17/

#R #RStats #Programming #Data #Tips #Blog
Alt text: "A code editor window showing R programming examples of na.rm usage. The code demonstrates vector operations with and without na.rm=TRUE, including sum() and mean() functions. The window has the classic macOS-style red, yellow, and green buttons at the top. The code is syntax-highlighted with comments in grey-green, functions in light blue, and values in red, making it easily readable against the dark background."


📊 Struggling to find the row with the max value in R? My new post has you covered! Learn 3 methods: which.max(), base R subsetting, and slice_max() from dplyr. Perfect for R programmers of all levels! 🖋️✨

Read & comment here: https://www.spsanderson.com/steveondata/posts/2024-12-10/

#R #RStats #Programming #DataScience #Tips #Blog
Code snippet in a dark-themed editor demonstrating how to use the which.max() function in R to select the row with the maximum value. The example creates a data frame with columns ID and Value, and identifies the row where the Value column is at its maximum.


🚀 Want to find the column with the max value for each row in R? Learn how to do it using base R, dplyr, and data.table! 🛠️ Perfect for R programmers looking to streamline their data analysis.

Check it out here: https://www.spsanderson.com/steveondata/posts/2024-12-09/

#R #RStats #Programming #Data #Tips #Blog
A code snippet displayed in a dark-themed code editor. The R code assigns column names corresponding to the maximum values in each row of a data frame (df) to a variable max_col_names using colnames(df)[max_col], and prints the result using print(max_col_names). The editor has visual indicators for close, minimize, and maximize buttons.


Sztuczka o drukowaniu plików A3 na drukarce A4 została dobrze przyjęta. I nie dziwi, bo przydaje się zwłaszcza przy szczotkach druku gazet. Teraz w odpowiedzi na prośby o bardziej zwizualizowaną opcję, przychodzi poprawka tekstu

https://gazety.org/blog/druk-podgladowek-a3-na-drukarce-a4-to-mozliwe-w-adobe-sprawdz-v-2/

#adobe #dtp #media #creative #creativity #tips #ciekawostki #drukgazet #drukprasy #drukarniagazetowa


Struggling with missing values in R? 🤔 NAs can mess up your analysis, but don’t worry! Learn easy and effective ways to replace them in your data. From basic replacements to advanced techniques, this guide has you covered. Check it out and share your thoughts! 💡
📖

Read more: https://www.spsanderson.com/steveondata/posts/2024-12-02/

#R #RStats #Programming #Data #Tips #Blog #RProgramming
A code snippet displayed in a dark-themed editor window shows how to replace missing values (NA) in a vector in R. The code defines a vector v with values c(10, NA, 20, 30, NA, 50). It calculates the mean of the non-missing values using mean(v, na.rm = TRUE) and assigns it to mean_v. Then, it replaces the NA values in v with mean_v. The updated vector v is printed at the end. The editor window features a gray background with red, yellow, and green buttons in the top-left corner.


🛠️ Need to clean up your data frames in R? Check out our step-by-step guide on deleting multiple columns efficiently! Learn how to use subset(), select(), and more. Dive in and streamline your data manipulation process!

Read more: https://www.spsanderson.com/steveondata/posts/2024-11-26/

#R #RStats #Programming #Data #Tips #Blog #subset #select
 A screenshot of R code demonstrating how to create a data frame and delete specific columns. The code creates a data frame with columns A, B, C, and D, and then uses the subset() function to remove columns B and D.


🛠️ Master the art of column comparison in R with practical examples and tips! Perfect for data analysis and ensuring data integrity. Read the full guide and let us know how it helps your projects! 📈💡

#R #RStats #Programming #DataScience #Tips #RProgramming #blog

https://www.spsanderson.com/steveondata/posts/2024-11-21/
Screenshot of R code comparing two columns in a data frame. The code creates a data frame with columns col1 and col2, then checks for equality using the == operator. The output shows a logical vector: TRUE, TRUE, FALSE, TRUE, FALSE.
Watercolor illustration of two construction workers in hard hats and reflective vests examining two large, rusted steel letters "R" at a construction site. The background features cranes and steel beams under a hazy sky.


💡 Unlock the secrets of efficient C programming with conditional logic and small change operators.

Explore the article and comment your experience: https://www.spsanderson.com/steveondata/posts/2024-11-20/

#Programming #C #Tips #CProgramming #CodeNewbie #Coding #Code #Blog #LearnC



💡 Logical operators are key to decision-making in C. Our latest post explains everything you need to know as a beginner.

Check it out: https://www.spsanderson.com/steveondata/posts/2024-11-13/

#Programming #C #Tips #Blog





🚀 Dive into the world of R with our latest guide on subsetting data frames! Learn 4 practical methods to streamline your data analysis.

Check it out at https://www.spsanderson.com/steveondata/posts/2024-11-12/ and let us know your favorite method!

#R #RStats #Programming #Data #Tips #dplyr #datatable #Blog



🛠️ New to R programming? Discover how the NOT IN operator can simplify your data filtering tasks.

My guide breaks it down with easy-to-follow examples.

Read and comment! 📈🔗 https://www.spsanderson.com/steveondata/posts/2024-11-04/

#R #RStats #Programming #Learn #Tips #RProgramming #blog



It is possible to print A3 newspaper preview on A4 printer. How?

1: download Adobe Reader. We will use free options to use this #trick

2: open PDF file in Adobe Reader

3. Go to Print Option (Ctrl+P) and check "original width and height" and check vertical orientation

Now you can print top of A3 sheet.

4. Double Click Shift + Ctrl + Plus

5. Go to Print options (Ctrl+P) and check "original width and height" and check vertical orientation

Now you can print bottom of A3 sheet.

With this simple trick you can print A3 on A4 printer. I hope it will help you. This trick helped me few times :) .

Full article in polish lang is here: https://gazety.org/blog/druk-a3-na-drukarce-a4-to-mozliwe/

#acrobat #newspaper #print #trick #Design #creative #A3 #A4 #newspaper_publishing #tips #adobe #reader #pdf #media #journalism


Inhaltswarnung: Cannabis growth experiment: 17 and 11 days old


Basics Tips Commands

#unix #linux #bash #tips #terminal #commands + #vim #emacs #nano #shortcut