secbookss | Unsorted

Telegram-канал secbookss - - Sec ⁴⁰⁴ -

-

⚠ EROR 404: NOT FOUND ! ▪️ Feedbacks, Suggestions, Buy Ads:...

Subscribe to a channel

- Sec ⁴⁰⁴ -

💢 ۶۰۰ میلیون کاربران لینکدین 💯

✅ جایی که میتونید بهترین فرصت های شغلی رو پیدا کنید

⁉️ساخت رزومشو میدونی ؟

⁉️ارتباط برقرار کردن با کارفرمارو میدونی ؟

💥 این هفته آکادمی تکانش یه کارگاه آموزشی رایگان برگزار کرده که مسیر شروع اینکار رو بهتون آموزش میده

📆 شنبه ۱۰ تیر ساعت ۱۹

🛑 👈 همین حالا ثبت نام کنید 👉 🛑

⚠️ (ظرفیت باقیمانده جهت ثبت نام فقط ۱۰۰ نفر دیگه مونده)

🧑‍💻 ارتباط با ما :
✴️ @linkedinai
❇️ اطلاع از رویدادهای آکادمی تکانش :

🌐 @etekanesh

Читать полностью…

- Sec ⁴⁰⁴ -

10 min to Python Pandas

#PDF #Pandas #Cheatsheet #Python

┏━━━━━━━━┓
@SecBookSs
┗━━━━━━━━┛

Читать полностью…

- Sec ⁴⁰⁴ -

Python Itertools

#PDF #Python #Itertools #Notes
┏━━━━━━━━┓
@SecBookSs
┗━━━━━━━━┛

Читать полностью…

- Sec ⁴⁰⁴ -

Spring, Spring Boot, Microservices, Hibernate top Interview Questions and Answers for freshers and intermediate Java Developers

#interview #java
┏━━━━━━━━┓
〓 @SecBookSs
┗━━━━━━━━┛

Читать полностью…

- Sec ⁴⁰⁴ -

💡10 Helpful JavaScript Utility Functions

🔗https://dev.to/dostonnabotov/10-helpful-javascript-utility-functions-35oc

#Javascript #Functions
┏━━━━━━━━┓
〓 @SecBookSs
┗━━━━━━━━┛

Читать полностью…

- Sec ⁴⁰⁴ -

🔺This may be helpful to you

🔗 CWM Download link

#Files #Programming
┏━━━━━━━━┓
〓 @SecBookSs
┗━━━━━━━━┛

Читать полностью…

- Sec ⁴⁰⁴ -

25 Awesome Python Scripts for Beginners

#PDF #Python #Scripts
┏━━━━━━━━┓
〓 @SecBookSs
┗━━━━━━━━┛

Читать полностью…

- Sec ⁴⁰⁴ -

Python Tip 003

The .py extension doesn’t actually matter too much

# hello.txt
print('hello from hello.txt')


# test.chicken
print('hello from test.chicken')


We can actually run them using the commands
python hello.txt
and
python test.chicken
respectively. As long as the stuff inside these files are valid Python code, we can run them successfully.

#PythonTip #Python #Programming
┏━━━━━━━━┓
〓 @SecBookSs
┗━━━━━━━━┛

Читать полностью…

- Sec ⁴⁰⁴ -

Python Tip 002

We can make stuff run AFTER the return statement in a function

def test():
  print('apple')
  return 1
  print('orange')  # this won't ever be printed


In typical functions, NOTHING happens after a return statement is executed. The print('orange') line won’t ever execute because it happens after a return statement.

def test():
  try:
    print('apple')
    return 1
  finally:
    print('orange')  # this will run even after a return statement


however, if the return statement is inside the try/except block, the code inside the finally block will run even after the return statement.


#PythonTip #Python #Programming
┏━━━━━━━━┓
〓 @SecBookSs
┗━━━━━━━━┛

Читать полностью…

- Sec ⁴⁰⁴ -

Python Tip 001

We can use the name and code attribute of functions to inspect certain metadata of our function.s

def test(a, b, c):
  apple = 100
  orange = 200
 
print(test.name)
# 'test'

print(test.code.co_argcount)   
# 3

print(test.code.co_varnames)   
# ('a', 'b', 'c', 'apple', 'orange')

print(test.code.co_consts)    
# (None, 100, 200)

print(test.code.co_filename)   
# /your/filepath/file.py

#Python #Programming
┏━━━━━━━━┓
〓 @SecBookSs
┗━━━━━━━━┛

Читать полностью…

- Sec ⁴⁰⁴ -

Data Science Archive : 200 Python and Data Science tips

#PDF #Python #DataScience
┏━━━━━━━━┓
〓 @SecBookSs
┗━━━━━━━━┛

