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
    
  
  
    
  | <table> | |
| <thead> | |
| <tr> | |
| <th>Prayer Time</th> | |
| <th>Start Time</th> | |
| <th>End Time</th> | |
| <th>Color</th> | |
| </tr> | |
| </thead> | |
| <tbody> | 
  
    
      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 ansiStyles = require('ansi-styles') | |
| const colors = { | |
| default: ['white', ''], | |
| success: ['green', '✔ '], | |
| warning: ['yellow', 'ℹ '], | |
| error: ['red', '✖ '] | |
| } | |
| function log(type, msg) { | 
  
    
      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
    
  
  
    
  | #!/usr/bin/python | |
| # based on monitor-bluetooth | |
| # Changes by Domen Puncer <[email protected]> | |
| import gobject | |
| import dbus | |
| import dbus.mainloop.glib | |
| import os | 
  
    
      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
    
  
  
    
  | var deleteAllGroupMembers = (function () { | |
| var deleteAllGroupMembers = {}; | |
| // the facebook ids of the users that will not be removed. | |
| // IMPORTANT: add your own facebook id here so that the script will not remove yourself! | |
| var excludedFbIds = ['1234','11223344']; // make sure each id is a string! | |
| var usersToDeleteQueue = []; | |
| var scriptEnabled = false; | |
| var processing = false; | |
| deleteAllGroupMembers.start = function() { |