This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | /** | |
| * 🧹 Facebook Auto-Unfollow Script | |
| * -------------------------------- | |
| * This script automatically unfollows profiles from your **Facebook Following list**. | |
| * | |
| * ⚠️ USE RESPONSIBLY: | |
| * - This script is for **personal use only**. | |
| * - Avoid mass unfollowing too quickly; Facebook may temporarily restrict your actions. | |
| * - Always test with a small batch first. | |
| * | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import java.util.regex.*; | |
| public class Main { | |
| public static void main(String[] args) { | |
| String pattern = "^(?:\\+?880|0|88)?\\s?1[3456789]\\d{8}$"; | |
| String[] phoneNumbers = { | |
| "01534567890", | |
| "8801534567890", | |
| "880 1534567890", | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | const pattern = /^(?:\+?880|0|88)?\s?1[3456789]\d{8}$/; | |
| const phoneNumbers = [ | |
| '01534567890', | |
| '8801534567890', | |
| '880 1534567890', | |
| '88 01534567890', | |
| '+8801534567890', | |
| '+880 1534567890', | |
| '+88 01534567890', | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import re | |
| pattern = r'^(?:\+?880|0|88)?\s?1[3456789]\d{8}$' | |
| phone_numbers = [ | |
| '01534567890', | |
| '8801534567890', | |
| '880 1534567890', | |
| '88 01534567890', | |
| '+8801534567890', | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #include <GL/glut.h> | |
| int ww = 600, wh = 500; | |
| float fillCol[3] = {0.4,0.0,0.0}; | |
| float borderCol[3] = {0.0,0.0,0.0}; | |
| void setPixel(int pointx, int pointy, float f[3]) | |
| { | |
| glBegin(GL_POINTS); | |
| glColor3fv(f); | |
| glVertex2i(pointx,pointy); | |
| glEnd(); |