Читать полностью…

- Sec ⁴⁰⁴ -

What are lambda functions or IIFE in python ?

A Lambda Function in Python is an anonymous function or a function having no name. It is a small and restricted function having no more than one line. A lambda function can have any number of parameters, but the function body can only contain one expression. A Lambda function can also be assigned to a variable and invoked later.

Every anonymous function you define in Python will have 3 essential parts:

* The lambda keyword.
* The parameters
* The function body.

The formal syntax to write a lambda function is as given below:

lambda p1, p2: expression

Exampl
e :

adder = lambda x, y: x + y
print (adder (1, 2))

Lambda
functions which are called immediately after definition are known as IIFE - immediately invoked function execution : Which you can use in lambda expression passing args values immediate right to expression.

>>>
(lambda x, y, z: x + y + z)(1, 2, 3)

Note : IIF
E is actually concept from JavaScript

🔸 Lambda functions are often used with other functions like map, filter and reduce.

#Programming #Python
┏━━━━━━━━┓
〓 @SecBookSs
┗━━━━━━━━┛

Читать полностью…

- Sec ⁴⁰⁴ -

And then you find an error in the 80th line of code

#Fun #Programming
┏━━━━━━━━┓
〓 @SecBookSs
┗━━━━━━━━┛

Читать полностью…

- Sec ⁴⁰⁴ -

🔖 Python Underscore Secrets - The Amazing underscore world of python

#PDF #Programming #Python
┏━━━━━━━━┓
〓 @SecBookSs
┗━━━━━━━━┛

Читать полностью…

- Sec ⁴⁰⁴ -

16 AI Tools you need to know about other than ChatGPT

#AI #GPT #Generativeai
┏━━━━━━━━┓
〓 @SecBookSs
┗━━━━━━━━┛

Читать полностью…

- Sec ⁴⁰⁴ -

:))

#Fun #Programming
┏━━━━━━━━┓
〓 @SecBookSs
┗━━━━━━━━┛

Читать полностью…

- Sec ⁴⁰⁴ -

Artificial intelligence learns to control a group of combat aircraft

AI is getting closer to actual application in real combat conditions.

So, the ACE AI from DARPA, which recently defeated a man in a dogfight, is now learning to control several fighters to destroy the enemy.

Successful tests have already been conducted in virtual reality with simulating combat on F-16 fighters. The next stage may be full-scale tests.

#AI
┏━━━━━━━━┓
@SecBookSs
┗━━━━━━━━┛

Читать полностью…

- Sec ⁴⁰⁴ -

AI creates turns blurry pictures to high-quality photos

American experts are working on a neural network capable of recreating high-quality HD images from low resolution ones.

To do this, the AI makes a selection from a number of similar faces, including non-existent people, generating its own variants, and overlays the original photo to get the maximum similarity.

The result is a high-quality photo that you can detail by adding, for example, wrinkles or a beard.

#AI
┏━━━━━━━━┓
@SecBookSs
┗━━━━━━━━┛

Читать полностью…

- Sec ⁴⁰⁴ -

What is assert statement in python?

Assertions are statements that state a fact confidently in your program. Python has built-in assert statement to use assertion condition in the program. assert statement has a condition which is supposed to be always true. If the condition is false assert halts the program and gives an AssertionError.

Syntax
assert <condition>,<optional error message>

Ex
ample
>>> assert 1==2 # raises AssertionError
>>> assert age > 18, "user is underage"
>>> assert len(list) != 0, "empty list"

Po
ints to remember
🔸 Assertions are the condition or boolean expression which are always supposed to be true in the code.
🔸 Assert statement takes an expression and optional message.
🔸 Assert statement is used to check types, values of argument and the output of the function.
🔸 Assert statement is used as debugging tool as it halts the program at the point where an error occurs.

#PythonTip #Python #Programming
┏━━━━━━━━┓
〓 @SecBookSs
┗━━━━━━━━┛

Читать полностью…

- Sec ⁴⁰⁴ -

🔺This may be helpful to you

🔗 Download A-yu

#Files #Programming #Web_Development
┏━━━━━━━━┓
〓 @SecBookSs
┗━━━━━━━━┛

Читать полностью…

- Sec ⁴⁰⁴ -

Python Tricks for cleaner code by Dan Bader 💡

#PDF #Python #Notes
┏━━━━━━━━┓
〓 @SecBookSs
┗━━━━━━━━

Читать полностью…

- Sec ⁴⁰⁴ -

AI enabled a paralyzed man walk again after 12 years! 🤯

Researchers used AI to decode the man's thoughts and translate them into spinal cord stimulation, which was activated using an implant and a bluetooth headset.

This groundbreaking medical breakthrough has allowed the patient to regain mobility.

