Bonerwizard Actual

  • Home
  • PUBG
  • Collections
  • Community
    • Discord
  • Blog

July 2018

Recent Posts
  • Notes: PUBG, Elo, and Ranking Systems
  • Security Guards Are Smoking Weed–But Does It Make Them Bad At Their Jobs? My Response: Verbose Edition
  • Using Ethics In Web Design
  • Port Scanning Techniques and Tools
  • Advanced Port and Network Scanning Techniques with Nmap
Recent Comments
  • p0rpoise on Baseball
Archives
  • October 2018
  • September 2018
  • August 2018
  • July 2018
  • June 2018
  • September 2017
  • August 2017
Categories
  • Arts & Entertainment
  • AvG Learns
  • Dev Snippets
  • Linux
  • Microservices
  • News
  • Notes
  • Python
  • Security
  • Uncategorized
  • Web
Meta
  • Log in
  • Entries RSS
  • Comments RSS
  • WordPress.org
Uncategorized

But what is the Fourier Transform? A visual introduction. – YouTube

9+

By p0rpoise, 3 years ago
Dev Snippets Python

Filtering a list of strings based on contents

lst = [‘a’, ‘ab’, ‘abc’, ‘bac’] res = [k for k in lst if ‘ab’ in k] res > [‘ab’, ‘abc’] Another way is to use the filter function: filter(lambda k: ‘ab’ in k, lst) > [‘ab’, ‘abc’] Given the list [‘a’,’ab’,’abc’,’bac’], I want to compute a list with strings Read more…

By p0rpoise, 3 years ago
  • Home
  • PUBG
  • Collections
  • Community
  • Blog
Hestia | Developed by ThemeIsle