Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
perl5 /
Net /
Twitter /
Role /
[ HOME SHELL ]
Name
Size
Permission
Action
API
[ DIR ]
drwxr-xr-x
AppAuth.pm
4.1
KB
-rw-r--r--
AutoCursor.pm
5.25
KB
-rw-r--r--
InflateObjects.pm
3.94
KB
-rw-r--r--
Legacy.pm
3.75
KB
-rw-r--r--
OAuth.pm
14.69
KB
-rw-r--r--
RateLimit.pm
5.54
KB
-rw-r--r--
RetryOnError.pm
3.47
KB
-rw-r--r--
SimulateCursors.pm
1.7
KB
-rw-r--r--
WrapError.pm
4.46
KB
-rw-r--r--
WrapResult.pm
1.53
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : SimulateCursors.pm
package Net::Twitter::Role::SimulateCursors; $Net::Twitter::Role::SimulateCursors::VERSION = '4.01043'; use Moose::Role; use namespace::autoclean; requires qw/_json_request/; around _json_request => sub { my $orig = shift; my $self = shift; my ($http_method, $uri, $args, $authenticate) = @_; if ( defined(my $cursor = delete $args->{cursor}) ) { my $page = $cursor == -1 ? 1 : $cursor; my $r = $self->$orig($http_method, $uri, { %$args, page => $page }, $authenticate); my $key = $uri =~ qr`/ids\.` ? 'ids' : 'users'; my $next_cursor = @$r ? $page + 1 : 0; my $previous_cursor = $page == 1 ? 0 : $page - 1; return { next_cursor => $next_cursor, next_cursor_str => "$next_cursor", previous_cursor => $previous_cursor, previous_cursor_str => "$previous_cursor", $key => $r, }; } return $self->$orig(@_); }; 1; __END__ =head1 NAME Net::Twitter::Role::SimulateCursors - Make paging work like cursoring =head1 VERSION version 4.01043 =head1 SYNOPSIS use Net::Twitter; my $nt = Net::Twitter->new( traits => ['API::RESTv1_1', 'SimulateCursors'], ); =head1 DESCRIPTION This role simulates the cursoring method used by some Twitter API methods. It's useful for providing compatibility with Identi.ca, for instance, that does not support cursoring and requires paging, instead. =head1 METHODS =over 4 =back =head1 AUTHOR Marc Mims E<lt>marc@questright.comE<gt> =head1 LICENSE This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =head1 SEE ALSO L<Net::Twitter> =cut
Close