#AI #Medical
┏━━━━━━━━┓
@SecBookSs
┗━━━━━━━━┛

Читать полностью…

- Sec ⁴⁰⁴ -

Adobe introduces Generative AI fill in Photoshop! 🔥

It's a beta app right now to unleash your imagination as you can generate extraordinary images from a simple text prompt.

The only limit is our imagination in creating fabulous images with these flooding AI apps. 🤘

#Photoshop #AI
┏━━━━━━━━┓
@SecBookSs
┗━━━━━━━━┛

Читать полностью…

- Sec ⁴⁰⁴ -

MongoDB notes for professionals

#PDF #Mongodb #DataBase #NoSql
┏━━━━━━━━┓
〓 @SecBookSs
┗━━━━━━━━┛

Читать полностью…

- Sec ⁴⁰⁴ -

You know you can execute short Javascript codes in your python programs directly using a library called pyExecJS.

pip install PyExecJS

To use it in your python program, import it as

import execjs

You can directly evaluate code like
execjs.eval("'red yellow blue'.split(' ')")
>>> ['red', 'yellow', 'blue']

Or
you can use a function call like
ctx = execjs.compile("""
    function add(x, y) {
         return x + y;
    }
""")
print(ctx.call("add", 1, 2))
>>> 3


#Javascript #Python #Programming
┏━━━━━━━━┓
〓 @SecBookSs
┗━━━━━━━━┛

Читать полностью…

- Sec ⁴⁰⁴ -

Our new team lead showing us how it's done. He is an outstanding Purrgrammer

#Fun #Programming
┏━━━━━━━━┓
〓 @SecBookSs
┗━━━━━━━━┛

Читать полностью…

- Sec ⁴⁰⁴ -

240 Core Java interview questions and answers

#Java #Interview
┏━━━━━━━━┓
〓 @SecBookSs
┗━━━━━━━━┛

Читать полностью…

- Sec ⁴⁰⁴ -

🔖 Python File Handling

The various file access modes available in python are

🔸r : It opens the file to read-only. The file pointer exists at the beginning.
🔸rb : It opens the file to read-only in the binary format.
🔸r+ : It opens the file to read and write both.
🔸rb+ : It opens the file to read and write both in the binary format.
🔸 w : It opens the file to write only. It overwrites the file if previously exists or creates a new one if no file exists with the same name.
🔸wb : It opens the file to write only in the binary format
🔸w+ : It opens the file to write and read both. It is different from r+ in the sense that it overwrites the previous file if one exists whereas r+ doesn’t overwrite the previously written file.
🔸wb+ : It opens the file to write and read both in the binary format
🔸a : It opens the file in the append mode.
🔸ab : It opens the file in the append mode in the binary format.
🔸a+ : It opens a file to append and read both.
🔸ab+ : It opens a file to append and read both in the binary format.

with open("hello.txt", "w+") as f:
    f.write("Hello World")
    f.seek(0)
    print(f.read())


#Programming #Python
┏━━━━━━━━┓
〓 @SecBookSs
┗━━━━━━━━┛

Читать полностью…

- Sec ⁴⁰⁴ -

🔖 Top 12 websites for remote work opportunities 🔻

Pangian - https://pangian.com WeWorkRemotely - https://lnkd.in/gU4Ux_xW
ARC - https://arc.dev
RemoteLeaf - https://remoteleaf.com/
ZipRecuriter -https://lnkd.in/dYpCQU8P
Indeed - https://in.indeed.com/m/
Remotive - https://remotive.com
JustRemote - https://justremote.co/
AngelList - https://angel.co/
Jobspresso - https://jobspresso.co/
DailyRemote - https://dailyremote.com
Working Nomads - https://lnkd.in/geSbdqVG

🔖 Top 10 websites for freelance/part-time jobs ⏳

Freelance - https://www.freelance.com
Guru - https://www.guru.com/
Upwork - https://www.upwork.com/
LinkedIn - http://www.linkedin.com/
Snagajob - https://www.snagajob.com/
LinkedIn - http://www.linkedin.com/
Solid Gigs - https://solidgigs.com
ServiceScape - https://lnkd.in/guR5EV_z
Craigslist - http://www.craigslist.org/
CoolWorks - https://www.coolworks.com
Fiverr - https://www.fiverr.com/
Contena - https://www.contena.co

┏━━━━━━━━┓
〓 @SecBookSs
┗━━━━━━━━┛

Читать полностью…

- Sec ⁴⁰⁴ -

Designer is a new AI system from Microsoft that generates visual, customizable designs based on your text description and using existing images.

#Design #Microsoft #AI
┏━━━━━━━━┓
〓 @SecBookSs
┗━━━━━━━━┛

Читать полностью…
Subscribe to a channel